From 0c406a6ed8617f5a148e05517dd793efb126bb2f Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 24 Feb 2018 16:36:44 +0000 Subject: [PATCH 0001/1009] first push up of develop branch --- Dockerfile | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9cdb3d5..3d6bae1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,23 +7,30 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA LABEL maintainer="sparklyballs" # environment settings +ARG DEBIAN_FRONTEND="noninteractive" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ + echo "**** install jq ****" && \ + apt-get update && \ + apt-get install -y \ + jq && \ echo "**** install radarr ****" && \ - radarr_tag=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \ - | awk '/tag_name/{print $4;exit}' FS='[""]') && \ + radarr_url=$(curl "http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux" \ + | jq -r '.[0].url') && \ mkdir -p \ /opt/radarr && \ curl -o \ /tmp/radar.tar.gz -L \ - "https://github.com/Radarr/Radarr/releases/download/${radarr_tag}/Radarr.develop.${radarr_tag#v}.linux.tar.gz" && \ + "${radarr_url}" && \ tar ixzf \ /tmp/radar.tar.gz -C \ /opt/radarr --strip-components=1 && \ echo "**** clean up ****" && \ rm -rf \ - /tmp/* + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY /root / From d62defbf1227b23a5d07bb08c71834b593231d24 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 24 Feb 2018 17:57:45 +0000 Subject: [PATCH 0002/1009] add variable to choose branch --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d6bae1..841dbeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,9 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" -# environment settings +# environment settings ARG DEBIAN_FRONTEND="noninteractive" +ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ @@ -16,7 +17,7 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - radarr_url=$(curl "http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux" \ + radarr_url=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].url') && \ mkdir -p \ /opt/radarr && \ @@ -32,9 +33,9 @@ RUN \ /var/lib/apt/lists/* \ /var/tmp/* -# add local files +# add local files COPY /root / -# ports and volumes +# ports and volumes EXPOSE 7878 VOLUME /config /downloads /movies From 732f9294eda1f2d5ab5017966b6e72ed8ae5e3b6 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Wed, 14 Mar 2018 18:44:09 +0000 Subject: [PATCH 0003/1009] change baseimages to new ubuntu style --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 841dbeb..39451d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/mono +FROM lsiobase/mono:xenial # set version label ARG BUILD_DATE From a0d8b5b656348d31d5df2dc2338c4dec57831097 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 9 Sep 2018 22:11:16 -0700 Subject: [PATCH 0004/1009] adding nightly branch to pipeline builds --- Dockerfile | 13 +++++++------ Dockerfile.aarch64 | 13 +++++++------ Dockerfile.armhf | 13 +++++++------ Jenkinsfile | 30 +++++++++++------------------- 4 files changed, 32 insertions(+), 37 deletions(-) diff --git a/Dockerfile b/Dockerfile index be63e3b..3a9ed0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,13 @@ FROM lsiobase/mono:xenial # set version label ARG BUILD_DATE ARG VERSION -ARG RADARR_RELEASE +ARG RADARR_VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" # environment settings ARG DEBIAN_FRONTEND="noninteractive" +ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ @@ -17,12 +18,12 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \ - | jq -r '.[0] | .tag_name'); \ + if [ -z ${RADARR_VERSION+x} ]; then \ + RADARR_VERSION=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -s https://api.github.com/repos/Radarr/Radarr/releases/tags/"${RADARR_RELEASE}" \ - |jq -r '.assets[].browser_download_url' |grep linux) && \ + radarr_url=$(curl -sX GET "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + | select(.version == \"${RADARR_VERSION}\") | .url") && \ mkdir -p \ /opt/radarr && \ curl -o \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a7832f7..ca4de32 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -5,12 +5,13 @@ COPY qemu-aarch64-static /usr/bin # set version label ARG BUILD_DATE ARG VERSION -ARG RADARR_RELEASE +ARG RADARR_VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" # environment settings ARG DEBIAN_FRONTEND="noninteractive" +ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ @@ -19,12 +20,12 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \ - | jq -r '.[0] | .tag_name'); \ + if [ -z ${RADARR_VERSION+x} ]; then \ + RADARR_VERSION=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -s https://api.github.com/repos/Radarr/Radarr/releases/tags/"${RADARR_RELEASE}" \ - |jq -r '.assets[].browser_download_url' |grep linux) && \ + radarr_url=$(curl -sX GET "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + | select(.version == \"${RADARR_VERSION}\") | .url") && \ mkdir -p \ /opt/radarr && \ curl -o \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 0dc4484..3127872 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -5,12 +5,13 @@ COPY qemu-arm-static /usr/bin # set version label ARG BUILD_DATE ARG VERSION -ARG RADARR_RELEASE +ARG RADARR_VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" # environment settings ARG DEBIAN_FRONTEND="noninteractive" +ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ @@ -19,12 +20,12 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \ - | jq -r '.[0] | .tag_name'); \ + if [ -z ${RADARR_VERSION+x} ]; then \ + RADARR_VERSION=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -s https://api.github.com/repos/Radarr/Radarr/releases/tags/"${RADARR_RELEASE}" \ - |jq -r '.assets[].browser_download_url' |grep linux) && \ + radarr_url=$(curl -sX GET "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + | select(.version == \"${RADARR_VERSION}\") | .url") && \ mkdir -p \ /opt/radarr && \ curl -o \ diff --git a/Jenkinsfile b/Jenkinsfile index 1ee5203..b018f98 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,17 +4,16 @@ pipeline { } // Configuraiton for the variables used for this specific repo environment { - EXT_GIT_BRANCH = 'master' - EXT_USER = 'Radarr' - EXT_REPO = 'Radarr' - BUILD_VERSION_ARG = 'RADARR_RELEASE' + JSON_URL = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' + JSON_PATH = '[0].version' + BUILD_VERSION_ARG = 'RADARR_VERSION' LS_USER = 'linuxserver' - LS_REPO = 'docker-radarr' + LS_REPO = 'radarr' DOCKERHUB_IMAGE = 'linuxserver/radarr' DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr' PR_DOCKERHUB_IMAGE = 'lspipepr/radarr' BUILDS_DISCORD = credentials('build_webhook_url') - GITHUB_TOKEN = credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') + GITHUB_TOKEN = credentials('github_token') DIST_IMAGE = 'ubuntu' DIST_TAG = 'xenial' DIST_PACKAGES = 'none' @@ -83,21 +82,14 @@ pipeline { /* ######################## External Release Tagging ######################## */ - // If this is a devel github release use the first in an array from github to determine the ext tag - stage("Set ENV github_devel"){ + // 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 https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq -r '.[0] | .tag_name' ''', + script: '''curl -s ${JSON_URL} | jq -r ". | ${JSON_PATH}" ''', returnStdout: true).trim() - } - } - } - // If this is a stable or devel github release generate the link for the build message - stage("Set ENV github_link"){ - steps{ - script{ - env.RELEASE_LINK = 'https://github.com/' + env.EXT_USER + '/' + env.EXT_REPO + '/releases/tag/' + env.EXT_RELEASE + env.RELEASE_LINK = env.JSON_URL } } } @@ -426,11 +418,11 @@ pipeline { "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash - curl -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq ".[] | select(.tag_name == \"${EXT_RELEASE}\") | .body" | sed 's:^.\\(.*\\).$:\\1:' > releasebody.json + echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json echo '{"tag_name":"'${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ "target_commitish": "master",\ "name": "'${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ - "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**'${EXT_REPO}' Changes:**\\n\\n' > start + "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": false}' >> 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 295c24752ead52dd0f0fdd1c1010b059bba1a56e Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 9 Sep 2018 22:12:44 -0700 Subject: [PATCH 0005/1009] bad variable in credentials for live build server --- Jenkinsfile | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b018f98..065c8df 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr' PR_DOCKERHUB_IMAGE = 'lspipepr/radarr' BUILDS_DISCORD = credentials('build_webhook_url') - GITHUB_TOKEN = credentials('github_token') + GITHUB_TOKEN = credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') DIST_IMAGE = 'ubuntu' DIST_TAG = 'xenial' DIST_PACKAGES = 'none' @@ -96,25 +96,25 @@ pipeline { // If this is a master build use live docker endpoints stage("Set ENV live build"){ when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' } steps { script{ env.IMAGE = env.DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '|arm32v6-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' + '|arm32v6-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' + '|arm64v8-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' } else { - env.CI_TAGS = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' } - env.META_TAG = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + env.META_TAG = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' } } } // If this is a dev build use dev docker endpoints stage("Set ENV dev build"){ when { - not {branch "master"} + not {branch "nightly"} environment name: 'CHANGE_ID', value: '' } steps { @@ -347,8 +347,8 @@ pipeline { sh '''#! /bin/bash echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin ''' - sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:latest" - sh "docker push ${IMAGE}:latest" + sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:nightly" + sh "docker push ${IMAGE}:nightly" sh "docker push ${IMAGE}:${META_TAG}" } } @@ -377,24 +377,24 @@ pipeline { 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-latest" - sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-latest" - sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-latest" + sh "docker tag ${IMAGE}:amd64-${META_TAG} ${IMAGE}:amd64-nightly" + sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-nightly" + sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-nightly" 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-latest" - sh "docker push ${IMAGE}:arm32v6-latest" - sh "docker push ${IMAGE}:arm64v8-latest" - sh "docker manifest push --purge ${IMAGE}:latest || :" - sh "docker manifest create ${IMAGE}:latest ${IMAGE}:amd64-latest ${IMAGE}:arm32v6-latest ${IMAGE}:arm64v8-latest" - sh "docker manifest annotate ${IMAGE}:latest ${IMAGE}:arm32v6-latest --os linux --arch arm" - sh "docker manifest annotate ${IMAGE}:latest ${IMAGE}:arm64v8-latest --os linux --arch arm64 --variant armv8" + sh "docker push ${IMAGE}:amd64-nightly" + sh "docker push ${IMAGE}:arm32v6-nightly" + sh "docker push ${IMAGE}:arm64v8-nightly" + sh "docker manifest push --purge ${IMAGE}:nightly || :" + sh "docker manifest create ${IMAGE}:nightly ${IMAGE}:amd64-nightly ${IMAGE}:arm32v6-nightly ${IMAGE}:arm64v8-nightly" + sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm32v6-nightly --os linux --arch arm" + sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm64v8-nightly --os linux --arch arm64 --variant armv8" sh "docker manifest push --purge ${IMAGE}:${EXT_RELEASE}-ls${LS_TAG_NUMBER} || :" 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 armv8" - sh "docker manifest push --purge ${IMAGE}:latest" + sh "docker manifest push --purge ${IMAGE}:nightly" sh "docker manifest push --purge ${IMAGE}:${META_TAG}" } } From 8bf43761341dfccf8db87b5176324d1005c675e8 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 9 Sep 2018 22:15:57 -0700 Subject: [PATCH 0006/1009] bad json path for version endpoint --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 065c8df..9a38096 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { // Configuraiton for the variables used for this specific repo environment { JSON_URL = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' - JSON_PATH = '[0].version' + JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'RADARR_VERSION' LS_USER = 'linuxserver' LS_REPO = 'radarr' From e5c74cce45bbb640ec3d759d3dc608e3e2288a40 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 20 Jan 2019 20:27:40 -0800 Subject: [PATCH 0007/1009] updating branch with current pipeline build logic in prep for PR --- Dockerfile.aarch64 | 1 + Dockerfile.armhf | 1 + Jenkinsfile | 408 +++++++++++++++++++++++++++++---------------- jenkins-vars.yml | 28 ++++ 4 files changed, 295 insertions(+), 143 deletions(-) create mode 100644 jenkins-vars.yml diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ca4de32..4d099ce 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,5 @@ FROM lsiobase/mono.arm64:xenial + # Add qemu to build on x86_64 systems COPY qemu-aarch64-static /usr/bin diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 3127872..ac46c7b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,5 @@ FROM lsiobase/mono.armhf:xenial + # Add qemu to build on x86_64 systems COPY qemu-arm-static /usr/bin diff --git a/Jenkinsfile b/Jenkinsfile index 9a38096..370a3bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,27 +2,30 @@ pipeline { agent { label 'X86-64-MULTI' } - // Configuraiton for the variables used for this specific repo + // 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 = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' JSON_PATH = '.[0].version' - BUILD_VERSION_ARG = 'RADARR_VERSION' + BUILD_VERSION_ARG = 'RADARR_RELEASE' LS_USER = 'linuxserver' - LS_REPO = 'radarr' + LS_REPO = 'docker-radarr' + CONTAINER_NAME = 'radarr' DOCKERHUB_IMAGE = 'linuxserver/radarr' DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr' PR_DOCKERHUB_IMAGE = 'lspipepr/radarr' - BUILDS_DISCORD = credentials('build_webhook_url') - GITHUB_TOKEN = credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') DIST_IMAGE = 'ubuntu' - DIST_TAG = 'xenial' - DIST_PACKAGES = 'none' MULTIARCH='true' CI='true' CI_WEB='true' CI_PORT='7878' CI_SSL='false' - CI_DELAY='60' + CI_DELAY='120' CI_DOCKERENV='TZ=US/Pacific' CI_AUTH='user:password' CI_WEBPATH='' @@ -32,8 +35,9 @@ pipeline { 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/latest | jq -r '. | .tag_name' ''', + 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' ''', @@ -71,11 +75,18 @@ pipeline { /* ####################### Package Version Tagging ####################### */ - // If this does not track package tags - stage("Set Package tag None"){ + // Grab the current package versions in Git to determine package tag + stage("Set Package tag"){ steps{ script{ - env.PACKAGE_TAG = 'none' + 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() } } } @@ -93,7 +104,17 @@ pipeline { } } } - // If this is a master build use live docker endpoints + // 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 nightly build use live docker endpoints stage("Set ENV live build"){ when { branch "nightly" @@ -103,11 +124,11 @@ pipeline { script{ env.IMAGE = env.DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' + '|arm32v6-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' + '|arm64v8-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' + 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 + '-ls' + env.LS_TAG_NUMBER + '-nightly' + env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } - env.META_TAG = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '-nightly' + env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } } } @@ -121,11 +142,11 @@ pipeline { script{ env.IMAGE = env.DEV_DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v6-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + 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 + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } - env.META_TAG = env.EXT_RELEASE + '-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/' } } @@ -139,20 +160,20 @@ pipeline { script{ env.IMAGE = env.PR_DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v6-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + 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 + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } - env.META_TAG = env.EXT_RELEASE + '-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 container to render a readme from the template if needed - stage('Update-README') { + // Use helper containers to render templated files + stage('Update-Templates') { when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' expression { env.CONTAINER_NAME != null @@ -160,126 +181,214 @@ pipeline { } 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=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest docker pull linuxserver/doc-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest - if [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ]; then - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO} - cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/${LS_REPO}/ - cd ${TEMPDIR}/${LS_REPO}/ - git --git-dir ${TEMPDIR}/${LS_REPO}/.git add README.md - git --git-dir ${TEMPDIR}/${LS_REPO}/.git commit -m 'Bot Updating README from template' - git --git-dir ${TEMPDIR}/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -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 nightly + 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.README_UPDATED = sh( + env.FILES_UPDATED = sh( script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', returnStdout: true).trim() } } } - // Exit the build if the Readme was just updated - stage('README-exit') { + // Exit the build if the Templated files were just updated + stage('Template-exit') { when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' - environment name: 'README_UPDATED', value: 'true' + environment name: 'FILES_UPDATED', value: 'true' expression { env.CONTAINER_NAME != null } } steps { script{ - env.CI_URL = 'README_UPDATE' - env.RELEASE_LINK = 'README_UPDATE' - currentBuild.rawBuild.result = Result.ABORTED - throw new hudson.AbortException('ABORTED_README') + env.EXIT_STATUS = 'ABORTED' } } } /* ############### Build Container ############### */ - // Build Docker container for push to LS Repo - stage('Build-Single') { - when { - environment name: 'MULTIARCH', value: 'false' - } - 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' - } - 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}" - } - } - } - } - } + // 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 "nightly" + 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 nightly + 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 "nightly" + 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 "nightly" + 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 ####### */ @@ -287,13 +396,18 @@ pipeline { 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} @@ -320,9 +434,6 @@ pipeline { -e DO_BUCKET="lsio-ci" \ -t lsiodev/ci:latest \ python /ci/ci.py''' - script{ - env.CI_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/index.html' - } } } } @@ -333,6 +444,7 @@ pipeline { stage('Docker-Push-Single') { when { environment name: 'MULTIARCH', value: 'false' + environment name: 'EXIT_STATUS', value: '' } steps { withCredentials([ @@ -357,6 +469,7 @@ pipeline { stage('Docker-Push-Multi') { when { environment name: 'MULTIARCH', value: 'true' + environment name: 'EXIT_STATUS', value: '' } steps { withCredentials([ @@ -389,41 +502,42 @@ pipeline { sh "docker manifest push --purge ${IMAGE}:nightly || :" sh "docker manifest create ${IMAGE}:nightly ${IMAGE}:amd64-nightly ${IMAGE}:arm32v6-nightly ${IMAGE}:arm64v8-nightly" sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm32v6-nightly --os linux --arch arm" - sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm64v8-nightly --os linux --arch arm64 --variant armv8" - sh "docker manifest push --purge ${IMAGE}:${EXT_RELEASE}-ls${LS_TAG_NUMBER} || :" + sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm64v8-nightly --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 armv8" + sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8" sh "docker manifest push --purge ${IMAGE}:nightly" sh "docker manifest push --purge ${IMAGE}:${META_TAG}" } } } - // If this is a public release tag it in the LS Github and push a changelog from external repo and our internal one + // If this is a public release tag it in the LS Github stage('Github-Tag-Push-Release') { when { - branch "master" + branch "nightly" expression { - env.LS_RELEASE != env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-ls' + env.LS_TAG_NUMBER + 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}-pkg-${PACKAGE_TAG}-ls${LS_TAG_NUMBER}" + 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}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + -d '{"tag":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}' to master",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-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}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ - "target_commitish": "master",\ - "name": "'${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "target_commitish": "nightly",\ + "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": false}' >> releasebody.json + 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''' } @@ -432,6 +546,7 @@ pipeline { stage('Sync-README') { when { environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' } steps { withCredentials([ @@ -459,15 +574,22 @@ pipeline { Send status to Discord ###################### */ post { - 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} ''' - } - failure { - 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} ''' + 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/jenkins-vars.yml b/jenkins-vars.yml new file mode 100644 index 0000000..6a1162e --- /dev/null +++ b/jenkins-vars.yml @@ -0,0 +1,28 @@ +--- + +# jenkins variables +project_name: docker-radarr +external_type: custom_json +release_type: prerelease +release_tag: nightly +ls_branch: nightly +repo_vars: + - JSON_URL = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' + - JSON_PATH = '.[0].version' + - BUILD_VERSION_ARG = 'RADARR_RELEASE' + - LS_USER = 'linuxserver' + - LS_REPO = 'docker-radarr' + - CONTAINER_NAME = 'radarr' + - DOCKERHUB_IMAGE = 'linuxserver/radarr' + - DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr' + - PR_DOCKERHUB_IMAGE = 'lspipepr/radarr' + - DIST_IMAGE = 'ubuntu' + - MULTIARCH='true' + - CI='true' + - CI_WEB='true' + - CI_PORT='7878' + - CI_SSL='false' + - CI_DELAY='120' + - CI_DOCKERENV='TZ=US/Pacific' + - CI_AUTH='user:password' + - CI_WEBPATH='' From 3e8a7b8ba02e13fae5ef99cd4fbad004dd59f4bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Jan 2019 14:50:54 -0500 Subject: [PATCH 0008/1009] Bot Updating Templated Files --- Jenkinsfile | 0 README.md | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile old mode 100644 new mode 100755 diff --git a/README.md b/README.md index 6970e48..96541ef 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ 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://podcast.linuxserver.io) - on hiatus. Coming back soon (late 2018). +* [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). # PSA: Changes are happening @@ -21,6 +21,7 @@ From August 2018 onwards, Linuxserver are in the midst of switching to a new CI TLDR: Multi-arch support is changing from multiple repos to one repo per container image. # [linuxserver/radarr](https://github.com/linuxserver/docker-radarr) +[![](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/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") [![](https://images.microbadger.com/badges/image/linuxserver/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") ![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg) @@ -33,13 +34,13 @@ 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). The architectures supported by this image are: | Architecture | Tag | | :----: | --- | -| X86-64 | amd64-latest | +| x86-64 | amd64-latest | | arm64 | arm64v8-latest | | armhf | arm32v6-latest | @@ -59,6 +60,7 @@ docker create \ -v :/config \ -v :/movies \ -v :/downloads \ + --restart unless-stopped \ linuxserver/radarr ``` @@ -71,8 +73,6 @@ The nightly branch and master branch can from time to time be the same version. HOWEVER , USE THE NIGHTLY BRANCH AT YOUR OWN PERIL !!!!!!!!! --p 7878:7878 \ - ### docker-compose Compatible with docker-compose v2 schemas. From 9503c75d0effd3087f4e91c0c247029c2bb56a6d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Jan 2019 19:54:55 +0000 Subject: [PATCH 0009/1009] Bot Updating Package Versions --- package_versions.txt | 353 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 353 insertions(+) create mode 100755 package_versions.txt diff --git a/package_versions.txt b/package_versions.txt new file mode 100755 index 0000000..dd30108 --- /dev/null +++ b/package_versions.txt @@ -0,0 +1,353 @@ +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] +libblkid1/now 2.27.1-6ubuntu3.6 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] +libcomerr2/now 1.42.13-1ubuntu1 amd64 [installed,local] +libcryptsetup4/now 2:1.6.6-5ubuntu2.1 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] +libgmp10/now 2:6.1.0+dfsg-2 amd64 [installed,local] +libgnutls30/now 3.4.10-4ubuntu1.4 amd64 [installed,local] +libgpg-error0/now 1.21-2ubuntu1 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] +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] +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] +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] +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] +libonig2/now 5.9.6-1ubuntu0.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] +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] +libsmartcols1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +libsqlite3-0/now 3.11.0-1ubuntu1 amd64 [installed,local] +libss2/now 1.42.13-1ubuntu1 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] +libsystemd0/now 229-4ubuntu21.15 amd64 [installed,local] +libtasn1-6/now 4.7-3ubuntu0.16.04.3 amd64 [installed,local] +libtiff5/now 4.0.6-1ubuntu0.5 amd64 [installed,local] +libtinfo5/now 6.0+20160213-1ubuntu1 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] +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] +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] +libxrender1/now 1:0.9.9-0ubuntu1 amd64 [installed,local] +libzen0v5/now 0.4.37-1 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 9de23e50833a45e03fd9ac817acda399e5aa0814 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 30 Jan 2019 15:10:42 -0500 Subject: [PATCH 0010/1009] fix radarr version arg, switch to https for download url --- Dockerfile | 10 +++++----- Dockerfile.aarch64 | 10 +++++----- Dockerfile.armhf | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3a9ed0c..bbcfacd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM lsiobase/mono:xenial # set version label ARG BUILD_DATE ARG VERSION -ARG RADARR_VERSION +ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" @@ -18,12 +18,12 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_VERSION+x} ]; then \ - RADARR_VERSION=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + if [ -z ${RADARR_RELEASE}+x} ]; then \ + RADARR_RELEASE=$(curl "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -sX GET "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ - | select(.version == \"${RADARR_VERSION}\") | .url") && \ + radarr_url=$(curl -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /opt/radarr && \ curl -o \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4d099ce..d0ae12f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -6,7 +6,7 @@ COPY qemu-aarch64-static /usr/bin # set version label ARG BUILD_DATE ARG VERSION -ARG RADARR_VERSION +ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" @@ -21,12 +21,12 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_VERSION+x} ]; then \ - RADARR_VERSION=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + if [ -z ${RADARR_RELEASE+x} ]; then \ + RADARR_RELEASE=$(curl "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -sX GET "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ - | select(.version == \"${RADARR_VERSION}\") | .url") && \ + radarr_url=$(curl -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /opt/radarr && \ curl -o \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index ac46c7b..4cedfe9 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -6,7 +6,7 @@ COPY qemu-arm-static /usr/bin # set version label ARG BUILD_DATE ARG VERSION -ARG RADARR_VERSION +ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" @@ -21,12 +21,12 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_VERSION+x} ]; then \ - RADARR_VERSION=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + if [ -z ${RADARR_RELEASE+x} ]; then \ + RADARR_RELEASE=$(curl "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -sX GET "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ - | select(.version == \"${RADARR_VERSION}\") | .url") && \ + radarr_url=$(curl -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /opt/radarr && \ curl -o \ From d06182a46edf706f5266c535b0d337e855b905e9 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 30 Jan 2019 16:21:19 -0500 Subject: [PATCH 0011/1009] ignore curl cert errors until we figure out issue with builders --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index bbcfacd..84210be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,10 +19,10 @@ RUN \ jq && \ echo "**** install radarr ****" && \ if [ -z ${RADARR_RELEASE}+x} ]; then \ - RADARR_RELEASE=$(curl "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /opt/radarr && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d0ae12f..b7e1839 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -22,10 +22,10 @@ RUN \ jq && \ echo "**** install radarr ****" && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /opt/radarr && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4cedfe9..ebc354f 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -22,10 +22,10 @@ RUN \ jq && \ echo "**** install radarr ****" && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /opt/radarr && \ From 8f4aede79cf860386d418c97e6309c774ff299a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Feb 2019 15:51:44 +0000 Subject: [PATCH 0012/1009] Bot Updating Templated Files --- Jenkinsfile | 9 +++++++++ README.md | 5 +++++ 2 files changed, 14 insertions(+) mode change 100755 => 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile old mode 100755 new mode 100644 index 370a3bd..b38834b --- 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 [ ! -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( diff --git a/README.md b/README.md index 96541ef..cfb2068 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ TLDR: Multi-arch support is changing from multiple repos to one repo per contain [![](https://images.microbadger.com/badges/image/linuxserver/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") ![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg) ![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg) +[![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-radarr/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/) +[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html) [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. @@ -36,6 +38,8 @@ TLDR: Multi-arch support is changing from multiple repos to one repo per contain 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/radarr` 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 | @@ -44,6 +48,7 @@ The architectures supported by this image are: | arm64 | arm64v8-latest | | armhf | arm32v6-latest | + ## Usage Here are some example snippets to help you get started creating a container. From 84ffb4b63a1048ca43dd215fc15aa58a199a7a27 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Feb 2019 15:51:42 +0000 Subject: [PATCH 0013/1009] Bot Updating Templated Files --- Jenkinsfile | 2 +- README.md | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b38834b..6577f76 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -203,7 +203,7 @@ pipeline { fi mkdir -p ${TEMPDIR}/gitbook git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [ ! -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 diff --git a/README.md b/README.md index cfb2068..afb76f7 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,7 @@ In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as bel uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) ``` +   ## Application Setup @@ -146,6 +147,25 @@ Access the webui at `:7878`, for more information check out [Radarr](ht * image version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/radarr` +## 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/radarr` +* Stop the running container: `docker stop radarr` +* Delete the container: `docker rm radarr` +* 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 radarr` +* You can also remove the old dangling images: `docker image prune` + +### Via Docker Compose +* Update the image: `docker-compose pull linuxserver/radarr` +* Let compose update containers as necessary: `docker-compose up -d` +* You can also remove the old dangling images: `docker image prune` + ## Versions * **09.09.18:** - Add pipeline build process. From 2acc6f5529dea52a2255b7e4ed91400319ef5808 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Feb 2019 15:55:45 +0000 Subject: [PATCH 0014/1009] 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 dd30108..2d732f5 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] @@ -54,9 +54,9 @@ libcap2/now 1:2.24-12 amd64 [installed,local] libcap2-bin/now 1:2.24-12 amd64 [installed,local] libcomerr2/now 1.42.13-1ubuntu1 amd64 [installed,local] libcryptsetup4/now 2:1.6.6-5ubuntu2.1 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 f166e87bc57f4dfdf827c5a77102123633e22d88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Feb 2019 00:29:05 +0000 Subject: [PATCH 0015/1009] 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 2d732f5..e1ca219 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] @@ -47,8 +47,8 @@ libaudit-common/now 1:2.4.5-1ubuntu2.1 all [installed,local] libaudit1/now 1:2.4.5-1ubuntu2.1 amd64 [installed,local] libblkid1/now 2.27.1-6ubuntu3.6 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] @@ -89,7 +89,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] @@ -282,11 +282,11 @@ libsqlite3-0/now 3.11.0-1ubuntu1 amd64 [installed,local] libss2/now 1.42.13-1ubuntu1 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] -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] libtiff5/now 4.0.6-1ubuntu0.5 amd64 [installed,local] libtinfo5/now 6.0+20160213-1ubuntu1 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] @@ -301,7 +301,7 @@ libxdmcp6/now 1:1.1.2-1.1 amd64 [installed,local] libxext6/now 2:1.3.3-1 amd64 [installed,local] libxrender1/now 1:0.9.9-0ubuntu1 amd64 [installed,local] libzen0v5/now 0.4.37-1 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] @@ -320,7 +320,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] @@ -339,8 +339,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 2858a9543806e737fe18d4312ad88105d7de3119 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Mar 2019 15:51:38 +0000 Subject: [PATCH 0016/1009] Bot Updating Templated Files --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index afb76f7..cba967b 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/radarr](https://github.com/linuxserver/docker-radarr) [![](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/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") @@ -36,7 +30,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/radarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From e47f12b6ddf6925dee10231c325eac12268381f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Mar 2019 15:51:31 +0000 Subject: [PATCH 0017/1009] Bot Updating Templated Files --- Jenkinsfile | 35 +++++++++++++++++++++++++++++++++-- README.md | 32 +++++++++++++++++++++----------- 2 files changed, 54 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6577f76..d811b87 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} ''' } } } @@ -339,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 ) @@ -471,6 +477,10 @@ pipeline { sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:nightly" sh "docker push ${IMAGE}:nightly" sh "docker push ${IMAGE}:${META_TAG}" + sh '''docker rmi \ + ${IMAGE}:${META_TAG} \ + ${IMAGE}:nightly ''' + } } } @@ -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}:nightly" sh "docker manifest push --purge ${IMAGE}:${META_TAG}" + sh '''docker rmi \ + ${IMAGE}:amd64-${META_TAG} \ + ${IMAGE}:amd64-nightly \ + ${IMAGE}:arm32v6-${META_TAG} \ + ${IMAGE}:arm32v6-nightly \ + ${IMAGE}:arm64v8-${META_TAG} \ + ${IMAGE}:arm64v8-nightly \ + 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 cba967b..42176ac 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,8 @@ Here are some example snippets to help you get started creating a container. ``` docker create \ --name=radarr \ - -e PUID=1001 \ - -e PGID=1001 \ + -e PUID=1000 \ + -e PGID=1000 \ -e TZ=Europe/London \ -p 7878:7878 \ -v :/config \ @@ -84,8 +84,8 @@ services: image: linuxserver/radarr container_name: radarr environment: - - PUID=1001 - - PGID=1001 + - PUID=1000 + - PGID=1000 - TZ=Europe/London volumes: - :/config @@ -93,7 +93,6 @@ services: - :/downloads ports: - 7878:7878 - mem_limit: 4096m restart: unless-stopped ``` @@ -104,8 +103,8 @@ Container images are configured using parameters passed at runtime (such as thos | Parameter | Function | | :----: | --- | | `-p 7878` | The port for the Radarr webinterface | -| `-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, this is required for Radarr | | `-v /config` | Database and Radarr configs | | `-v /movies` | Location of Movie library on disk | @@ -117,11 +116,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) ``` @@ -155,9 +154,20 @@ Below are the instructions for updating containers: * Start the new container: `docker start radarr` * 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 radarr + ``` +* You can also remove the old dangling images: `docker image prune` + ### Via Docker Compose -* Update the image: `docker-compose pull linuxserver/radarr` -* Let compose update containers as necessary: `docker-compose up -d` +* Update all images: `docker-compose pull` + * or update a single image: `docker-compose pull radarr` +* Let compose update all containers as necessary: `docker-compose up -d` + * or update a single container: `docker-compose up -d radarr` * You can also remove the old dangling images: `docker image prune` ## Versions From 73db3c615ba3b492c4aaa6215a188fd2c14767d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Mar 2019 13:52:06 -0500 Subject: [PATCH 0018/1009] Bot Updating Package Versions --- package_versions.txt | 706 +++++++++++++++++++++---------------------- 1 file changed, 353 insertions(+), 353 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e1ca219..ea81a50 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,353 +1,353 @@ -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] -libblkid1/now 2.27.1-6ubuntu3.6 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] -libcomerr2/now 1.42.13-1ubuntu1 amd64 [installed,local] -libcryptsetup4/now 2:1.6.6-5ubuntu2.1 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] -libgmp10/now 2:6.1.0+dfsg-2 amd64 [installed,local] -libgnutls30/now 3.4.10-4ubuntu1.4 amd64 [installed,local] -libgpg-error0/now 1.21-2ubuntu1 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] -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] -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] -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] -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] -libonig2/now 5.9.6-1ubuntu0.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] -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] -libsmartcols1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -libsqlite3-0/now 3.11.0-1ubuntu1 amd64 [installed,local] -libss2/now 1.42.13-1ubuntu1 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] -libsystemd0/now 229-4ubuntu21.16 amd64 [installed,local] -libtasn1-6/now 4.7-3ubuntu0.16.04.3 amd64 [installed,local] -libtiff5/now 4.0.6-1ubuntu0.5 amd64 [installed,local] -libtinfo5/now 6.0+20160213-1ubuntu1 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] -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] -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] -libxrender1/now 1:0.9.9-0ubuntu1 amd64 [installed,local] -libzen0v5/now 0.4.37-1 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.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 +libblkid1/now 2.27.1-6ubuntu3.6 +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 +libcomerr2/now 1.42.13-1ubuntu1 +libcryptsetup4/now 2:1.6.6-5ubuntu2.1 +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 +libgmp10/now 2:6.1.0+dfsg-2 +libgnutls30/now 3.4.10-4ubuntu1.4 +libgpg-error0/now 1.21-2ubuntu1 +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 +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 +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 +libncurses5/now 6.0+20160213-1ubuntu1 +libncursesw5/now 6.0+20160213-1ubuntu1 +libnettle6/now 3.2-1ubuntu0.16.04.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 +libonig2/now 5.9.6-1ubuntu0.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 +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 +libsmartcols1/now 2.27.1-6ubuntu3.6 +libsqlite3-0/now 3.11.0-1ubuntu1.1 +libss2/now 1.42.13-1ubuntu1 +libssl1.0.0/now 1.0.2g-1ubuntu4.15 +libstdc++6/now 5.4.0-6ubuntu1~16.04.11 +libsystemd0/now 229-4ubuntu21.16 +libtasn1-6/now 4.7-3ubuntu0.16.04.3 +libtiff5/now 4.0.6-1ubuntu0.5 +libtinfo5/now 6.0+20160213-1ubuntu1 +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 +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 +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 +libxrender1/now 1:0.9.9-0ubuntu1 +libzen0v5/now 0.4.37-1 +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.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 From 497ba114d3b6e27fae790b4a5faebe102e1f7826 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 19 Mar 2019 10:27:36 +0000 Subject: [PATCH 0019/1009] Bot Updating Package Versions --- package_versions.txt | 314 +++++++++++++++++++++---------------------- 1 file changed, 157 insertions(+), 157 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ea81a50..8f91cb2 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.268-0xamarin7+ubuntu1604b1 +ca-certificates-mono/now 5.18.0.268-0xamarin9+ubuntu1604b1 cli-common/now 0.9+xamarin8+ubuntu1604b1 coreutils/now 8.25-2ubuntu3~16.04 curl/now 7.47.0-1ubuntu2.12 @@ -70,7 +70,7 @@ 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 +libgdiplus/now 5.6.1-0xamarin1+ubuntu1604b1 libgif7/now 5.1.4-0.3~16.04 libglib2.0-0/now 2.48.2-0ubuntu4.1 libgmp10/now 2:6.1.0+dfsg-2 @@ -98,149 +98,149 @@ 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 -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-2.0-dev/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-accessibility4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-cairo4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-cecil-private-cil/now 5.18.0.268-0xamarin9+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-cil-dev/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-codecontracts4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-corlib4.5-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-cscompmgd0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-csharp4.0c-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-custommarshalers4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-data-tds4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-db2-1.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-debugger-soft4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-http4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n-cjk4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n-mideast4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n-other4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n-rare4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n-west4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n4.0-all/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-i18n4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-ldap4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-management4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-messaging-rabbitmq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-messaging4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-build-engine4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-build-framework4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-build4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-csharp4.0-cil/now 5.18.0.268-0xamarin9+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 +libmono-microsoft-visualc10.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-oracle4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-parallel4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-peapi4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-posix4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-rabbitmq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-relaxng4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-security4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-sharpzip4.84-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-simd4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-smdiagnostics0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-sqlite4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-componentmodel-composition4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-configuration-install4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-configuration4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-core4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-data-datasetextensions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-data-entity4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-data-linq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-data-services-client4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-data-services4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-data4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-deployment4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-design4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-drawing-design4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-drawing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-dynamic4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-enterpriseservices4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-identitymodel4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-io-compression4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-json-microsoft4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-json4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-ldap-protocols4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-ldap4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-management4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-messaging4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-net-http-formatting4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-net-http-webrequest4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-net-http4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-net4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-numerics-vectors4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-numerics4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-core2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-debugger2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-experimental2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-interfaces2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-linq2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-platformservices2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-providers2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-reflection-context4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-runtime-caching4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-runtime-serialization4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-runtime4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-security4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-servicemodel-activation4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-servicemodel-internals0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-servicemodel-routing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-servicemodel-web4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-servicemodel4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-serviceprocess4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-transactions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-abstractions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-applicationservices4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-dynamicdata4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-extensions-design4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-extensions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-http-selfhost4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-http-webhost4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-http4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-mobile4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-mvc3.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-razor2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-regularexpressions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-routing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-services4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-webpages-razor2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web-webpages2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-web4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-windows-forms4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-windows4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-workflow-activities4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-workflow-runtime4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-xaml4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-xml-linq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-xml-serialization4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system-xml4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-system4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-tasklets4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-webbrowser4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-webmatrix-data4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-windowsbase4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-xbuild-tasks4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmonosgen-2.0-1/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmonosgen-2.0-dev/now 5.18.0.268-0xamarin9+ubuntu1604b1 libmount1/now 2.27.1-6ubuntu3.6 libncurses5/now 6.0+20160213-1ubuntu1 libncursesw5/now 6.0+20160213-1ubuntu1 @@ -282,11 +282,11 @@ libsqlite3-0/now 3.11.0-1ubuntu1.1 libss2/now 1.42.13-1ubuntu1 libssl1.0.0/now 1.0.2g-1ubuntu4.15 libstdc++6/now 5.4.0-6ubuntu1~16.04.11 -libsystemd0/now 229-4ubuntu21.16 +libsystemd0/now 229-4ubuntu21.17 libtasn1-6/now 4.7-3ubuntu0.16.04.3 -libtiff5/now 4.0.6-1ubuntu0.5 +libtiff5/now 4.0.6-1ubuntu0.6 libtinfo5/now 6.0+20160213-1ubuntu1 -libudev1/now 229-4ubuntu21.16 +libudev1/now 229-4ubuntu21.17 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 @@ -309,16 +309,16 @@ 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.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-4.0-gac/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-devel/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-gac/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-mcs/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-roslyn/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-runtime/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-runtime-common/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-runtime-sgen/now 5.18.0.268-0xamarin9+ubuntu1604b1 mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 -mono-xbuild/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-xbuild/now 5.18.0.268-0xamarin9+ubuntu1604b1 mount/now 2.27.1-6ubuntu3.6 multiarch-support/now 2.23-0ubuntu11 ncurses-base/now 6.0+20160213-1ubuntu1 @@ -339,8 +339,8 @@ 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 +systemd/now 229-4ubuntu21.17 +systemd-sysv/now 229-4ubuntu21.17 sysv-rc/now 2.88dsf-59.3ubuntu2 sysvinit-utils/now 2.88dsf-59.3ubuntu2 tar/now 1.28-2.1ubuntu0.1 From dbfc4e82e46bf92b77dab867257d224b3c840828 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Mar 2019 15:53:29 +0000 Subject: [PATCH 0020/1009] Bot Updating Package Versions --- package_versions.txt | 304 +++++++++++++++++++++---------------------- 1 file changed, 152 insertions(+), 152 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8f91cb2..cbe5859 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser/now 3.113+nmu3ubuntu4 apt/now 1.2.29ubuntu0.1 -apt-transport-https/now 1.2.29ubuntu0.1 +apt-transport-https/now 1.2.31 apt-utils/now 1.2.29ubuntu0.1 base-files/now 9.4ubuntu4.8 base-passwd/now 3.5.39 @@ -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.268-0xamarin9+ubuntu1604b1 +ca-certificates-mono/now 5.18.1.0-0xamarin4+ubuntu1604b1 cli-common/now 0.9+xamarin8+ubuntu1604b1 coreutils/now 8.25-2ubuntu3~16.04 curl/now 7.47.0-1ubuntu2.12 @@ -98,149 +98,149 @@ 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 -libmono-2.0-dev/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-accessibility4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-cairo4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-cecil-private-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-accessibility4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cairo4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cecil-private-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-cil-dev/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-codecontracts4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-corlib4.5-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-cscompmgd0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-csharp4.0c-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-custommarshalers4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-data-tds4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-db2-1.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-debugger-soft4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-http4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n-cjk4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n-mideast4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n-other4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n-rare4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n-west4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n4.0-all/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-i18n4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-ldap4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-management4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-messaging-rabbitmq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-messaging4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-build-engine4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-build-framework4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-build4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-csharp4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-cil-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-codecontracts4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-corlib4.5-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cscompmgd0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-csharp4.0c-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-custommarshalers4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-data-tds4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-db2-1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-debugger-soft4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-cjk4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-mideast4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-other4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-rare4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-west4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n4.0-all/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-messaging-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-engine4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-framework4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-csharp4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-microsoft-visualc10.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-oracle4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-parallel4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-peapi4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-posix4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-rabbitmq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-relaxng4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-security4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-sharpzip4.84-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-simd4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-smdiagnostics0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-sqlite4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-componentmodel-composition4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-configuration-install4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-configuration4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-core4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-data-datasetextensions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-data-entity4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-data-linq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-data-services-client4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-data-services4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-data4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-deployment4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-design4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-drawing-design4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-drawing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-dynamic4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-enterpriseservices4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-identitymodel4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-io-compression4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-json-microsoft4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-json4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-ldap-protocols4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-ldap4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-management4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-messaging4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-net-http-formatting4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-net-http-webrequest4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-net-http4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-net4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-numerics-vectors4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-numerics4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-core2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-debugger2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-experimental2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-interfaces2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-linq2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-platformservices2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-providers2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-reflection-context4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-runtime-caching4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-runtime-serialization4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-runtime4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-security4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-servicemodel-activation4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-servicemodel-internals0.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-servicemodel-routing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-servicemodel-web4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-servicemodel4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-serviceprocess4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-transactions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-abstractions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-applicationservices4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-dynamicdata4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-extensions-design4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-extensions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-http-selfhost4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-http-webhost4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-http4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-mobile4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-mvc3.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-razor2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-regularexpressions4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-routing4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-services4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-webpages-razor2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web-webpages2.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-web4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-windows-forms4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-windows4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-workflow-activities4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-workflow-runtime4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-xaml4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-xml-linq4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-xml-serialization4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system-xml4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-system4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-tasklets4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-webbrowser4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-webmatrix-data4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-windowsbase4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmono-xbuild-tasks4.0-cil/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmonosgen-2.0-1/now 5.18.0.268-0xamarin9+ubuntu1604b1 -libmonosgen-2.0-dev/now 5.18.0.268-0xamarin9+ubuntu1604b1 +libmono-microsoft-visualc10.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-oracle4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-parallel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-peapi4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-posix4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-relaxng4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-sharpzip4.84-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-simd4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-smdiagnostics0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-sqlite4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-componentmodel-composition4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-configuration-install4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-configuration4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-core4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-datasetextensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-entity4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-services-client4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-deployment4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-drawing-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-drawing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-dynamic4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-enterpriseservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-identitymodel-selectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-identitymodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-io-compression-filesystem4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-io-compression4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-json-microsoft4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-json4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-ldap-protocols4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net-http-formatting4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net-http-webrequest4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-numerics-vectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-numerics4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-core2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-debugger2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-experimental2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-interfaces2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-linq2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-platformservices2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-providers2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-windows-forms2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-windows-threading2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reflection-context4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-caching4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-activation4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-discovery4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-internals0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-serviceprocess4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-transactions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-abstractions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-applicationservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-dynamicdata4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-extensions-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-extensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-http-selfhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-http-webhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-mobile4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-mvc3.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-regularexpressions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-webpages-deployment2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-webpages-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-webpages2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-windows-forms4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-windows4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-workflow-activities4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-workflow-componentmodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-workflow-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xaml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xml-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xml-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-tasklets4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-webbrowser4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-webmatrix-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-windowsbase4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-xbuild-tasks4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmonosgen-2.0-1/now 5.18.1.0-0xamarin4+ubuntu1604b1 +libmonosgen-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1 libmount1/now 2.27.1-6ubuntu3.6 libncurses5/now 6.0+20160213-1ubuntu1 libncursesw5/now 6.0+20160213-1ubuntu1 @@ -309,16 +309,16 @@ 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.268-0xamarin9+ubuntu1604b1 -mono-devel/now 5.18.0.268-0xamarin9+ubuntu1604b1 -mono-gac/now 5.18.0.268-0xamarin9+ubuntu1604b1 -mono-mcs/now 5.18.0.268-0xamarin9+ubuntu1604b1 -mono-roslyn/now 5.18.0.268-0xamarin9+ubuntu1604b1 -mono-runtime/now 5.18.0.268-0xamarin9+ubuntu1604b1 -mono-runtime-common/now 5.18.0.268-0xamarin9+ubuntu1604b1 -mono-runtime-sgen/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-4.0-gac/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-devel/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-gac/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-mcs/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-roslyn/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-runtime/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-runtime-common/now 5.18.1.0-0xamarin4+ubuntu1604b1 +mono-runtime-sgen/now 5.18.1.0-0xamarin4+ubuntu1604b1 mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 -mono-xbuild/now 5.18.0.268-0xamarin9+ubuntu1604b1 +mono-xbuild/now 5.18.1.0-0xamarin4+ubuntu1604b1 mount/now 2.27.1-6ubuntu3.6 multiarch-support/now 2.23-0ubuntu11 ncurses-base/now 6.0+20160213-1ubuntu1 From 5deee328da8c8c4c6d9f7bf71c93a89a89bb2203 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 23 Mar 2019 16:46:38 -0700 Subject: [PATCH 0021/1009] Switching to new Base images, shift to arm32v7 tag. --- Dockerfile.aarch64 | 5 +-- Dockerfile.armhf | 5 +-- Jenkinsfile | 93 ++++++++++++++++++++++++++++++---------------- README.md | 4 +- readme-vars.yml | 3 +- 5 files changed, 67 insertions(+), 43 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b7e1839..4e5481a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,7 +1,4 @@ -FROM lsiobase/mono.arm64:xenial - -# Add qemu to build on x86_64 systems -COPY qemu-aarch64-static /usr/bin +FROM lsiobase/mono:arm64v8-xenial # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index ebc354f..1d75552 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,7 +1,4 @@ -FROM lsiobase/mono.armhf:xenial - -# Add qemu to build on x86_64 systems -COPY qemu-arm-static /usr/bin +FROM lsiobase/mono:arm32v7-xenial # set version label ARG BUILD_DATE diff --git a/Jenkinsfile b/Jenkinsfile index d811b87..db5b7fc 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-nightly" - sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-nightly" + sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ${IMAGE}:arm32v7-nightly" sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-nightly" 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-nightly" - sh "docker push ${IMAGE}:arm32v6-nightly" + sh "docker push ${IMAGE}:arm32v7-nightly" sh "docker push ${IMAGE}:arm64v8-nightly" sh "docker manifest push --purge ${IMAGE}:nightly || :" - sh "docker manifest create ${IMAGE}:nightly ${IMAGE}:amd64-nightly ${IMAGE}:arm32v6-nightly ${IMAGE}:arm64v8-nightly" - sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm32v6-nightly --os linux --arch arm" + sh "docker manifest create ${IMAGE}:nightly ${IMAGE}:amd64-nightly ${IMAGE}:arm32v7-nightly ${IMAGE}:arm64v8-nightly" + sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm32v7-nightly --os linux --arch arm" sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm64v8-nightly --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}:nightly" sh "docker manifest push --purge ${IMAGE}:${META_TAG}" sh '''docker rmi \ ${IMAGE}:amd64-${META_TAG} \ ${IMAGE}:amd64-nightly \ - ${IMAGE}:arm32v6-${META_TAG} \ - ${IMAGE}:arm32v6-nightly \ + ${IMAGE}:arm32v7-${META_TAG} \ + ${IMAGE}:arm32v7-nightly \ ${IMAGE}:arm64v8-${META_TAG} \ ${IMAGE}:arm64v8-nightly \ - 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 42176ac..16cce3c 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/radarr](https://github.com/linuxserver/docker-radarr) [![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn) @@ -40,7 +39,7 @@ The architectures supported by this image are: | :----: | --- | | x86-64 | amd64-latest | | arm64 | arm64v8-latest | -| armhf | arm32v6-latest | +| armhf | arm32v7-latest | ## Usage @@ -172,6 +171,7 @@ Below are the instructions for updating containers: ## Versions +* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **09.09.18:** - Add pipeline build process. * **24.02.18:** - Add nightly branch. * **06.02.18:** - Radarr repo changed owner. diff --git a/readme-vars.yml b/readme-vars.yml index 73004f7..83bf297 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -12,7 +12,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"} # Optional Block optional_block_1: true @@ -48,6 +48,7 @@ app_setup_block: | # changelog changelogs: + - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "09.09.18:", desc: "Add pipeline build process." } - { date: "24.02.18:", desc: "Add nightly branch." } - { date: "06.02.18:", desc: "Radarr repo changed owner." } From 7720298b16261f0861bfac8f6086191246c04a4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Mar 2019 20:00:33 +0000 Subject: [PATCH 0022/1009] Bot Updating Package Versions --- package_versions.txt | 706 +++++++++++++++++++++---------------------- 1 file changed, 353 insertions(+), 353 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cbe5859..afe5ddc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,353 +1,353 @@ -adduser/now 3.113+nmu3ubuntu4 -apt/now 1.2.29ubuntu0.1 -apt-transport-https/now 1.2.31 -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.1.0-0xamarin4+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 -libblkid1/now 2.27.1-6ubuntu3.6 -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 -libcomerr2/now 1.42.13-1ubuntu1 -libcryptsetup4/now 2:1.6.6-5ubuntu2.1 -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.1-0xamarin1+ubuntu1604b1 -libgif7/now 5.1.4-0.3~16.04 -libglib2.0-0/now 2.48.2-0ubuntu4.1 -libgmp10/now 2:6.1.0+dfsg-2 -libgnutls30/now 3.4.10-4ubuntu1.4 -libgpg-error0/now 1.21-2ubuntu1 -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 -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 -libmono-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-accessibility4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cairo4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cecil-private-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-cil-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-codecontracts4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-corlib4.5-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cscompmgd0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-csharp4.0c-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-custommarshalers4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-data-tds4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-db2-1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-debugger-soft4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-cjk4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-mideast4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-other4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-rare4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-west4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n4.0-all/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-messaging-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-engine4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-framework4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-csharp4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-microsoft-visualc10.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-oracle4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-parallel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-peapi4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-posix4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-relaxng4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-sharpzip4.84-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-simd4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-smdiagnostics0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-sqlite4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-componentmodel-composition4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-configuration-install4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-configuration4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-core4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-datasetextensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-entity4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-services-client4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-deployment4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-drawing-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-drawing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-dynamic4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-enterpriseservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-identitymodel-selectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-identitymodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-io-compression-filesystem4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-io-compression4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-json-microsoft4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-json4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-ldap-protocols4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net-http-formatting4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net-http-webrequest4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-numerics-vectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-numerics4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-core2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-debugger2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-experimental2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-interfaces2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-linq2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-platformservices2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-providers2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-windows-forms2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-windows-threading2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reflection-context4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-caching4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-activation4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-discovery4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-internals0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-serviceprocess4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-transactions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-abstractions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-applicationservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-dynamicdata4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-extensions-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-extensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-http-selfhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-http-webhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-mobile4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-mvc3.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-regularexpressions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-webpages-deployment2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-webpages-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-webpages2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-windows-forms4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-windows4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-workflow-activities4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-workflow-componentmodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-workflow-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xaml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xml-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xml-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-tasklets4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-webbrowser4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-webmatrix-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-windowsbase4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-xbuild-tasks4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmonosgen-2.0-1/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmonosgen-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1 -libmount1/now 2.27.1-6ubuntu3.6 -libncurses5/now 6.0+20160213-1ubuntu1 -libncursesw5/now 6.0+20160213-1ubuntu1 -libnettle6/now 3.2-1ubuntu0.16.04.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 -libonig2/now 5.9.6-1ubuntu0.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 -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 -libsmartcols1/now 2.27.1-6ubuntu3.6 -libsqlite3-0/now 3.11.0-1ubuntu1.1 -libss2/now 1.42.13-1ubuntu1 -libssl1.0.0/now 1.0.2g-1ubuntu4.15 -libstdc++6/now 5.4.0-6ubuntu1~16.04.11 -libsystemd0/now 229-4ubuntu21.17 -libtasn1-6/now 4.7-3ubuntu0.16.04.3 -libtiff5/now 4.0.6-1ubuntu0.6 -libtinfo5/now 6.0+20160213-1ubuntu1 -libudev1/now 229-4ubuntu21.17 -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 -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 -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 -libxrender1/now 1:0.9.9-0ubuntu1 -libzen0v5/now 0.4.37-1 -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.1.0-0xamarin4+ubuntu1604b1 -mono-devel/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-gac/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-mcs/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-roslyn/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-runtime/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-runtime-common/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-runtime-sgen/now 5.18.1.0-0xamarin4+ubuntu1604b1 -mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 -mono-xbuild/now 5.18.1.0-0xamarin4+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.17 -systemd-sysv/now 229-4ubuntu21.17 -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 +adduser3.113+nmu3ubuntu4 +apt1.2.29ubuntu0.1 +apt-transport-https1.2.31 +apt-utils1.2.29ubuntu0.1 +base-files9.4ubuntu4.8 +base-passwd3.5.39 +bash4.3-14ubuntu1.2 +binutils2.26.1-1ubuntu1~16.04.8 +bsdutils1:2.27.1-6ubuntu3.6 +bzip21.0.6-8 +ca-certificates20170717~16.04.2 +ca-certificates-mono5.18.1.0-0xamarin4+ubuntu1604b1 +cli-common0.9+xamarin8+ubuntu1604b1 +coreutils8.25-2ubuntu3~16.04 +curl7.47.0-1ubuntu2.12 +dash0.5.8-2.1ubuntu2 +debconf1.5.58ubuntu1 +debianutils4.7 +diffutils1:3.3-3 +dpkg1.18.4ubuntu1.5 +dpkg-dev1.18.4ubuntu1.5 +e2fslibs1.42.13-1ubuntu1 +e2fsprogs1.42.13-1ubuntu1 +findutils4.6.0+git+20160126-2 +fontconfig-config2.11.94-0ubuntu1.1 +fonts-dejavu-core2.35-1 +gcc-5-base5.4.0-6ubuntu1~16.04.11 +gcc-6-base6.0.1-0ubuntu1 +gnupg1.4.20-1ubuntu3.3 +gpgv1.4.20-1ubuntu3.3 +grep2.25-1~16.04.1 +gzip1.6-4ubuntu1 +hostname3.16ubuntu2 +init1.29ubuntu4 +initscripts2.88dsf-59.3ubuntu2 +init-system-helpers1.29ubuntu4 +insserv1.14.0-5ubuntu3 +jq1.5+dfsg-1ubuntu0.1 +krb5-locales1.13.2+dfsg-5ubuntu2.1 +libacl12.2.52-3 +libapparmor12.10.95-0ubuntu2.10 +libapt-inst2.01.2.29ubuntu0.1 +libapt-pkg5.01.2.29ubuntu0.1 +libasn1-8-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libattr11:2.4.47-2 +libaudit11:2.4.5-1ubuntu2.1 +libaudit-common1:2.4.5-1ubuntu2.1 +libblkid12.27.1-6ubuntu3.6 +libbz2-1.01.0.6-8 +libc62.23-0ubuntu11 +libcairo21.14.6-1 +libcap21:2.24-12 +libcap2-bin1:2.24-12 +libc-bin2.23-0ubuntu11 +libcomerr21.42.13-1ubuntu1 +libcryptsetup42:1.6.6-5ubuntu2.1 +libcurl37.47.0-1ubuntu2.12 +libcurl3-gnutls7.47.0-1ubuntu2.12 +libcurl4-openssl-dev7.47.0-1ubuntu2.12 +libdb5.35.3.28-11ubuntu0.1 +libdebconfclient00.198ubuntu1 +libdevmapper1.02.12:1.02.110-1ubuntu10 +libdpkg-perl1.18.4ubuntu1.5 +libexif120.6.21-2 +libexpat12.1.0-7ubuntu0.16.04.3 +libfdisk12.27.1-6ubuntu3.6 +libffi63.2.1-4 +libfontconfig12.11.94-0ubuntu1.1 +libfreetype62.6.1-0.1ubuntu2.3 +libgcc11:6.0.1-0ubuntu1 +libgcrypt201.6.5-2ubuntu0.5 +libgdbm31.8.3-13.1 +libgdiplus5.6.1-0xamarin1+ubuntu1604b1 +libgif75.1.4-0.3~16.04 +libglib2.0-02.48.2-0ubuntu4.1 +libgmp102:6.1.0+dfsg-2 +libgnutls303.4.10-4ubuntu1.4 +libgpg-error01.21-2ubuntu1 +libgssapi3-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libgssapi-krb5-21.13.2+dfsg-5ubuntu2.1 +libhcrypto4-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libheimbase1-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libheimntlm0-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libhogweed43.2-1ubuntu0.16.04.1 +libhx509-5-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libidn111.32-3ubuntu1.2 +libjbig02.1-3.1 +libjpeg88c-2ubuntu8 +libjpeg-turbo81.4.2-0ubuntu3.1 +libk5crypto31.13.2+dfsg-5ubuntu2.1 +libkeyutils11.5.9-8ubuntu1 +libkmod222-1ubuntu5.2 +libkrb5-26-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libkrb5-31.13.2+dfsg-5ubuntu2.1 +libkrb5support01.13.2+dfsg-5ubuntu2.1 +libldap-2.4-22.4.42+dfsg-2ubuntu3.4 +liblz4-10.0~r131-2ubuntu2 +liblzma55.1.1alpha+20120614-2ubuntu2 +libmediainfo0v518.12-1 +libmms00.6.4-1 +libmono-2.0-dev5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-accessibility4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cairo4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cecil-private-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1604b1 +libmono-cil-dev5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-codecontracts4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-compilerservices-symbolwriter4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-corlib4.5-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cscompmgd0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-csharp4.0c-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-custommarshalers4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-data-tds4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-db2-1.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-debugger-soft4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-http4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n4.0-all5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-cjk4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-mideast4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-other4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-rare4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-i18n-west4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-management4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-messaging-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-engine4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-framework4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-csharp4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1604b1 +libmono-microsoft-visualc10.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-web-infrastructure1.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-oracle4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-parallel4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-peapi4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-posix4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-relaxng4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-security4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmonosgen-2.0-15.18.1.0-0xamarin4+ubuntu1604b1 +libmonosgen-2.0-dev5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-sharpzip4.84-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-simd4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-smdiagnostics0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-sqlite4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-componentmodel-composition4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-componentmodel-dataannotations4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-configuration4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-configuration-install4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-core4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-datasetextensions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-entity4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-services4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-data-services-client4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-deployment4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-design4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-drawing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-drawing-design4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-dynamic4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-enterpriseservices4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-identitymodel4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-identitymodel-selectors4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-io-compression4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-io-compression-filesystem4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-json4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-json-microsoft4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-ldap-protocols4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-management4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net-http4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net-http-formatting4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-net-http-webrequest4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-numerics4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-numerics-vectors4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-core2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-debugger2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-experimental2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-interfaces2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-linq2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-observable-aliases0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-platformservices2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-providers2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-runtime-remoting2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-windows-forms2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reactive-windows-threading2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-reflection-context4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-caching4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-durableinstancing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-security4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-activation4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-discovery4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-internals0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-servicemodel-web4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-serviceprocess4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-threading-tasks-dataflow4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-transactions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-abstractions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-applicationservices4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-dynamicdata4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-extensions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-extensions-design4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-http4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-http-selfhost4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-http-webhost4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-mobile4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-mvc3.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-regularexpressions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-services4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-webpages2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-webpages-deployment2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-web-webpages-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-windows4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-windows-forms4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-windows-forms-datavisualization4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-workflow-activities4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-workflow-componentmodel4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-workflow-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xaml4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xml4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xml-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-system-xml-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-tasklets4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-webbrowser4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-webmatrix-data4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-windowsbase4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-xbuild-tasks4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmount12.27.1-6ubuntu3.6 +libncurses56.0+20160213-1ubuntu1 +libncursesw56.0+20160213-1ubuntu1 +libnettle63.2-1ubuntu0.16.04.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 +libonig25.9.6-1ubuntu0.1 +libp11-kit00.23.2-5~ubuntu16.04.1 +libpam0g1.1.8-3.2ubuntu2.1 +libpam-modules1.1.8-3.2ubuntu2.1 +libpam-modules-bin1.1.8-3.2ubuntu2.1 +libpam-runtime1.1.8-3.2ubuntu2.1 +libpcre32:8.38-3.1 +libperl5.225.22.1-9ubuntu0.6 +libpixman-1-00.33.6-1 +libpng12-01.2.54-1ubuntu1.1 +libprocps42:3.3.10-4ubuntu2.4 +libpython2.7-minimal2.7.12-1ubuntu0~16.04.4 +libpython2.7-stdlib2.7.12-1ubuntu0~16.04.4 +libpython-stdlib2.7.12-1~16.04 +libreadline66.3-8ubuntu2 +libroken18-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +librtmp12.4+20151223.gitfa8646d-1ubuntu0.1 +libsasl2-22.1.26.dfsg1-14ubuntu0.1 +libsasl2-modules2.1.26.dfsg1-14ubuntu0.1 +libsasl2-modules-db2.1.26.dfsg1-14ubuntu0.1 +libseccomp22.3.1-2.1ubuntu2~16.04.1 +libselinux12.4-3build2 +libsemanage12.3-1build3 +libsemanage-common2.3-1build3 +libsepol12.4-2 +libsmartcols12.27.1-6ubuntu3.6 +libsqlite3-03.11.0-1ubuntu1.1 +libss21.42.13-1ubuntu1 +libssl1.0.01.0.2g-1ubuntu4.15 +libstdc++65.4.0-6ubuntu1~16.04.11 +libsystemd0229-4ubuntu21.17 +libtasn1-64.7-3ubuntu0.16.04.3 +libtiff54.0.6-1ubuntu0.6 +libtinfo56.0+20160213-1ubuntu1 +libudev1229-4ubuntu21.17 +libusb-0.1-42:0.1.12-28 +libustr-1.0-11.0.4-5 +libuuid12.27.1-6ubuntu3.6 +libwind0-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libx11-62:1.6.3-1ubuntu2.1 +libx11-data2:1.6.3-1ubuntu2.1 +libxau61:1.0.8-1 +libxcb11.11.1-1ubuntu1 +libxcb-render01.11.1-1ubuntu1 +libxcb-shm01.11.1-1ubuntu1 +libxdmcp61:1.1.2-1.1 +libxext62:1.3.3-1 +libxrender11:0.9.9-0ubuntu1 +libzen0v50.4.37-1 +locales2.23-0ubuntu11 +login1:4.2-3.1ubuntu5.3 +lsb-base9.20160110ubuntu0.2 +make4.1-6 +makedev2.3.1-93ubuntu2~ubuntu16.04.1 +mawk1.3.3-17ubuntu2 +mediainfo18.12-1 +mime-support3.59ubuntu1 +mono-4.0-gac5.18.1.0-0xamarin4+ubuntu1604b1 +mono-devel5.18.1.0-0xamarin4+ubuntu1604b1 +mono-gac5.18.1.0-0xamarin4+ubuntu1604b1 +mono-mcs5.18.1.0-0xamarin4+ubuntu1604b1 +mono-roslyn5.18.1.0-0xamarin4+ubuntu1604b1 +mono-runtime5.18.1.0-0xamarin4+ubuntu1604b1 +mono-runtime-common5.18.1.0-0xamarin4+ubuntu1604b1 +mono-runtime-sgen5.18.1.0-0xamarin4+ubuntu1604b1 +mono-vbnc4.7-0xamarin1+ubuntu1604b1 +mono-xbuild5.18.1.0-0xamarin4+ubuntu1604b1 +mount2.27.1-6ubuntu3.6 +multiarch-support2.23-0ubuntu11 +ncurses-base6.0+20160213-1ubuntu1 +ncurses-bin6.0+20160213-1ubuntu1 +openssl1.0.2g-1ubuntu4.15 +passwd1:4.2-3.1ubuntu5.3 +patch2.7.5-1ubuntu0.16.04.1 +perl5.22.1-9ubuntu0.6 +perl-base5.22.1-9ubuntu0.6 +perl-modules-5.225.22.1-9ubuntu0.6 +pkg-config0.29.1-0ubuntu1 +procps2:3.3.10-4ubuntu2.4 +python2.7.12-1~16.04 +python2.72.7.12-1ubuntu0~16.04.4 +python2.7-minimal2.7.12-1ubuntu0~16.04.4 +python-minimal2.7.12-1~16.04 +readline-common6.3-8ubuntu2 +sed4.2.2-7 +sensible-utils0.0.9ubuntu0.16.04.1 +sqlite33.11.0-1ubuntu1.1 +systemd229-4ubuntu21.17 +systemd-sysv229-4ubuntu21.17 +sysvinit-utils2.88dsf-59.3ubuntu2 +sysv-rc2.88dsf-59.3ubuntu2 +tar1.28-2.1ubuntu0.1 +tzdata2018i-0ubuntu0.16.04 +ubuntu-keyring2012.05.19 +ucf3.0036 +unzip6.0-20ubuntu1 +util-linux2.27.1-6ubuntu3.6 +xz-utils5.1.1alpha+20120614-2ubuntu2 +zlib1g1:1.2.8.dfsg-2ubuntu4.1 From 458cf6190336eeb2d6f171297fe662156dc98b66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Apr 2019 15:57:32 +0100 Subject: [PATCH 0023/1009] 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 afe5ddc..bc9c961 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.113+nmu3ubuntu4 -apt1.2.29ubuntu0.1 +apt1.2.31 apt-transport-https1.2.31 -apt-utils1.2.29ubuntu0.1 +apt-utils1.2.31 base-files9.4ubuntu4.8 base-passwd3.5.39 bash4.3-14ubuntu1.2 @@ -39,8 +39,8 @@ jq1.5+dfsg-1ubuntu0.1 krb5-locales1.13.2+dfsg-5ubuntu2.1 libacl12.2.52-3 libapparmor12.10.95-0ubuntu2.10 -libapt-inst2.01.2.29ubuntu0.1 -libapt-pkg5.01.2.29ubuntu0.1 +libapt-inst2.01.2.31 +libapt-pkg5.01.2.31 libasn1-8-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 libattr11:2.4.47-2 libaudit11:2.4.5-1ubuntu2.1 From 5df677945a82b006f53d7d702f6206884426d4c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Apr 2019 10:53:26 -0400 Subject: [PATCH 0024/1009] 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 bc9c961..e1d273e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ binutils2.26.1-1ubuntu1~16.04.8 bsdutils1:2.27.1-6ubuntu3.6 bzip21.0.6-8 ca-certificates20170717~16.04.2 -ca-certificates-mono5.18.1.0-0xamarin4+ubuntu1604b1 +ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1604b1 cli-common0.9+xamarin8+ubuntu1604b1 coreutils8.25-2ubuntu3~16.04 curl7.47.0-1ubuntu2.12 @@ -98,149 +98,149 @@ liblz4-10.0~r131-2ubuntu2 liblzma55.1.1alpha+20120614-2ubuntu2 libmediainfo0v518.12-1 libmms00.6.4-1 -libmono-2.0-dev5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-accessibility4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cairo4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cecil-private-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-2.0-dev5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-accessibility4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-cairo4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-cecil-private-cil5.20.1.19-0xamarin2+ubuntu1604b1 libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1604b1 -libmono-cil-dev5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-codecontracts4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-compilerservices-symbolwriter4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-corlib4.5-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-cscompmgd0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-csharp4.0c-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-custommarshalers4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-data-tds4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-db2-1.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-debugger-soft4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-http4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n4.0-all5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-cjk4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-mideast4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-other4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-rare4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-i18n-west4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-management4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-messaging-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-engine4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-framework4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-csharp4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-cil-dev5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-codecontracts4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-compilerservices-symbolwriter4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-corlib4.5-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-cscompmgd0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-csharp4.0c-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-custommarshalers4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-data-tds4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-db2-1.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-debugger-soft4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-http4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n4.0-all5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n-cjk4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n-mideast4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n-other4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n-rare4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-i18n-west4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-management4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-messaging-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-build4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-build-engine4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-build-framework4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-csharp4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1604b1 -libmono-microsoft-visualc10.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-microsoft-web-infrastructure1.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-oracle4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-parallel4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-peapi4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-posix4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-relaxng4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-security4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmonosgen-2.0-15.18.1.0-0xamarin4+ubuntu1604b1 -libmonosgen-2.0-dev5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-sharpzip4.84-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-simd4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-smdiagnostics0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-sqlite4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-componentmodel-composition4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-componentmodel-dataannotations4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-configuration4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-configuration-install4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-core4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-datasetextensions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-entity4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-services4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-data-services-client4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-deployment4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-design4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-drawing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-drawing-design4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-dynamic4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-enterpriseservices4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-identitymodel4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-identitymodel-selectors4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-io-compression4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-io-compression-filesystem4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-json4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-json-microsoft4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-ldap-protocols4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-management4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net-http4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net-http-formatting4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-net-http-webrequest4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-numerics4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-numerics-vectors4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-core2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-debugger2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-experimental2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-interfaces2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-linq2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-observable-aliases0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-platformservices2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-providers2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-runtime-remoting2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-windows-forms2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reactive-windows-threading2.2-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-reflection-context4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-caching4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-durableinstancing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-security4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-activation4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-discovery4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-internals0.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-servicemodel-web4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-serviceprocess4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-threading-tasks-dataflow4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-transactions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-abstractions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-applicationservices4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-dynamicdata4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-extensions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-extensions-design4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-http4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-http-selfhost4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-http-webhost4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-mobile4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-mvc3.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-regularexpressions4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-services4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-webpages2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-webpages-deployment2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-web-webpages-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-windows4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-windows-forms4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-windows-forms-datavisualization4.0a-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-workflow-activities4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-workflow-componentmodel4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-workflow-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xaml4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xml4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xml-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-system-xml-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-tasklets4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-webbrowser4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-webmatrix-data4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-windowsbase4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 -libmono-xbuild-tasks4.0-cil5.18.1.0-0xamarin4+ubuntu1604b1 +libmono-microsoft-visualc10.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-microsoft-web-infrastructure1.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-oracle4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-parallel4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-peapi4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-posix4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-relaxng4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-security4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmonosgen-2.0-15.20.1.19-0xamarin2+ubuntu1604b1 +libmonosgen-2.0-dev5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-sharpzip4.84-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-simd4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-smdiagnostics0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-sqlite4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-componentmodel-composition4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-componentmodel-dataannotations4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-configuration4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-configuration-install4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-core4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-data4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-data-datasetextensions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-data-entity4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-data-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-data-services4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-data-services-client4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-deployment4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-design4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-drawing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-drawing-design4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-dynamic4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-enterpriseservices4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-identitymodel4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-identitymodel-selectors4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-io-compression4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-io-compression-filesystem4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-json4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-json-microsoft4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-ldap-protocols4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-management4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-net4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-net-http4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-net-http-formatting4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-net-http-webrequest4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-numerics4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-numerics-vectors4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-core2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-debugger2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-experimental2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-interfaces2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-linq2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-observable-aliases0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-platformservices2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-providers2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-runtime-remoting2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-windows-forms2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reactive-windows-threading2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-reflection-context4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-runtime-caching4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-runtime-durableinstancing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-runtime-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-security4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-servicemodel4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-servicemodel-activation4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-servicemodel-discovery4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-servicemodel-internals0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-servicemodel-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-servicemodel-web4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-serviceprocess4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-threading-tasks-dataflow4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-transactions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-abstractions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-applicationservices4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-dynamicdata4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-extensions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-extensions-design4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-http4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-http-selfhost4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-http-webhost4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-mobile4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-mvc3.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-regularexpressions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-services4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-webpages2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-webpages-deployment2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-web-webpages-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-windows4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-windows-forms4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-windows-forms-datavisualization4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-workflow-activities4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-workflow-componentmodel4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-workflow-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-xaml4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-xml4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-xml-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-system-xml-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-tasklets4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-webbrowser4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-webmatrix-data4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-windowsbase4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 +libmono-xbuild-tasks4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 libmount12.27.1-6ubuntu3.6 libncurses56.0+20160213-1ubuntu1 libncursesw56.0+20160213-1ubuntu1 @@ -282,11 +282,11 @@ libsqlite3-03.11.0-1ubuntu1.1 libss21.42.13-1ubuntu1 libssl1.0.01.0.2g-1ubuntu4.15 libstdc++65.4.0-6ubuntu1~16.04.11 -libsystemd0229-4ubuntu21.17 +libsystemd0229-4ubuntu21.19 libtasn1-64.7-3ubuntu0.16.04.3 libtiff54.0.6-1ubuntu0.6 libtinfo56.0+20160213-1ubuntu1 -libudev1229-4ubuntu21.17 +libudev1229-4ubuntu21.19 libusb-0.1-42:0.1.12-28 libustr-1.0-11.0.4-5 libuuid12.27.1-6ubuntu3.6 @@ -309,16 +309,16 @@ makedev2.3.1-93ubuntu2~ubuntu16.04.1 mawk1.3.3-17ubuntu2 mediainfo18.12-1 mime-support3.59ubuntu1 -mono-4.0-gac5.18.1.0-0xamarin4+ubuntu1604b1 -mono-devel5.18.1.0-0xamarin4+ubuntu1604b1 -mono-gac5.18.1.0-0xamarin4+ubuntu1604b1 -mono-mcs5.18.1.0-0xamarin4+ubuntu1604b1 -mono-roslyn5.18.1.0-0xamarin4+ubuntu1604b1 -mono-runtime5.18.1.0-0xamarin4+ubuntu1604b1 -mono-runtime-common5.18.1.0-0xamarin4+ubuntu1604b1 -mono-runtime-sgen5.18.1.0-0xamarin4+ubuntu1604b1 +mono-4.0-gac5.20.1.19-0xamarin2+ubuntu1604b1 +mono-devel5.20.1.19-0xamarin2+ubuntu1604b1 +mono-gac5.20.1.19-0xamarin2+ubuntu1604b1 +mono-mcs5.20.1.19-0xamarin2+ubuntu1604b1 +mono-roslyn5.20.1.19-0xamarin2+ubuntu1604b1 +mono-runtime5.20.1.19-0xamarin2+ubuntu1604b1 +mono-runtime-common5.20.1.19-0xamarin2+ubuntu1604b1 +mono-runtime-sgen5.20.1.19-0xamarin2+ubuntu1604b1 mono-vbnc4.7-0xamarin1+ubuntu1604b1 -mono-xbuild5.18.1.0-0xamarin4+ubuntu1604b1 +mono-xbuild5.20.1.19-0xamarin2+ubuntu1604b1 mount2.27.1-6ubuntu3.6 multiarch-support2.23-0ubuntu11 ncurses-base6.0+20160213-1ubuntu1 @@ -339,8 +339,8 @@ readline-common6.3-8ubuntu2 sed4.2.2-7 sensible-utils0.0.9ubuntu0.16.04.1 sqlite33.11.0-1ubuntu1.1 -systemd229-4ubuntu21.17 -systemd-sysv229-4ubuntu21.17 +systemd229-4ubuntu21.19 +systemd-sysv229-4ubuntu21.19 sysvinit-utils2.88dsf-59.3ubuntu2 sysv-rc2.88dsf-59.3ubuntu2 tar1.28-2.1ubuntu0.1 From 2f3192be820fee02bd4ac2c9743fc83e922c9760 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Apr 2019 16:15:49 +0100 Subject: [PATCH 0025/1009] 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 e1d273e..f636b43 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -282,11 +282,11 @@ libsqlite3-03.11.0-1ubuntu1.1 libss21.42.13-1ubuntu1 libssl1.0.01.0.2g-1ubuntu4.15 libstdc++65.4.0-6ubuntu1~16.04.11 -libsystemd0229-4ubuntu21.19 +libsystemd0229-4ubuntu21.21 libtasn1-64.7-3ubuntu0.16.04.3 libtiff54.0.6-1ubuntu0.6 libtinfo56.0+20160213-1ubuntu1 -libudev1229-4ubuntu21.19 +libudev1229-4ubuntu21.21 libusb-0.1-42:0.1.12-28 libustr-1.0-11.0.4-5 libuuid12.27.1-6ubuntu3.6 @@ -339,8 +339,8 @@ readline-common6.3-8ubuntu2 sed4.2.2-7 sensible-utils0.0.9ubuntu0.16.04.1 sqlite33.11.0-1ubuntu1.1 -systemd229-4ubuntu21.19 -systemd-sysv229-4ubuntu21.19 +systemd229-4ubuntu21.21 +systemd-sysv229-4ubuntu21.21 sysvinit-utils2.88dsf-59.3ubuntu2 sysv-rc2.88dsf-59.3ubuntu2 tar1.28-2.1ubuntu0.1 From 81188e7a5fcc4375b05bba6c2eaedc45fe017d88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Apr 2019 14:59:11 +0000 Subject: [PATCH 0026/1009] 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 f636b43..d400e0c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -96,7 +96,7 @@ libkrb5support01.13.2+dfsg-5ubuntu2.1 libldap-2.4-22.4.42+dfsg-2ubuntu3.4 liblz4-10.0~r131-2ubuntu2 liblzma55.1.1alpha+20120614-2ubuntu2 -libmediainfo0v518.12-1 +libmediainfo0v519.04-1 libmms00.6.4-1 libmono-2.0-dev5.20.1.19-0xamarin2+ubuntu1604b1 libmono-accessibility4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 @@ -307,7 +307,7 @@ lsb-base9.20160110ubuntu0.2 make4.1-6 makedev2.3.1-93ubuntu2~ubuntu16.04.1 mawk1.3.3-17ubuntu2 -mediainfo18.12-1 +mediainfo19.04-1 mime-support3.59ubuntu1 mono-4.0-gac5.20.1.19-0xamarin2+ubuntu1604b1 mono-devel5.20.1.19-0xamarin2+ubuntu1604b1 From c57efee802a823a87f86377684c3480b05bca2f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 May 2019 11:26:10 +0000 Subject: [PATCH 0027/1009] Bot Updating Templated Files --- Jenkinsfile | 28 ++++++++++++---------------- README.md | 38 +++++++++++++++++++++++++++++--------- 2 files changed, 41 insertions(+), 25 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index db5b7fc..4d88050 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}':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' ''', @@ -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}:nightly ''' + ${IMAGE}:nightly || :''' } } @@ -565,7 +561,7 @@ pipeline { ${IMAGE}:arm64v8-${META_TAG} \ ${IMAGE}:arm64v8-nightly \ 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 "nightly" 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 nightly",\ + "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}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "target_commitish": "nightly",\ - "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 16cce3c..45539b3 100644 --- a/README.md +++ b/README.md @@ -153,15 +153,6 @@ Below are the instructions for updating containers: * Start the new container: `docker start radarr` * 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 radarr - ``` -* 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 radarr` @@ -169,6 +160,35 @@ Below are the instructions for updating containers: * or update a single container: `docker-compose up -d radarr` * 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 radarr + ``` +* 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-radarr.git +cd docker-radarr +docker build \ + --no-cache \ + --pull \ + -t linuxserver/radarr: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 c43853c59c4db0ef38da1a382f10f8fa1f0eb98b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 May 2019 11:29:03 +0000 Subject: [PATCH 0028/1009] 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 d400e0c..bb5bf12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -93,7 +93,7 @@ libkmod222-1ubuntu5.2 libkrb5-26-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 libkrb5-31.13.2+dfsg-5ubuntu2.1 libkrb5support01.13.2+dfsg-5ubuntu2.1 -libldap-2.4-22.4.42+dfsg-2ubuntu3.4 +libldap-2.4-22.4.42+dfsg-2ubuntu3.5 liblz4-10.0~r131-2ubuntu2 liblzma55.1.1alpha+20120614-2ubuntu2 libmediainfo0v519.04-1 @@ -302,7 +302,7 @@ libxext62:1.3.3-1 libxrender11:0.9.9-0ubuntu1 libzen0v50.4.37-1 locales2.23-0ubuntu11 -login1:4.2-3.1ubuntu5.3 +login1:4.2-3.1ubuntu5.4 lsb-base9.20160110ubuntu0.2 make4.1-6 makedev2.3.1-93ubuntu2~ubuntu16.04.1 @@ -324,7 +324,7 @@ multiarch-support2.23-0ubuntu11 ncurses-base6.0+20160213-1ubuntu1 ncurses-bin6.0+20160213-1ubuntu1 openssl1.0.2g-1ubuntu4.15 -passwd1:4.2-3.1ubuntu5.3 +passwd1:4.2-3.1ubuntu5.4 patch2.7.5-1ubuntu0.16.04.1 perl5.22.1-9ubuntu0.6 perl-base5.22.1-9ubuntu0.6 @@ -344,7 +344,7 @@ systemd-sysv229-4ubuntu21.21 sysvinit-utils2.88dsf-59.3ubuntu2 sysv-rc2.88dsf-59.3ubuntu2 tar1.28-2.1ubuntu0.1 -tzdata2018i-0ubuntu0.16.04 +tzdata2019a-0ubuntu0.16.04 ubuntu-keyring2012.05.19 ucf3.0036 unzip6.0-20ubuntu1 From b7e2fc7c9401d9e0a9e07d66c6c316a7141cd39e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 May 2019 14:51:48 +0000 Subject: [PATCH 0029/1009] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45539b3..0acebbd 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ Below are the instructions for updating containers: ``` docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock \ - containrrr/watchtower + containrrr/watchtower \ --run-once radarr ``` * You can also remove the old dangling images: `docker image prune` From 5bec90ad8c7d1b9ddb1f52ed4f7ff6e5676bce52 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 10 May 2019 12:44:39 -0700 Subject: [PATCH 0030/1009] rebase to bionic --- 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 84210be..09cfcc0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/mono:xenial +FROM lsiobase/mono:bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4e5481a..fc2a196 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm64v8-xenial +FROM lsiobase/mono:arm64v8-bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 1d75552..ed2fe50 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm32v7-xenial +FROM lsiobase/mono:arm32v7-bionic # set version label ARG BUILD_DATE diff --git a/README.md b/README.md index 0acebbd..e5cdf36 100644 --- a/README.md +++ b/README.md @@ -191,6 +191,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **10.05.19:** - Rebase to Bionic. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **09.09.18:** - Add pipeline build process. * **24.02.18:** - Add nightly branch. diff --git a/readme-vars.yml b/readme-vars.yml index 83bf297..f7ec85d 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -48,6 +48,7 @@ app_setup_block: | # changelog changelogs: + - { date: "10.05.19:", desc: "Rebase to Bionic." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "09.09.18:", desc: "Add pipeline build process." } - { date: "24.02.18:", desc: "Add nightly branch." } From dd007fea97a5a177f1f7a9a60e811f528c8b3b17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 10 May 2019 16:21:17 -0400 Subject: [PATCH 0031/1009] Bot Updating Package Versions --- package_versions.txt | 691 ++++++++++++++++++++++--------------------- 1 file changed, 351 insertions(+), 340 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bb5bf12..e5fe993 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,250 +1,262 @@ -adduser3.113+nmu3ubuntu4 -apt1.2.31 -apt-transport-https1.2.31 -apt-utils1.2.31 -base-files9.4ubuntu4.8 -base-passwd3.5.39 -bash4.3-14ubuntu1.2 -binutils2.26.1-1ubuntu1~16.04.8 -bsdutils1:2.27.1-6ubuntu3.6 -bzip21.0.6-8 -ca-certificates20170717~16.04.2 -ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1604b1 -cli-common0.9+xamarin8+ubuntu1604b1 -coreutils8.25-2ubuntu3~16.04 -curl7.47.0-1ubuntu2.12 -dash0.5.8-2.1ubuntu2 -debconf1.5.58ubuntu1 -debianutils4.7 -diffutils1:3.3-3 -dpkg1.18.4ubuntu1.5 -dpkg-dev1.18.4ubuntu1.5 -e2fslibs1.42.13-1ubuntu1 -e2fsprogs1.42.13-1ubuntu1 -findutils4.6.0+git+20160126-2 -fontconfig-config2.11.94-0ubuntu1.1 -fonts-dejavu-core2.35-1 -gcc-5-base5.4.0-6ubuntu1~16.04.11 -gcc-6-base6.0.1-0ubuntu1 -gnupg1.4.20-1ubuntu3.3 -gpgv1.4.20-1ubuntu3.3 -grep2.25-1~16.04.1 -gzip1.6-4ubuntu1 -hostname3.16ubuntu2 -init1.29ubuntu4 -initscripts2.88dsf-59.3ubuntu2 -init-system-helpers1.29ubuntu4 -insserv1.14.0-5ubuntu3 -jq1.5+dfsg-1ubuntu0.1 -krb5-locales1.13.2+dfsg-5ubuntu2.1 -libacl12.2.52-3 -libapparmor12.10.95-0ubuntu2.10 -libapt-inst2.01.2.31 -libapt-pkg5.01.2.31 -libasn1-8-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libattr11:2.4.47-2 -libaudit11:2.4.5-1ubuntu2.1 -libaudit-common1:2.4.5-1ubuntu2.1 -libblkid12.27.1-6ubuntu3.6 -libbz2-1.01.0.6-8 -libc62.23-0ubuntu11 -libcairo21.14.6-1 -libcap21:2.24-12 -libcap2-bin1:2.24-12 -libc-bin2.23-0ubuntu11 -libcomerr21.42.13-1ubuntu1 -libcryptsetup42:1.6.6-5ubuntu2.1 -libcurl37.47.0-1ubuntu2.12 -libcurl3-gnutls7.47.0-1ubuntu2.12 -libcurl4-openssl-dev7.47.0-1ubuntu2.12 -libdb5.35.3.28-11ubuntu0.1 -libdebconfclient00.198ubuntu1 -libdevmapper1.02.12:1.02.110-1ubuntu10 -libdpkg-perl1.18.4ubuntu1.5 -libexif120.6.21-2 -libexpat12.1.0-7ubuntu0.16.04.3 -libfdisk12.27.1-6ubuntu3.6 -libffi63.2.1-4 -libfontconfig12.11.94-0ubuntu1.1 -libfreetype62.6.1-0.1ubuntu2.3 -libgcc11:6.0.1-0ubuntu1 -libgcrypt201.6.5-2ubuntu0.5 -libgdbm31.8.3-13.1 -libgdiplus5.6.1-0xamarin1+ubuntu1604b1 -libgif75.1.4-0.3~16.04 -libglib2.0-02.48.2-0ubuntu4.1 -libgmp102:6.1.0+dfsg-2 -libgnutls303.4.10-4ubuntu1.4 -libgpg-error01.21-2ubuntu1 -libgssapi3-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libgssapi-krb5-21.13.2+dfsg-5ubuntu2.1 -libhcrypto4-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libheimbase1-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libheimntlm0-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libhogweed43.2-1ubuntu0.16.04.1 -libhx509-5-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libidn111.32-3ubuntu1.2 -libjbig02.1-3.1 +adduser3.116ubuntu1 +apt1.6.10 +apt-transport-https1.6.10 +apt-utils1.6.10 +base-files10.1ubuntu2.4 +base-passwd3.5.44 +bash4.4.18-2ubuntu1 +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 +ca-certificates-mono5.20.1.19-0xamarin2+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 +fontconfig-config2.12.6-0ubuntu2 +fonts-dejavu-core2.37-1 +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 +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.10 +libapt-pkg5.01.6.10 +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 +libbinutils2.30-21ubuntu1~18.04.1 +libblkid12.31.1-0.4ubuntu3.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 +libcom-err21.44.1-1ubuntu1.1 +libcurl3-gnutls7.58.0-2ubuntu3.6 +libcurl47.58.0-2ubuntu3.6 +libcurl4-openssl-dev7.58.0-2ubuntu3.6 +libdb5.35.3.28-13.1ubuntu1 +libdebconfclient00.213ubuntu1 +libdpkg-perl1.19.0.5ubuntu2.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.3.0-6ubuntu1~18.04 +libgcrypt201.8.1-4ubuntu1.1 +libgdbm51.14.1-6 +libgdbm-compat41.14.1-6 +libgdiplus5.6.1-0xamarin1+ubuntu1804b1 +libgif75.1.4-2 +libglib2.0-02.56.4-0ubuntu0.18.04.2 +libgmp102:6.1.2+dfsg-2 +libgnutls303.5.18-1ubuntu1 +libgpg-error01.27-6 +libgssapi3-heimdal7.5.0+dfsg-1 +libgssapi-krb5-21.16-2ubuntu0.1 +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 +libidn2-02.0.4-1.1build2 +libjbig02.1-3.1build1 libjpeg88c-2ubuntu8 -libjpeg-turbo81.4.2-0ubuntu3.1 -libk5crypto31.13.2+dfsg-5ubuntu2.1 -libkeyutils11.5.9-8ubuntu1 -libkmod222-1ubuntu5.2 -libkrb5-26-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libkrb5-31.13.2+dfsg-5ubuntu2.1 -libkrb5support01.13.2+dfsg-5ubuntu2.1 -libldap-2.4-22.4.42+dfsg-2ubuntu3.5 -liblz4-10.0~r131-2ubuntu2 -liblzma55.1.1alpha+20120614-2ubuntu2 +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.2 +libldap-common2.4.45+dfsg-1ubuntu1.2 +liblz4-10.0~r131-2ubuntu3 +liblzma55.2.2-1.3 libmediainfo0v519.04-1 -libmms00.6.4-1 -libmono-2.0-dev5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-accessibility4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-cairo4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-cecil-private-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1604b1 -libmono-cil-dev5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-codecontracts4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-compilerservices-symbolwriter4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-corlib4.5-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-cscompmgd0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-csharp4.0c-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-custommarshalers4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-data-tds4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-db2-1.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-debugger-soft4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-http4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n4.0-all5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n-cjk4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n-mideast4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n-other4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n-rare4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-i18n-west4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-management4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-messaging-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-build4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-build-engine4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-build-framework4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-csharp4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1604b1 -libmono-microsoft-visualc10.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-microsoft-web-infrastructure1.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-oracle4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-parallel4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-peapi4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-posix4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-relaxng4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-security4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmonosgen-2.0-15.20.1.19-0xamarin2+ubuntu1604b1 -libmonosgen-2.0-dev5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-sharpzip4.84-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-simd4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-smdiagnostics0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-sqlite4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-componentmodel-composition4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-componentmodel-dataannotations4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-configuration4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-configuration-install4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-core4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-data4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-data-datasetextensions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-data-entity4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-data-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-data-services4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-data-services-client4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-deployment4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-design4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-drawing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-drawing-design4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-dynamic4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-enterpriseservices4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-identitymodel4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-identitymodel-selectors4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-io-compression4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-io-compression-filesystem4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-json4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-json-microsoft4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-ldap-protocols4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-management4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-net4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-net-http4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-net-http-formatting4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-net-http-webrequest4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-numerics4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-numerics-vectors4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-core2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-debugger2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-experimental2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-interfaces2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-linq2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-observable-aliases0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-platformservices2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-providers2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-runtime-remoting2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-windows-forms2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reactive-windows-threading2.2-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-reflection-context4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-runtime-caching4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-runtime-durableinstancing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-runtime-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-security4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-servicemodel4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-servicemodel-activation4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-servicemodel-discovery4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-servicemodel-internals0.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-servicemodel-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-servicemodel-web4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-serviceprocess4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-threading-tasks-dataflow4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-transactions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-abstractions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-applicationservices4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-dynamicdata4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-extensions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-extensions-design4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-http4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-http-selfhost4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-http-webhost4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-mobile4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-mvc3.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-regularexpressions4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-services4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-webpages2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-webpages-deployment2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-web-webpages-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-windows4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-windows-forms4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-windows-forms-datavisualization4.0a-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-workflow-activities4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-workflow-componentmodel4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-workflow-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-xaml4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-xml4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-xml-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-system-xml-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-tasklets4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-webbrowser4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-webmatrix-data4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-windowsbase4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmono-xbuild-tasks4.0-cil5.20.1.19-0xamarin2+ubuntu1604b1 -libmount12.27.1-6ubuntu3.6 -libncurses56.0+20160213-1ubuntu1 -libncursesw56.0+20160213-1ubuntu1 -libnettle63.2-1ubuntu0.16.04.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 +libmount12.31.1-0.4ubuntu3.3 +libncurses56.1-1ubuntu1.18.04 +libncursesw56.1-1ubuntu1.18.04 +libnettle63.4-1 +libnghttp2-141.30.0-1ubuntu1 +libnpth01.5-3 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 @@ -252,102 +264,101 @@ 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 -libonig25.9.6-1ubuntu0.1 -libp11-kit00.23.2-5~ubuntu16.04.1 -libpam0g1.1.8-3.2ubuntu2.1 -libpam-modules1.1.8-3.2ubuntu2.1 -libpam-modules-bin1.1.8-3.2ubuntu2.1 -libpam-runtime1.1.8-3.2ubuntu2.1 -libpcre32:8.38-3.1 -libperl5.225.22.1-9ubuntu0.6 -libpixman-1-00.33.6-1 -libpng12-01.2.54-1ubuntu1.1 -libprocps42:3.3.10-4ubuntu2.4 -libpython2.7-minimal2.7.12-1ubuntu0~16.04.4 -libpython2.7-stdlib2.7.12-1ubuntu0~16.04.4 -libpython-stdlib2.7.12-1~16.04 -libreadline66.3-8ubuntu2 -libroken18-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -librtmp12.4+20151223.gitfa8646d-1ubuntu0.1 -libsasl2-22.1.26.dfsg1-14ubuntu0.1 -libsasl2-modules2.1.26.dfsg1-14ubuntu0.1 -libsasl2-modules-db2.1.26.dfsg1-14ubuntu0.1 -libseccomp22.3.1-2.1ubuntu2~16.04.1 -libselinux12.4-3build2 -libsemanage12.3-1build3 -libsemanage-common2.3-1build3 -libsepol12.4-2 -libsmartcols12.27.1-6ubuntu3.6 -libsqlite3-03.11.0-1ubuntu1.1 -libss21.42.13-1ubuntu1 -libssl1.0.01.0.2g-1ubuntu4.15 -libstdc++65.4.0-6ubuntu1~16.04.11 -libsystemd0229-4ubuntu21.21 -libtasn1-64.7-3ubuntu0.16.04.3 -libtiff54.0.6-1ubuntu0.6 -libtinfo56.0+20160213-1ubuntu1 -libudev1229-4ubuntu21.21 -libusb-0.1-42:0.1.12-28 -libustr-1.0-11.0.4-5 -libuuid12.27.1-6ubuntu3.6 -libwind0-heimdal1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libx11-62:1.6.3-1ubuntu2.1 -libx11-data2:1.6.3-1ubuntu2.1 +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 +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 +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 +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 +libsmartcols12.31.1-0.4ubuntu3.3 +libsqlite3-03.22.0-1 +libss21.44.1-1ubuntu1.1 +libssl1.11.1.0g-2ubuntu4.3 +libstdc++68.3.0-6ubuntu1~18.04 +libsystemd0237-3ubuntu10.21 +libtasn1-64.13-2 +libtiff54.0.9-5ubuntu0.2 +libtinfo56.1-1ubuntu1.18.04 +libudev1237-3ubuntu10.21 +libunistring20.9.9-0ubuntu2 +libuuid12.31.1-0.4ubuntu3.3 +libwind0-heimdal7.5.0+dfsg-1 +libx11-62:1.6.4-3ubuntu0.2 +libx11-data2:1.6.4-3ubuntu0.2 libxau61:1.0.8-1 -libxcb11.11.1-1ubuntu1 -libxcb-render01.11.1-1ubuntu1 -libxcb-shm01.11.1-1ubuntu1 -libxdmcp61:1.1.2-1.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 -libxrender11:0.9.9-0ubuntu1 +libxrender11:0.9.10-1 libzen0v50.4.37-1 -locales2.23-0ubuntu11 -login1:4.2-3.1ubuntu5.4 -lsb-base9.20160110ubuntu0.2 -make4.1-6 -makedev2.3.1-93ubuntu2~ubuntu16.04.1 -mawk1.3.3-17ubuntu2 +libzstd11.3.3+dfsg-2ubuntu1 +locales2.27-3ubuntu1 +login1:4.5-1ubuntu2 +lsb-base9.20170808ubuntu1 +make4.1-9.1ubuntu1 +mawk1.3.3-17ubuntu3 mediainfo19.04-1 -mime-support3.59ubuntu1 -mono-4.0-gac5.20.1.19-0xamarin2+ubuntu1604b1 -mono-devel5.20.1.19-0xamarin2+ubuntu1604b1 -mono-gac5.20.1.19-0xamarin2+ubuntu1604b1 -mono-mcs5.20.1.19-0xamarin2+ubuntu1604b1 -mono-roslyn5.20.1.19-0xamarin2+ubuntu1604b1 -mono-runtime5.20.1.19-0xamarin2+ubuntu1604b1 -mono-runtime-common5.20.1.19-0xamarin2+ubuntu1604b1 -mono-runtime-sgen5.20.1.19-0xamarin2+ubuntu1604b1 -mono-vbnc4.7-0xamarin1+ubuntu1604b1 -mono-xbuild5.20.1.19-0xamarin2+ubuntu1604b1 -mount2.27.1-6ubuntu3.6 -multiarch-support2.23-0ubuntu11 -ncurses-base6.0+20160213-1ubuntu1 -ncurses-bin6.0+20160213-1ubuntu1 -openssl1.0.2g-1ubuntu4.15 -passwd1:4.2-3.1ubuntu5.4 -patch2.7.5-1ubuntu0.16.04.1 -perl5.22.1-9ubuntu0.6 -perl-base5.22.1-9ubuntu0.6 -perl-modules-5.225.22.1-9ubuntu0.6 -pkg-config0.29.1-0ubuntu1 -procps2:3.3.10-4ubuntu2.4 -python2.7.12-1~16.04 -python2.72.7.12-1ubuntu0~16.04.4 -python2.7-minimal2.7.12-1ubuntu0~16.04.4 -python-minimal2.7.12-1~16.04 -readline-common6.3-8ubuntu2 -sed4.2.2-7 -sensible-utils0.0.9ubuntu0.16.04.1 -sqlite33.11.0-1ubuntu1.1 -systemd229-4ubuntu21.21 -systemd-sysv229-4ubuntu21.21 -sysvinit-utils2.88dsf-59.3ubuntu2 -sysv-rc2.88dsf-59.3ubuntu2 -tar1.28-2.1ubuntu0.1 -tzdata2019a-0ubuntu0.16.04 -ubuntu-keyring2012.05.19 -ucf3.0036 -unzip6.0-20ubuntu1 -util-linux2.27.1-6ubuntu3.6 -xz-utils5.1.1alpha+20120614-2ubuntu2 -zlib1g1:1.2.8.dfsg-2ubuntu4.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 +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-1ubuntu2 +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 +sqlite33.22.0-1 +sysvinit-utils2.88dsf-59.10ubuntu1 +tar1.29b-2ubuntu0.1 +tzdata2019a-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 960b1cb86ef87126694f1731fc3c0dbea9018a0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 May 2019 10:52:20 -0400 Subject: [PATCH 0032/1009] Bot Updating Templated Files --- Jenkinsfile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4d88050..b4faa00 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=nightly -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=nightly -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 nightly 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 888a890812df1867ba385fba76a686313ac871ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 May 2019 10:53:48 -0400 Subject: [PATCH 0033/1009] 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 0000000..f288702 --- /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 3c7c1396a07f5f6a364b57b78e32ef7d636432de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 May 2019 10:58:25 -0400 Subject: [PATCH 0034/1009] 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 e5fe993..b91d231 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 @@ -61,9 +61,9 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libcom-err21.44.1-1ubuntu1.1 -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 libdb5.35.3.28-13.1ubuntu1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.1 From debb8e93c32409394f7bf838438579897d75f116 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Jun 2019 15:51:46 +0100 Subject: [PATCH 0035/1009] Bot Updating Templated Files --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index b4faa00..8af153c 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 cc33298c075e5175a25267810cfa8511c499eac1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Jun 2019 14:55:11 +0000 Subject: [PATCH 0036/1009] 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 b91d231..c5f1ca3 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 @@ -64,7 +64,7 @@ libcom-err21.44.1-1ubuntu1.1 libcurl3-gnutls7.58.0-2ubuntu3.7 libcurl47.58.0-2ubuntu3.7 libcurl4-openssl-dev7.58.0-2ubuntu3.7 -libdb5.35.3.28-13.1ubuntu1 +libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.1 libexif120.6.21-4 @@ -82,7 +82,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2 libglib2.0-02.56.4-0ubuntu0.18.04.2 libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1 +libgnutls303.5.18-1ubuntu1.1 libgpg-error01.27-6 libgssapi3-heimdal7.5.0+dfsg-1 libgssapi-krb5-21.16-2ubuntu0.1 @@ -285,7 +285,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 c5b1a7fa193d235df5471e1fbfe136df6867e76d Mon Sep 17 00:00:00 2001 From: Mateusz Furdyna <17548441+SirFerdek@users.noreply.github.com> Date: Thu, 13 Jun 2019 00:30:30 +0200 Subject: [PATCH 0037/1009] Fix umask - get umask from environment Makes it consistent with other linuxserver.io images. --- README.md | 4 ++++ readme-vars.yml | 5 +++++ root/etc/services.d/radarr/run | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/README.md b/README.md index e5cdf36..21fe1eb 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ docker create \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ + -e UMASK_SET=022 `#optional` \ -p 7878:7878 \ -v :/config \ -v :/movies \ @@ -86,6 +87,7 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London + - UMASK_SET=022 #optional volumes: - :/config - :/movies @@ -105,6 +107,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, this is required for Radarr | +| `-e UMASK_SET=022` | control permissions of files and directories created by Radarr | | `-v /config` | Database and Radarr configs | | `-v /movies` | Location of Movie library on disk | | `-v /downloads` | Location of download managers output directory | @@ -191,6 +194,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **13.06.19:** - Add env variable for setting umask. * **10.05.19:** - Rebase to Bionic. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **09.09.18:** - Add pipeline build process. diff --git a/readme-vars.yml b/readme-vars.yml index f7ec85d..be42074 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -40,6 +40,10 @@ param_ports: param_usage_include_env: true param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London, this is required for Radarr"} +# 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 Radarr"} # application setup block app_setup_block_enabled: true @@ -48,6 +52,7 @@ app_setup_block: | # changelog changelogs: + - { date: "13.06.19:", desc: "Add env variable for setting umask." } - { date: "10.05.19:", desc: "Rebase to Bionic." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "09.09.18:", desc: "Add pipeline build process." } diff --git a/root/etc/services.d/radarr/run b/root/etc/services.d/radarr/run index 3867e15..7214523 100644 --- a/root/etc/services.d/radarr/run +++ b/root/etc/services.d/radarr/run @@ -1,5 +1,9 @@ #!/usr/bin/with-contenv bash +UMASK_SET=${UMASK_SET:-022} + +umask "$UMASK_SET" + cd /opt/radarr || exit exec \ From 5d82ae5dc751bac11803687d8f130caba3261330 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 Jun 2019 10:53:00 -0400 Subject: [PATCH 0038/1009] 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 c5f1ca3..fa29382 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 @@ -45,14 +45,14 @@ 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 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libbinutils2.30-21ubuntu1~18.04.1 +libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.3 libbsd00.8.7-1 libbz2-1.01.0.6-8.1 @@ -80,7 +80,7 @@ libgdbm51.14.1-6 libgdbm-compat41.14.1-6 libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2 -libglib2.0-02.56.4-0ubuntu0.18.04.2 +libglib2.0-02.56.4-0ubuntu0.18.04.3 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 libgpg-error01.27-6 @@ -276,8 +276,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 @@ -293,7 +293,7 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.3 libsqlite3-03.22.0-1 libss21.44.1-1ubuntu1.1 -libssl1.11.1.0g-2ubuntu4.3 +libssl1.11.1.1-1ubuntu2.1~18.04.1 libstdc++68.3.0-6ubuntu1~18.04 libsystemd0237-3ubuntu10.21 libtasn1-64.13-2 @@ -335,7 +335,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 @@ -346,8 +346,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 043fba52df964500cc4323e13ad1366832d4dd83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Jun 2019 14:53:45 +0000 Subject: [PATCH 0039/1009] 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 fa29382..d4b2de6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -27,7 +27,7 @@ fdisk2.31.1-0.4ubuntu3.3 findutils4.6.0+git+20170828-2 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 @@ -74,7 +74,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 @@ -291,15 +291,15 @@ libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.3 -libsqlite3-03.22.0-1 +libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 -libssl1.11.1.1-1ubuntu2.1~18.04.1 -libstdc++68.3.0-6ubuntu1~18.04 -libsystemd0237-3ubuntu10.21 +libssl1.11.1.1-1ubuntu2.1~18.04.2 +libstdc++68.3.0-6ubuntu1~18.04.1 +libsystemd0237-3ubuntu10.22 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.21 +libudev1237-3ubuntu10.22 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libwind0-heimdal7.5.0+dfsg-1 @@ -335,7 +335,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 @@ -352,7 +352,7 @@ python-minimal2.7.15~rc1-1 readline-common7.0-3 sed4.4-2 sensible-utils0.0.12 -sqlite33.22.0-1 +sqlite33.22.0-1ubuntu0.1 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019a-0ubuntu0.18.04 From 20edd5bf96d24936c4892dd8ee9fdbbcf380467b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Jul 2019 16:52:04 +0200 Subject: [PATCH 0040/1009] Bot Updating Templated Files --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 21fe1eb..e82c5c9 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,9 @@ Below are the instructions for updating containers: containrrr/watchtower \ --run-once radarr ``` + +**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 5d2bf82390bb217d1f2b82009d5a8b462e69e06e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Jul 2019 16:54:46 +0200 Subject: [PATCH 0041/1009] 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 d4b2de6..89eb306 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 @@ -55,7 +55,7 @@ libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.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 @@ -68,7 +68,7 @@ libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.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 @@ -293,13 +293,13 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.3 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 -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 -libsystemd0237-3ubuntu10.22 +libsystemd0237-3ubuntu10.23 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.22 +libudev1237-3ubuntu10.23 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libwind0-heimdal7.5.0+dfsg-1 @@ -335,7 +335,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 d9ebf0c1aac5b12da5d383248ec2d8730ca33901 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Jul 2019 09:27:23 +0000 Subject: [PATCH 0042/1009] 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 89eb306..25a7205 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 @@ -55,7 +55,7 @@ libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.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 607858218facd171f64e0b7df6db99e1038b5a88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Jul 2019 14:54:35 +0000 Subject: [PATCH 0043/1009] 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 25a7205..af8677b 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 @@ -80,7 +80,7 @@ libgdbm51.14.1-6 libgdbm-compat41.14.1-6 libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2 -libglib2.0-02.56.4-0ubuntu0.18.04.3 +libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 libgpg-error01.27-6 @@ -295,11 +295,11 @@ libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssl1.11.1.1-1ubuntu2.1~18.04.3 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.23 +libsystemd0237-3ubuntu10.24 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.23 +libudev1237-3ubuntu10.24 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libwind0-heimdal7.5.0+dfsg-1 @@ -355,7 +355,7 @@ sensible-utils0.0.12 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 12ed19976885272095d14066a79f5289437714c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Jul 2019 15:55:55 +0100 Subject: [PATCH 0044/1009] 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 af8677b..0713e44 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 @@ -78,7 +77,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 libgif75.1.4-2 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 @@ -106,164 +105,157 @@ 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 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libnpth01.5-3 -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 libonig46.7.0-1 libp11-kit00.23.9-2 libpam0g1.1.8-3.6ubuntu2.18.04.1 @@ -293,7 +285,7 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.3 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 -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 libsystemd0237-3ubuntu10.24 libtasn1-64.13-2 @@ -319,23 +311,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 49e12f8e39d61c4612adaa51cf22c4b8c827fc1b Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 1 Aug 2019 17:48:05 -0700 Subject: [PATCH 0045/1009] adding LTS branch for us to freeze a stable mono for downstream --- 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 09cfcc0..ffadd15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/mono:bionic +FROM lsiobase/mono:LTS # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index fc2a196..54a01f6 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 ed2fe50..2ee135c 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm32v7-bionic +FROM lsiobase/mono:arm32v7-LTS # set version label ARG BUILD_DATE diff --git a/README.md b/README.md index e82c5c9..6e098e3 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,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. * **10.05.19:** - Rebase to Bionic. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. diff --git a/readme-vars.yml b/readme-vars.yml index be42074..06fe750 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -52,6 +52,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: "10.05.19:", desc: "Rebase to Bionic." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } From 4d0455070089b8f1ecdb8e09669f6f61f7624fd8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Aug 2019 15:54:56 +0100 Subject: [PATCH 0046/1009] 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 0713e44..2b4aaec 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 @@ -329,7 +329,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 55fe13a669522d0039ec7e87ffa509775463256c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Aug 2019 16:17:13 -0400 Subject: [PATCH 0047/1009] 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 2b4aaec..d3038da 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 @@ -77,7 +78,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 libgif75.1.4-2 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 @@ -101,161 +102,168 @@ 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 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libnpth01.5-3 +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 libonig46.7.0-1 libp11-kit00.23.9-2 libpam0g1.1.8-3.6ubuntu2.18.04.1 @@ -313,16 +321,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 ad97cf59c554b0409f04b333a857e7690295ecc9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Aug 2019 15:58:11 +0100 Subject: [PATCH 0048/1009] 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 d3038da..d1fda3f 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 @@ -295,11 +295,11 @@ libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.24 +libsystemd0237-3ubuntu10.25 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.24 +libudev1237-3ubuntu10.25 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libwind0-heimdal7.5.0+dfsg-1 From e93dca1060401722b7045e5a5df53380363c76a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Aug 2019 20:40:05 -0400 Subject: [PATCH 0049/1009] 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 d1fda3f..891544b 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 @@ -78,7 +78,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 libgif75.1.4-2 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 @@ -108,149 +108,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 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -321,16 +321,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 9a972bed927cbf2269e9797f232476e1c0048af9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 23 Aug 2019 10:56:12 -0400 Subject: [PATCH 0050/1009] 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 891544b..6534451 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 @@ -66,7 +66,7 @@ libcurl47.58.0-2ubuntu3.7 libcurl4-openssl-dev7.58.0-2ubuntu3.7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdpkg-perl1.19.0.5ubuntu2.1 +libdpkg-perl1.19.0.5ubuntu2.2 libexif120.6.21-4 libexpat12.2.5-3ubuntu0.1 libext2fs21.44.1-1ubuntu1.1 @@ -79,7 +79,7 @@ libgcrypt201.8.1-4ubuntu1.1 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 libgdiplus5.6.1-0xamarin1+ubuntu1804b1 -libgif75.1.4-2 +libgif75.1.4-2ubuntu0.1 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 From 18819be44cf2527c11f758ba4173713b89eb7ddd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Sep 2019 12:26:07 -0400 Subject: [PATCH 0051/1009] Bot Updating Templated Files --- Jenkinsfile | 15 +++++++++++++-- README.md | 40 +++++++++++++++++++++++++--------------- 2 files changed, 38 insertions(+), 17 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8af153c..7ac296c 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=nightly -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 nightly 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 6e098e3..a704396 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/radarr](https://github.com/linuxserver/docker-radarr) -[![](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/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") -[![](https://images.microbadger.com/badges/image/linuxserver/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") -![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg) -![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg) -[![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-radarr/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?style=flat-square&color=E68523)](https://github.com/linuxserver/docker-radarr/releases) +[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") +[![MicroBadger Size](https://img.shields.io/microbadger/image-size/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/radarr) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/radarr) +[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/) [![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html) [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. @@ -29,7 +39,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/radarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. @@ -137,17 +147,17 @@ Access the webui at `:7878`, for more information check out [Radarr](ht * Shell access whilst the container is running: `docker exec -it radarr /bin/bash` * To monitor the logs of the container in realtime: `docker logs -f radarr` -* container version number +* container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr` * image version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/radarr` ## 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/radarr` * Stop the running container: `docker stop radarr` @@ -178,7 +188,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-radarr.git cd docker-radarr From c5f51669fec5f1e4e2a608bbb7d323f4114f4589 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Sep 2019 17:27:05 +0100 Subject: [PATCH 0052/1009] 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 0000000..7972213 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +open_collective: linuxserver From fe41d81cfa32d81f4ce3e769fb27258c0df8ae74 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Sep 2019 10:33:19 -0400 Subject: [PATCH 0053/1009] 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 6534451..2a780f4 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 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -53,7 +53,7 @@ libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.2 -libblkid12.31.1-0.4ubuntu3.3 +libblkid12.31.1-0.4ubuntu3.4 libbsd00.8.7-1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 @@ -70,7 +70,7 @@ libdpkg-perl1.19.0.5ubuntu2.2 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 @@ -102,8 +102,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 @@ -251,7 +251,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 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -274,7 +274,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 @@ -290,18 +290,18 @@ libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 -libsmartcols12.31.1-0.4ubuntu3.3 +libsmartcols12.31.1-0.4ubuntu3.4 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.25 +libsystemd0237-3ubuntu10.28 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.25 +libudev1237-3ubuntu10.28 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.3 +libuuid12.31.1-0.4ubuntu3.4 libwind0-heimdal7.5.0+dfsg-1 libx11-62:1.6.4-3ubuntu0.2 libx11-data2:1.6.4-3ubuntu0.2 @@ -313,7 +313,7 @@ libxdmcp61:1.1.2-3 libxext62:1.3.3-1 libxrender11:0.9.10-1 libzen0v50.4.37-1 -libzstd11.3.3+dfsg-2ubuntu1 +libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 @@ -331,7 +331,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 @@ -343,7 +343,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 @@ -359,6 +359,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 17f54b7fbb3be5f99168c21aed9d3d4a2167a5d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Sep 2019 10:59:24 -0400 Subject: [PATCH 0054/1009] 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 2a780f4..d52db34 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 @@ -61,9 +61,9 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libcom-err21.44.1-1ubuntu1.1 -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 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.2 @@ -106,7 +106,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 @@ -276,8 +276,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 @@ -319,7 +319,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 @@ -346,8 +346,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 258bb8eaf4d694aaa266d65f0d348ec10ce0abd1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 20 Sep 2019 15:57:12 +0100 Subject: [PATCH 0055/1009] 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 d52db34..830b39f 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 @@ -45,8 +45,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 @@ -68,7 +68,7 @@ libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.2 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 @@ -295,11 +295,11 @@ libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.28 +libsystemd0237-3ubuntu10.29 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.28 +libudev1237-3ubuntu10.29 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.4 libwind0-heimdal7.5.0+dfsg-1 From 784584ca72c677321f7fa77b5e926211626e23d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Sep 2019 15:54:59 +0100 Subject: [PATCH 0056/1009] 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 830b39f..6f143b3 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 @@ -66,7 +66,7 @@ libcurl47.58.0-2ubuntu3.8 libcurl4-openssl-dev7.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdpkg-perl1.19.0.5ubuntu2.2 +libdpkg-perl1.19.0.5ubuntu2.3 libexif120.6.21-4 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.1 From ea5941593edd7ca6546c3f605616f0261793c711 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Oct 2019 15:53:58 +0100 Subject: [PATCH 0057/1009] 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 6f143b3..b9e7433 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 fontconfig-config2.12.6-0ubuntu2 @@ -38,7 +38,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 @@ -60,7 +60,7 @@ libc62.27-3ubuntu1 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 -libcom-err21.44.1-1ubuntu1.1 +libcom-err21.44.1-1ubuntu1.2 libcurl3-gnutls7.58.0-2ubuntu3.8 libcurl47.58.0-2ubuntu3.8 libcurl4-openssl-dev7.58.0-2ubuntu3.8 @@ -69,7 +69,7 @@ libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 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 @@ -292,7 +292,7 @@ libsemanage-common2.7-2build2 libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.4 libsqlite3-03.22.0-1ubuntu0.1 -libss21.44.1-1ubuntu1.1 +libss21.44.1-1ubuntu1.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libsystemd0237-3ubuntu10.29 From e0056817006ced255f5afc6787b1179280606d9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Oct 2019 10:51:55 -0400 Subject: [PATCH 0058/1009] Bot Updating Templated Files --- Jenkinsfile | 52 +++++++++++++++++++--------------------------------- 1 file changed, 19 insertions(+), 33 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7ac296c..b8ffd2a 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=nightly -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=nightly -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 nightly - 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 nightly + 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 f6fc2388b4cf9d47a5c5069a506c820983c4ced1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Oct 2019 10:52:46 -0400 Subject: [PATCH 0059/1009] 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 c73c33b..b9084fc 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 + -## Thanks, team linuxserver.io +## 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/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f6a6381..26d5031 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 c5e5d96454a84629bdfef7c8b26a4c7fc7ac4567 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Oct 2019 10:58:37 -0400 Subject: [PATCH 0060/1009] 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 b9e7433..c65cd74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -276,8 +276,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 @@ -346,8 +346,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 @@ -355,7 +355,7 @@ sensible-utils0.0.12 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 7f9ff3cb9c32fe5311db1e67a63c03ea5af21485 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Oct 2019 16:57:14 +0200 Subject: [PATCH 0061/1009] 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 c65cd74..95b6e46 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 @@ -295,11 +295,11 @@ libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.29 +libsystemd0237-3ubuntu10.31 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.29 +libudev1237-3ubuntu10.31 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.4 libwind0-heimdal7.5.0+dfsg-1 From f9b2fe43941b9934174611995f725a0ee1c8aaa6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 25 Oct 2019 15:53:58 +0100 Subject: [PATCH 0062/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 95b6e46..3ac56bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -297,7 +297,7 @@ libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libsystemd0237-3ubuntu10.31 libtasn1-64.13-2 -libtiff54.0.9-5ubuntu0.2 +libtiff54.0.9-5ubuntu0.3 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.31 libunistring20.9.9-0ubuntu2 From ae5a74967ba401f15ff1ac53173582f3de6c6027 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Nov 2019 15:51:42 +0000 Subject: [PATCH 0063/1009] Bot Updating Templated Files --- Jenkinsfile | 162 +++++++++++++++++++++++++++++++++++++++------------- README.md | 16 ++++-- 2 files changed, 133 insertions(+), 45 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b8ffd2a..7be0ac7 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 = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'RADARR_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}:nightly + docker push ${PUSHIMAGE}:nightly + docker push ${PUSHIMAGE}:${META_TAG} + done + for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do + docker rmi \ + ${DELETEIMAGE}:${META_TAG} \ + ${DELETEIMAGE}:nightly || : + done ''' - sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:nightly" - sh "docker push ${IMAGE}:nightly" - sh "docker push ${IMAGE}:${META_TAG}" - sh '''docker rmi \ - ${IMAGE}:${META_TAG} \ - ${IMAGE}:nightly || :''' - } } } @@ -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-nightly" - sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ${IMAGE}:arm32v7-nightly" - sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-nightly" - 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-nightly" - sh "docker push ${IMAGE}:arm32v7-nightly" - sh "docker push ${IMAGE}:arm64v8-nightly" - sh "docker manifest push --purge ${IMAGE}:nightly || :" - sh "docker manifest create ${IMAGE}:nightly ${IMAGE}:amd64-nightly ${IMAGE}:arm32v7-nightly ${IMAGE}:arm64v8-nightly" - sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm32v7-nightly --os linux --arch arm" - sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm64v8-nightly --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}:nightly" - sh "docker manifest push --purge ${IMAGE}:${META_TAG}" - sh '''docker rmi \ - ${IMAGE}:amd64-${META_TAG} \ - ${IMAGE}:amd64-nightly \ - ${IMAGE}:arm32v7-${META_TAG} \ - ${IMAGE}:arm32v7-nightly \ - ${IMAGE}:arm64v8-${META_TAG} \ - ${IMAGE}:arm64v8-nightly \ + 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-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-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}:nightly + 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}:nightly + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} + docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-nightly + docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-nightly + docker push ${LEGACYIMAGE}:amd64-${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker push ${LEGACYIMAGE}:nightly + docker push ${LEGACYIMAGE}:${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-nightly + docker push ${LEGACYIMAGE}:arm64v8-nightly + done + ''' + sh '''#! /bin/bash + for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + docker rmi \ + ${DELETEIMAGE}:amd64-${META_TAG} \ + ${DELETEIMAGE}:amd64-nightly \ + ${DELETEIMAGE}:arm32v7-${META_TAG} \ + ${DELETEIMAGE}:arm32v7-nightly \ + ${DELETEIMAGE}:arm64v8-${META_TAG} \ + ${DELETEIMAGE}:arm64v8-nightly || : + 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 a704396..a3b8112 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/radarr](https://github.com/linuxserver/docker-radarr) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?style=flat-square&color=E68523)](https://github.com/linuxserver/docker-radarr/releases) + +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-radarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-radarr) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/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/radarr) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") -[![MicroBadger Size](https://img.shields.io/microbadger/image-size/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/radarr) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/radarr) +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/radarr) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/radarr) [![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/) [![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html) From a87d46e109e736e8d74535bafbd888c50c818e82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Nov 2019 11:55:39 -0400 Subject: [PATCH 0064/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3ac56bd..c3e7ba1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -91,7 +91,7 @@ libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 libhogweed43.4-1 libhx509-5-heimdal7.5.0+dfsg-1 -libidn2-02.0.4-1.1build2 +libidn2-02.0.4-1.1ubuntu0.2 libjbig02.1-3.1build1 libjpeg88c-2ubuntu8 libjpeg-turbo81.5.2-0ubuntu5.18.04.1 From 59d71722a26fb3ec5bc7358c54cde29cb3f80ef9 Mon Sep 17 00:00:00 2001 From: Jameel Al-Aziz Date: Sun, 27 Oct 2019 18:41:04 -0700 Subject: [PATCH 0065/1009] Remove extra volumes from the Dockerfile Specifying the volumes in the Dockerfile is unnecessary and can lead to excessive orphaned volume if the user chooses to use different paths at runtime. --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ffadd15..04d71a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,4 +43,4 @@ COPY /root / # ports and volumes EXPOSE 7878 -VOLUME /config /downloads /movies +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 54a01f6..9c0ba65 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -43,4 +43,4 @@ COPY /root / # ports and volumes EXPOSE 7878 -VOLUME /config /downloads /movies +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 2ee135c..b5688ca 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -43,4 +43,4 @@ COPY /root / # ports and volumes EXPOSE 7878 -VOLUME /config /downloads /movies +VOLUME /config From 4cac216d3fb8de2db4a4e8cb3457e65767c9b860 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Nov 2019 16:55:00 +0100 Subject: [PATCH 0066/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c3e7ba1..51b78de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -94,7 +94,7 @@ libhx509-5-heimdal7.5.0+dfsg-1 libidn2-02.0.4-1.1ubuntu0.2 libjbig02.1-3.1build1 libjpeg88c-2ubuntu8 -libjpeg-turbo81.5.2-0ubuntu5.18.04.1 +libjpeg-turbo81.5.2-0ubuntu5.18.04.3 libjq11.5+dfsg-2 libk5crypto31.16-2ubuntu0.1 libkeyutils11.5.9-9.2ubuntu2 From cfb1a973318525b7e9345b65466de717b451ffcb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Nov 2019 15:54:04 +0000 Subject: [PATCH 0067/1009] 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 51b78de..edd550e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -293,7 +293,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 @@ -335,7 +335,7 @@ 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 +openssl1.1.1-1ubuntu2.1~18.04.5 passwd1:4.5-1ubuntu2 patch2.7.6-2ubuntu1.1 perl5.26.1-6ubuntu0.3 From a4c650e743a048b31166a4b6db4cb8b348bc85ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 29 Nov 2019 15:51:47 +0000 Subject: [PATCH 0068/1009] Bot Updating Templated Files --- Jenkinsfile | 6 +++--- README.md | 14 ++++++++++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7be0ac7..d0dbb8e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -619,7 +619,7 @@ pipeline { docker manifest push --purge ${MANIFESTIMAGE}:nightly 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 a3b8112..02852f6 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/radarr](https://github.com/linuxserver/docker-radarr) @@ -128,6 +126,18 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /movies` | Location of Movie library on disk | | `-v /downloads` | Location of download managers output directory | +## 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 df0ed1a35429754b032f02af7e1568bc4e062981 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Dec 2019 16:54:00 +0100 Subject: [PATCH 0069/1009] 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 edd550e..716104e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -291,15 +291,15 @@ 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 libtiff54.0.9-5ubuntu0.3 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 @@ -352,7 +352,7 @@ python-minimal2.7.15~rc1-1 readline-common7.0-3 sed4.4-2 sensible-utils0.0.12 -sqlite33.22.0-1ubuntu0.1 +sqlite33.22.0-1ubuntu0.2 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 From 305f76591070c83780cd44d083fc0383b49b7a73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 20 Dec 2019 15:55:12 +0000 Subject: [PATCH 0070/1009] 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 716104e..5cf6a73 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -276,8 +276,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.2 -libpython2.7-stdlib2.7.15-4ubuntu4~18.04.2 +libpython2.7-minimal2.7.17-1~18.04 +libpython2.7-stdlib2.7.17-1~18.04 libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 @@ -346,8 +346,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.2 -python2.7-minimal2.7.15-4ubuntu4~18.04.2 +python2.72.7.17-1~18.04 +python2.7-minimal2.7.17-1~18.04 python-minimal2.7.15~rc1-1 readline-common7.0-3 sed4.4-2 From 3778fd4560534243055a89dfaa914e77a258935b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 17 Jan 2020 15:54:10 +0000 Subject: [PATCH 0071/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5cf6a73..1a23810 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -82,7 +82,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2ubuntu0.1 libglib2.0-02.56.4-0ubuntu0.18.04.4 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 e3d5aba2f6261fddd9e6738ab62e2e0ffc53a3b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 Jan 2020 20:31:34 +0000 Subject: [PATCH 0072/1009] Bot Updating Package Versions --- package_versions.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1a23810..c3e1b94 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -54,7 +54,7 @@ libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.4 -libbsd00.8.7-1 +libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 libcairo21.15.10-2ubuntu0.1 @@ -75,7 +75,7 @@ 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 +libgcrypt201.8.1-4ubuntu1.2 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 libgdiplus5.6.1-0xamarin1+ubuntu1804b1 @@ -350,6 +350,7 @@ python2.72.7.17-1~18.04 python2.7-minimal2.7.17-1~18.04 python-minimal2.7.15~rc1-1 readline-common7.0-3 +repo-mediaarea1.0-12 sed4.4-2 sensible-utils0.0.12 sqlite33.22.0-1ubuntu0.2 From b5429c42148b2a28537b8022de8e9d1541f16f7d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 31 Jan 2020 01:28:14 +0000 Subject: [PATCH 0073/1009] 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 c3e1b94..66b2d7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -22,7 +22,7 @@ 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 +e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 @@ -60,7 +60,7 @@ libc62.27-3ubuntu1 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 -libcom-err21.44.1-1ubuntu1.2 +libcom-err21.44.1-1ubuntu1.3 libcurl3-gnutls7.58.0-2ubuntu3.8 libcurl47.58.0-2ubuntu3.8 libcurl4-openssl-dev7.58.0-2ubuntu3.8 @@ -69,7 +69,7 @@ libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 libexif120.6.21-4 libexpat12.2.5-3ubuntu0.2 -libext2fs21.44.1-1ubuntu1.2 +libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 @@ -82,7 +82,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2ubuntu0.1 libglib2.0-02.56.4-0ubuntu0.18.04.4 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 @@ -282,9 +282,9 @@ libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 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 @@ -292,7 +292,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 761ca700884fb5dfb6c9f9b66d9cf752e80097d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Feb 2020 15:55:51 +0000 Subject: [PATCH 0074/1009] 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 66b2d7e..66f3c85 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,13 +2,13 @@ adduser3.116ubuntu1 apt1.6.12 apt-transport-https1.6.12 apt-utils1.6.12 -base-files10.1ubuntu2.7 +base-files10.1ubuntu2.8 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 +bsdutils1:2.31.1-0.4ubuntu3.5 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 @@ -23,7 +23,7 @@ dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 dpkg-dev1.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 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -53,7 +53,7 @@ libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.2 -libblkid12.31.1-0.4ubuntu3.4 +libblkid12.31.1-0.4ubuntu3.5 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 @@ -70,7 +70,7 @@ libdpkg-perl1.19.0.5ubuntu2.3 libexif120.6.21-4 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.4 +libfdisk12.31.1-0.4ubuntu3.5 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 @@ -251,7 +251,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.4 +libmount12.31.1-0.4ubuntu3.5 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -290,7 +290,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 @@ -301,7 +301,7 @@ libtiff54.0.9-5ubuntu0.3 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 libx11-62:1.6.4-3ubuntu0.2 libx11-data2:1.6.4-3ubuntu0.2 @@ -331,7 +331,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.4 +mount2.31.1-0.4ubuntu3.5 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 @@ -360,6 +360,6 @@ tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 -util-linux2.31.1-0.4ubuntu3.4 +util-linux2.31.1-0.4ubuntu3.5 xz-utils5.2.2-1.3 zlib1g1:1.2.11.dfsg-0ubuntu2 From 4cd68c3af173feb7c68a6e8e9f8b282b7b500589 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Feb 2020 10:58:44 -0500 Subject: [PATCH 0075/1009] 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 66f3c85..a1218d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -67,7 +67,7 @@ libcurl4-openssl-dev7.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 -libexif120.6.21-4 +libexif120.6.21-4ubuntu0.1 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.5 @@ -295,11 +295,11 @@ 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 libtiff54.0.9-5ubuntu0.3 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 4af2b824e34c5f73206d478e8967052509315a16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 Feb 2020 15:53:49 +0000 Subject: [PATCH 0076/1009] 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 a1218d8..efb915e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -295,11 +295,11 @@ 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 libtiff54.0.9-5ubuntu0.3 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 a6ab0faeeeda00a9b027f734bff5257bd93f5973 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Mar 2020 16:54:25 +0100 Subject: [PATCH 0077/1009] 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 efb915e..268e863 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -291,7 +291,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 @@ -353,7 +353,7 @@ readline-common7.0-3 repo-mediaarea1.0-12 sed4.4-2 sensible-utils0.0.12 -sqlite33.22.0-1ubuntu0.2 +sqlite33.22.0-1ubuntu0.3 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 From eb40db12faf5c310b09e0e9e437f3e833cd04555 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 20 Mar 2020 11:55:03 -0400 Subject: [PATCH 0078/1009] 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 268e863..1e228c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -27,7 +27,7 @@ fdisk2.31.1-0.4ubuntu3.5 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 -gcc-8-base8.3.0-6ubuntu1~18.04.1 +gcc-8-base8.3.0-26ubuntu1~18.04 gnupg2.2.4-1ubuntu1.2 gnupg-l10n2.2.4-1ubuntu1.2 gnupg-utils2.2.4-1ubuntu1.2 @@ -74,7 +74,7 @@ libfdisk12.31.1-0.4ubuntu3.5 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 -libgcc11:8.3.0-6ubuntu1~18.04.1 +libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 @@ -294,7 +294,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 libtiff54.0.9-5ubuntu0.3 From 93c521ad0e37c9cc99e9d5443eb163eb10380e05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Mar 2020 15:55:51 +0000 Subject: [PATCH 0079/1009] 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 1e228c9..652b4b5 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.5 +bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 @@ -23,7 +23,7 @@ dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 dpkg-dev1.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 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -53,7 +53,7 @@ libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.2 -libblkid12.31.1-0.4ubuntu3.5 +libblkid12.31.1-0.4ubuntu3.6 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 @@ -70,7 +70,7 @@ libdpkg-perl1.19.0.5ubuntu2.3 libexif120.6.21-4ubuntu0.1 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.5 +libfdisk12.31.1-0.4ubuntu3.6 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 @@ -80,7 +80,7 @@ libgdbm51.14.1-6 libgdbm-compat41.14.1-6 libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2ubuntu0.1 -libglib2.0-02.56.4-0ubuntu0.18.04.4 +libglib2.0-02.56.4-0ubuntu0.18.04.6 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.3 libgpg-error01.27-6 @@ -251,7 +251,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.5 +libmount12.31.1-0.4ubuntu3.6 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -290,7 +290,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 @@ -301,7 +301,7 @@ libtiff54.0.9-5ubuntu0.3 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 libx11-62:1.6.4-3ubuntu0.2 libx11-data2:1.6.4-3ubuntu0.2 @@ -331,7 +331,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.5 +mount2.31.1-0.4ubuntu3.6 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 @@ -360,6 +360,6 @@ tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 -util-linux2.31.1-0.4ubuntu3.5 +util-linux2.31.1-0.4ubuntu3.6 xz-utils5.2.2-1.3 zlib1g1:1.2.11.dfsg-0ubuntu2 From 9a4ee6ae29e333d1aa087e8afee01d020a3f7178 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 5 Apr 2020 02:44:10 -0500 Subject: [PATCH 0080/1009] Move app to /app --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 4 ++-- readme-vars.yml | 1 + root/etc/services.d/radarr/run | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 04d71a1..92992c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,13 +25,13 @@ RUN \ radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ - /opt/radarr && \ + /app/radarr/bin && \ curl -o \ /tmp/radar.tar.gz -L \ "${radarr_url}" && \ tar ixzf \ /tmp/radar.tar.gz -C \ - /opt/radarr --strip-components=1 && \ + /app/radarr/bin --strip-components=1 && \ echo "**** clean up ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 9c0ba65..179b454 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,13 +25,13 @@ RUN \ radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ - /opt/radarr && \ + /app/radarr/bin && \ curl -o \ /tmp/radar.tar.gz -L \ "${radarr_url}" && \ tar ixzf \ /tmp/radar.tar.gz -C \ - /opt/radarr --strip-components=1 && \ + /app/radarr/bin --strip-components=1 && \ echo "**** clean up ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index b5688ca..644eeb4 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -25,13 +25,13 @@ RUN \ radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ - /opt/radarr && \ + /app/radarr/bin && \ curl -o \ /tmp/radar.tar.gz -L \ "${radarr_url}" && \ tar ixzf \ /tmp/radar.tar.gz -C \ - /opt/radarr --strip-components=1 && \ + /app/radarr/bin --strip-components=1 && \ echo "**** clean up ****" && \ rm -rf \ /tmp/* \ diff --git a/readme-vars.yml b/readme-vars.yml index 06fe750..1c4e63c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -52,6 +52,7 @@ app_setup_block: | # changelog changelogs: + - { date: "05.04.20:", desc: "Move app to /app." } - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - { date: "13.06.19:", desc: "Add env variable for setting umask." } - { date: "10.05.19:", desc: "Rebase to Bionic." } diff --git a/root/etc/services.d/radarr/run b/root/etc/services.d/radarr/run index 7214523..4932883 100644 --- a/root/etc/services.d/radarr/run +++ b/root/etc/services.d/radarr/run @@ -4,7 +4,7 @@ UMASK_SET=${UMASK_SET:-022} umask "$UMASK_SET" -cd /opt/radarr || exit +cd /app/radarr/bin || exit exec \ s6-setuidgid abc mono --debug Radarr.exe \ From dc2eaeb9502d38377a54d37af269695c2adb88ee Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Tue, 7 Apr 2020 17:43:34 -0500 Subject: [PATCH 0081/1009] Add donate link --- jenkins-vars.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 6a1162e..a7280f5 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: "Radarr", url: "https://opencollective.com/radarr" } + From 0996e01afdaeaedfe52b19fd5b3bc80a48fc6a8f Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Tue, 7 Apr 2020 19:30:11 -0500 Subject: [PATCH 0082/1009] Remove blank line --- jenkins-vars.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index a7280f5..bd3c75e 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -28,4 +28,3 @@ repo_vars: - CI_WEBPATH='' sponsor_links: - { name: "Radarr", url: "https://opencollective.com/radarr" } - From a175a663de86eb1994427053e1291f05bdbb10a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 15:48:49 -0500 Subject: [PATCH 0083/1009] Bot Updating Templated Files --- .github/FUNDING.yml | 1 + Jenkinsfile | 2 +- README.md | 9 +++++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 7972213..0f1bf16 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ open_collective: linuxserver +custom: ["https://opencollective.com/radarr",] diff --git a/Jenkinsfile b/Jenkinsfile index d0dbb8e..f56a1d3 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 02852f6..7890484 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) @@ -92,7 +92,7 @@ Compatible with docker-compose v2 schemas. ``` --- -version: "2" +version: "2.1" services: radarr: image: linuxserver/radarr @@ -158,6 +158,11 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). +## Docker Mods +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "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 From d01e5cc33f8ef8efb876931dcf8a8f0f1fe9fdb1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 20:50:03 +0000 Subject: [PATCH 0084/1009] 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 0000000..23c97a7 --- /dev/null +++ b/root/donate.txt @@ -0,0 +1 @@ +Radarr: https://opencollective.com/radarr From 66390375c5abe60e11fcb97e94afb6f75f5ada57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 15:55:10 -0500 Subject: [PATCH 0085/1009] 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 652b4b5..4412fe1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -27,7 +27,7 @@ fdisk2.31.1-0.4ubuntu3.6 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 -gcc-8-base8.3.0-26ubuntu1~18.04 +gcc-8-base8.4.0-1ubuntu1~18.04 gnupg2.2.4-1ubuntu1.2 gnupg-l10n2.2.4-1ubuntu1.2 gnupg-utils2.2.4-1ubuntu1.2 @@ -74,7 +74,7 @@ libfdisk12.31.1-0.4ubuntu3.6 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 -libgcc11:8.3.0-26ubuntu1~18.04 +libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 @@ -106,7 +106,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.09-1 +libmediainfo0v520.03-1 libmms00.6.4-2 libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 @@ -294,7 +294,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 libtiff54.0.9-5ubuntu0.3 @@ -312,14 +312,14 @@ libxcb-shm01.13-2~ubuntu18.04 libxdmcp61:1.1.2-3 libxext62:1.3.3-1 libxrender11:0.9.10-1 -libzen0v50.4.37-1 +libzen0v50.4.38-1 libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo19.09-1 +mediainfo20.03-1 mime-support3.60ubuntu1 mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 From 1c28dcb854d9d32699d73ebb02e82b95ed06b145 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Wed, 8 Apr 2020 16:39:29 -0500 Subject: [PATCH 0086/1009] Fix perms on /app --- root/etc/cont-init.d/30-config | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 0397230..a8bfaf6 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -3,5 +3,4 @@ # permissions chown -R abc:abc \ /config \ - /opt - + /app From 9e17fd8dbb4385475de09f0be71f9eba9cb8adcd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 9 Apr 2020 21:44:35 -0400 Subject: [PATCH 0087/1009] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7890484..6a7b1ad 100644 --- a/README.md +++ b/README.md @@ -228,6 +228,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.04.20:** - Move app to /app. * **01.08.19:** - Rebase to Linuxserver LTS mono version. * **13.06.19:** - Add env variable for setting umask. * **10.05.19:** - Rebase to Bionic. From 1c9c8397646d508104dde5b3df2b731c06fe6407 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 Apr 2020 14:59:15 +0000 Subject: [PATCH 0088/1009] Bot Updating Package Versions --- package_versions.txt | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4412fe1..bafff08 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,9 +5,9 @@ apt-utils1.6.12 base-files10.1ubuntu2.8 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 +binutils2.30-21ubuntu1~18.04.3 +binutils-common2.30-21ubuntu1~18.04.3 +binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.3 bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 @@ -52,7 +52,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libbinutils2.30-21ubuntu1~18.04.2 +libbinutils2.30-21ubuntu1~18.04.3 libblkid12.31.1-0.4ubuntu3.6 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -106,7 +106,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 -libmediainfo0v520.03-1 +libmediainfo0v517.12-1ubuntu0.1 libmms00.6.4-2 libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 @@ -276,8 +276,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.17-1~18.04 -libpython2.7-stdlib2.7.17-1~18.04 +libpython2.7-minimal2.7.17-1~18.04ubuntu1 +libpython2.7-stdlib2.7.17-1~18.04ubuntu1 libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 @@ -299,6 +299,7 @@ libsystemd0237-3ubuntu10.39 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.3 libtinfo56.1-1ubuntu1.18.04 +libtinyxml2-66.0.0+dfsg-1 libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 @@ -312,14 +313,14 @@ libxcb-shm01.13-2~ubuntu18.04 libxdmcp61:1.1.2-3 libxext62:1.3.3-1 libxrender11:0.9.10-1 -libzen0v50.4.38-1 +libzen0v50.4.37-1 libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo20.03-1 +mediainfo17.12-1 mime-support3.60ubuntu1 mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 @@ -346,8 +347,8 @@ pkg-config0.29.1-0ubuntu2 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 python2.7.15~rc1-1 -python2.72.7.17-1~18.04 -python2.7-minimal2.7.17-1~18.04 +python2.72.7.17-1~18.04ubuntu1 +python2.7-minimal2.7.17-1~18.04ubuntu1 python-minimal2.7.15~rc1-1 readline-common7.0-3 repo-mediaarea1.0-12 From 7b0a4f146015139d095635e1a6e9f4fc8128f385 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 May 2020 14:52:03 +0000 Subject: [PATCH 0089/1009] 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 0f1bf16..52dddfd 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ +github: linuxserver open_collective: linuxserver custom: ["https://opencollective.com/radarr",] diff --git a/Jenkinsfile b/Jenkinsfile index f56a1d3..83b90de 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}:nightly + docker push ${PUSHIMAGE}:nightly + 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}:nightly - docker push ${PUSHIMAGE}:nightly - 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-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-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}:nightly - 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}:nightly - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} - docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-nightly - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-nightly - docker push ${LEGACYIMAGE}:amd64-${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker push ${LEGACYIMAGE}:nightly - docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-nightly - docker push ${LEGACYIMAGE}:arm64v8-nightly - 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-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-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}:nightly + 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}:nightly + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} + docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-nightly + docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-nightly + docker push ${LEGACYIMAGE}:amd64-${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker push ${LEGACYIMAGE}:nightly + docker push ${LEGACYIMAGE}:${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-nightly + docker push ${LEGACYIMAGE}:arm64v8-nightly + done + ''' + } sh '''#! /bin/bash for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker rmi \ From 52383907b03d9c275110b35fece3603f0a8bb8b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 May 2020 14:54:43 +0000 Subject: [PATCH 0090/1009] Bot Updating Package Versions --- package_versions.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bafff08..b5a32e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -106,7 +106,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 -libmediainfo0v517.12-1ubuntu0.1 +libmediainfo0v520.03-1 libmms00.6.4-2 libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 @@ -299,7 +299,6 @@ libsystemd0237-3ubuntu10.39 libtasn1-64.13-2 libtiff54.0.9-5ubuntu0.3 libtinfo56.1-1ubuntu1.18.04 -libtinyxml2-66.0.0+dfsg-1 libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 @@ -313,14 +312,14 @@ libxcb-shm01.13-2~ubuntu18.04 libxdmcp61:1.1.2-3 libxext62:1.3.3-1 libxrender11:0.9.10-1 -libzen0v50.4.37-1 +libzen0v50.4.38-1 libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo17.12-1 +mediainfo20.03-1 mime-support3.60ubuntu1 mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 From e0b62c181b77292f81b87ce4504ce81ac134155f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 May 2020 14:55:10 +0000 Subject: [PATCH 0091/1009] 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 b5a32e1..99e3d1d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 apt1.6.12 -apt-transport-https1.6.12 +apt-transport-https1.6.12ubuntu0.1 apt-utils1.6.12 base-files10.1ubuntu2.8 base-passwd3.5.44 @@ -67,7 +67,7 @@ libcurl4-openssl-dev7.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 -libexif120.6.21-4ubuntu0.1 +libexif120.6.21-4ubuntu0.2 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.6 @@ -102,8 +102,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.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 libmediainfo0v520.03-1 @@ -295,11 +295,11 @@ 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 libtiff54.0.9-5ubuntu0.3 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 04ba0f9dc177ee4df1a6034481ca5f30b52d63a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 May 2020 14:53:26 +0000 Subject: [PATCH 0092/1009] 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 99e3d1d..029b325 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.116ubuntu1 -apt1.6.12 +apt1.6.12ubuntu0.1 apt-transport-https1.6.12ubuntu0.1 -apt-utils1.6.12 +apt-utils1.6.12ubuntu0.1 base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 @@ -45,8 +45,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 libassuan02.5.1-2 libattr11:2.4.47-2build1 @@ -356,7 +356,7 @@ sensible-utils0.0.12 sqlite33.22.0-1ubuntu0.3 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 ucf3.0038 unzip6.0-21ubuntu1 From a8756368bbf2b94ae45216fa9a8b472d5b12077e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 29 May 2020 14:52:12 +0000 Subject: [PATCH 0093/1009] Bot Updating Templated Files --- Jenkinsfile | 53 +++++++++++++++++------------------------------------ README.md | 40 ++++++++++++++++++++++------------------ 2 files changed, 39 insertions(+), 54 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 83b90de..10354f1 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}:nightly docker push ${PUSHIMAGE}:nightly @@ -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}:nightly || : @@ -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}:nightly 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}:nightly - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} - docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-nightly - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-nightly - docker push ${LEGACYIMAGE}:amd64-${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker push ${LEGACYIMAGE}:nightly - docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-nightly - docker push ${LEGACYIMAGE}:arm64v8-nightly - 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 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 ''' } 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-nightly \ diff --git a/README.md b/README.md index 6a7b1ad..c75ae1f 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/radarr](https://github.com/linuxserver/docker-radarr) -[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-radarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-radarr) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/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/radarr) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/radarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/radarr) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/radarr) -[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/) -[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html) +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/container_registry) +[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) +[![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-radarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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%2Flspipepr%2Fradarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html) [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. @@ -128,7 +127,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: @@ -138,6 +137,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`. @@ -159,7 +163,7 @@ Access the webui at `:7878`, for more information check out [Radarr](ht ## Docker Mods -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "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%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "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 1fc26e8fac056e63e443e173fc545c6ff2f3d3d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 29 May 2020 10:54:26 -0400 Subject: [PATCH 0094/1009] 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 029b325..f960a05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -293,13 +293,13 @@ 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 libtiff54.0.9-5ubuntu0.3 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 @@ -335,7 +335,7 @@ mount2.31.1-0.4ubuntu3.6 multiarch-support2.27-3ubuntu1 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 patch2.7.6-2ubuntu1.1 perl5.26.1-6ubuntu0.3 From a20998a9e2925b1599e0ca0a7f4f8cde3d060ab2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Jun 2020 16:51:44 +0200 Subject: [PATCH 0095/1009] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c75ae1f..638cc76 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![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-radarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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%2Flspipepr%2Fradarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/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%2Fradarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html) [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. From 18e29460cfee4661f0784ee4ac2f18fd35f8f6e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Jun 2020 10:54:33 -0400 Subject: [PATCH 0096/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f960a05..ffcd58c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ binutils-common2.30-21ubuntu1~18.04.3 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.3 bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20180409 +ca-certificates20190110~18.04.1 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 From a01f4ac98e995a1498b702c546325caf7756a6a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Jun 2020 10:53:03 -0400 Subject: [PATCH 0097/1009] 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 ffcd58c..261bb68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -94,7 +94,7 @@ libhx509-5-heimdal7.5.0+dfsg-1 libidn2-02.0.4-1.1ubuntu0.2 libjbig02.1-3.1build1 libjpeg88c-2ubuntu8 -libjpeg-turbo81.5.2-0ubuntu5.18.04.3 +libjpeg-turbo81.5.2-0ubuntu5.18.04.4 libjq11.5+dfsg-2 libk5crypto31.16-2ubuntu0.1 libkeyutils11.5.9-9.2ubuntu2 @@ -291,7 +291,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 @@ -353,7 +353,7 @@ readline-common7.0-3 repo-mediaarea1.0-12 sed4.4-2 sensible-utils0.0.12 -sqlite33.22.0-1ubuntu0.3 +sqlite33.22.0-1ubuntu0.4 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2020a-0ubuntu0.18.04 From 7b733196453dd75990cd00970ccfa9570bb293d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Jun 2020 10:53:16 -0400 Subject: [PATCH 0098/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 261bb68..638f8e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -67,7 +67,7 @@ libcurl4-openssl-dev7.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 -libexif120.6.21-4ubuntu0.2 +libexif120.6.21-4ubuntu0.5 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.6 From 2b305117fa0545ebf41b48ed33636c71b702c364 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Jun 2020 01:28:58 +0000 Subject: [PATCH 0099/1009] 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 638f8e7..21c6712 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ ca-certificates20190110~18.04.1 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.8 +curl7.58.0-2ubuntu3.9 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -61,9 +61,9 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libcom-err21.44.1-1ubuntu1.3 -libcurl3-gnutls7.58.0-2ubuntu3.8 -libcurl47.58.0-2ubuntu3.8 -libcurl4-openssl-dev7.58.0-2ubuntu3.8 +libcurl3-gnutls7.58.0-2ubuntu3.9 +libcurl47.58.0-2ubuntu3.9 +libcurl4-openssl-dev7.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 From d20149309be9b918984c4638268df1629c6b53a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Jul 2020 03:29:26 +0000 Subject: [PATCH 0100/1009] 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 21c6712..989c399 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -285,7 +285,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 @@ -305,7 +305,7 @@ libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 libx11-62:1.6.4-3ubuntu0.2 libx11-data2:1.6.4-3ubuntu0.2 -libxau61:1.0.8-1 +libxau61:1.0.8-1ubuntu1 libxcb11.13-2~ubuntu18.04 libxcb-render01.13-2~ubuntu18.04 libxcb-shm01.13-2~ubuntu18.04 From ebfb4e7a72f7301aa5c1e03a28d59a58b5cbd95f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 10 Jul 2020 10:53:08 -0400 Subject: [PATCH 0101/1009] 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 989c399..f4928fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -314,7 +314,7 @@ libxext62:1.3.3-1 libxrender11:0.9.10-1 libzen0v50.4.38-1 libzstd11.3.3+dfsg-2ubuntu1.1 -locales2.27-3ubuntu1 +locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 @@ -332,7 +332,7 @@ 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.6 -multiarch-support2.27-3ubuntu1 +multiarch-support2.27-3ubuntu1.2 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.6 From d4c596e45b633d15b3a64973b3d0ecad29e710ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 17 Jul 2020 14:53:29 +0000 Subject: [PATCH 0102/1009] 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 f4928fe..23ff451 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -56,10 +56,10 @@ libbinutils2.30-21ubuntu1~18.04.3 libblkid12.31.1-0.4ubuntu3.6 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1 +libc62.27-3ubuntu1.2 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1 +libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 libcurl3-gnutls7.58.0-2ubuntu3.9 libcurl47.58.0-2ubuntu3.9 @@ -82,7 +82,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgif75.1.4-2ubuntu0.1 libglib2.0-02.56.4-0ubuntu0.18.04.6 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 3d890e1d159004bd91fc742739d8a8864f1dceb2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 Jul 2020 10:53:35 -0400 Subject: [PATCH 0103/1009] 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 23ff451..09d07ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -102,8 +102,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.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 libmediainfo0v520.03-1 @@ -276,8 +276,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.17-1~18.04ubuntu1 -libpython2.7-stdlib2.7.17-1~18.04ubuntu1 +libpython2.7-minimal2.7.17-1~18.04ubuntu1.1 +libpython2.7-stdlib2.7.17-1~18.04ubuntu1.1 libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 @@ -346,8 +346,8 @@ pkg-config0.29.1-0ubuntu2 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 python2.7.15~rc1-1 -python2.72.7.17-1~18.04ubuntu1 -python2.7-minimal2.7.17-1~18.04ubuntu1 +python2.72.7.17-1~18.04ubuntu1.1 +python2.7-minimal2.7.17-1~18.04ubuntu1.1 python-minimal2.7.15~rc1-1 readline-common7.0-3 repo-mediaarea1.0-12 From a0ab197103679bdaa9986d2ac3328949ac8bd216 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 25 Jul 2020 15:37:43 -0700 Subject: [PATCH 0104/1009] update url ingestion to use official radarr server --- Dockerfile | 8 ++++---- Dockerfile.aarch64 | 6 +++--- Dockerfile.armhf | 6 +++--- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 92992c2..c8c2962 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG BUILD_DATE ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="sparklyballs" +LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" @@ -18,11 +18,11 @@ RUN \ apt-get install -y \ jq && \ echo "**** install radarr ****" && \ - if [ -z ${RADARR_RELEASE}+x} ]; then \ - RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + if [ -z ${RADARR_RELEASE+x} ]; then \ + RADARR_RELEASE=$(curl -k "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + radarr_url=$(curl -k -sX GET "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /app/radarr/bin && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 179b454..2f003b9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -5,7 +5,7 @@ ARG BUILD_DATE ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="sparklyballs" +LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" @@ -19,10 +19,10 @@ RUN \ jq && \ echo "**** install radarr ****" && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + RADARR_RELEASE=$(curl -k "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + radarr_url=$(curl -k -sX GET "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /app/radarr/bin && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 644eeb4..703afdd 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -5,7 +5,7 @@ ARG BUILD_DATE ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="sparklyballs" +LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" @@ -19,10 +19,10 @@ RUN \ jq && \ echo "**** install radarr ****" && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + RADARR_RELEASE=$(curl -k "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ + radarr_url=$(curl -k -sX GET "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ | select(.version == \"${RADARR_RELEASE}\") | .url") && \ mkdir -p \ /app/radarr/bin && \ diff --git a/Jenkinsfile b/Jenkinsfile index 10354f1..c9bca8d 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 = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' + JSON_URL = 'http://radarr.servarr.com/v1/update/nightly/changes?os=linux' JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'RADARR_RELEASE' LS_USER = 'linuxserver' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index bd3c75e..16df543 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 = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux' + - JSON_URL = 'http://radarr.servarr.com/v1/update/nightly/changes?os=linux' - JSON_PATH = '.[0].version' - BUILD_VERSION_ARG = 'RADARR_RELEASE' - LS_USER = 'linuxserver' From 6b3578b999f8566d86800ab3a4c5668fbf2c9e98 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 25 Jul 2020 15:45:49 -0700 Subject: [PATCH 0105/1009] use custom version command --- Jenkinsfile | 22 +++++++++++----------- jenkins-vars.yml | 3 ++- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c9bca8d..2302cf4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -100,16 +100,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://radarr.servarr.com/v1/update/nightly/changes?os=linux | 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"){ @@ -664,7 +664,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":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "target_commitish": "nightly",\ "name": "'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 16df543..ba78338 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -2,7 +2,8 @@ # jenkins variables project_name: docker-radarr -external_type: custom_json +external_type: na +custom_version_command: curl -sL https://radarr.servarr.com/v1/update/nightly/changes?os=linux | jq -r '.[0].version' release_type: prerelease release_tag: nightly ls_branch: nightly From 5117b42b21306fdec40142817bb6e496c8931072 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 25 Jul 2020 15:53:04 -0700 Subject: [PATCH 0106/1009] remove leftover params --- jenkins-vars.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index ba78338..0f787cb 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -8,8 +8,6 @@ release_type: prerelease release_tag: nightly ls_branch: nightly repo_vars: - - JSON_URL = 'http://radarr.servarr.com/v1/update/nightly/changes?os=linux' - - JSON_PATH = '.[0].version' - BUILD_VERSION_ARG = 'RADARR_RELEASE' - LS_USER = 'linuxserver' - LS_REPO = 'docker-radarr' From 5d52be30be137e41d70e32b892189ceb9dba492f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 Jul 2020 19:44:05 -0400 Subject: [PATCH 0107/1009] Bot Updating Templated Files --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2302cf4..947d0f5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,8 +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') - JSON_URL = 'http://radarr.servarr.com/v1/update/nightly/changes?os=linux' - JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'RADARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-radarr' From 4afecf9d44f2086963c68b9834fa8851b2e631bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Aug 2020 14:51:49 +0000 Subject: [PATCH 0108/1009] Bot Updating Templated Files --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 947d0f5..35f99b3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +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.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( @@ -234,7 +234,7 @@ pipeline { cd ${TEMPDIR}/repo/${LS_REPO} git checkout -f nightly 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} @@ -688,6 +688,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=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest docker pull lsiodev/readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ @@ -695,7 +699,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 9767f9046d0dca02148ca6a959e13cc76cbb67e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Aug 2020 10:52:53 -0400 Subject: [PATCH 0109/1009] 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 0000000..b26c504 --- /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-radarr/.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-radarr/.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 0000000..1806420 --- /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 6c71f0fb5686bbc51b9da7d0c2dc70fd6c8af9e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Aug 2020 15:06:38 +0000 Subject: [PATCH 0110/1009] 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 09d07ee..dfb4f45 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,9 +5,9 @@ apt-utils1.6.12ubuntu0.1 base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -binutils2.30-21ubuntu1~18.04.3 -binutils-common2.30-21ubuntu1~18.04.3 -binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.3 +binutils2.30-21ubuntu1~18.04.4 +binutils-common2.30-21ubuntu1~18.04.4 +binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.4 bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 @@ -52,7 +52,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libbinutils2.30-21ubuntu1~18.04.3 +libbinutils2.30-21ubuntu1~18.04.4 libblkid12.31.1-0.4ubuntu3.6 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -285,7 +285,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 cb7dd1cba511cc3c7558aa6f8dd88d182bf0c18f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Aug 2020 14:53:35 +0000 Subject: [PATCH 0111/1009] 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 dfb4f45..65ee3b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-transport-https1.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 binutils2.30-21ubuntu1~18.04.4 @@ -106,7 +106,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 -libmediainfo0v520.03-1 +libmediainfo0v520.08-1 libmms00.6.4-2 libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 @@ -295,11 +295,11 @@ 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 libtiff54.0.9-5ubuntu0.3 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 @@ -319,7 +319,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo20.03-1 +mediainfo20.08-1 mime-support3.60ubuntu1 mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 From 07c389bb5aa74c21d15eddb42844ec6a7a3c36d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 Aug 2020 14:52:08 +0000 Subject: [PATCH 0112/1009] 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 b26c504..ae2f437 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 c6d694921b7c5fd936f351698b5e171c32329095 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 Aug 2020 14:54:51 +0000 Subject: [PATCH 0113/1009] 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 65ee3b7..23f888e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ ca-certificates20190110~18.04.1 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.9 +curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -61,9 +61,9 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 -libcurl3-gnutls7.58.0-2ubuntu3.9 -libcurl47.58.0-2ubuntu3.9 -libcurl4-openssl-dev7.58.0-2ubuntu3.9 +libcurl3-gnutls7.58.0-2ubuntu3.10 +libcurl47.58.0-2ubuntu3.10 +libcurl4-openssl-dev7.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.3 From a70f65e90f38158c4ac34cc0956cb1af46fad539 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Sep 2020 14:58:55 +0000 Subject: [PATCH 0114/1009] 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 23f888e..75fb94a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -303,8 +303,8 @@ libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.2 -libx11-data2:1.6.4-3ubuntu0.2 +libx11-62:1.6.4-3ubuntu0.3 +libx11-data2:1.6.4-3ubuntu0.3 libxau61:1.0.8-1ubuntu1 libxcb11.13-2~ubuntu18.04 libxcb-render01.13-2~ubuntu18.04 From 8ce69a5d1d45d6e5f90df4c742bc99ba5b110d69 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Sep 2020 15:53:15 +0100 Subject: [PATCH 0115/1009] 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 75fb94a..b04e089 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-transport-https1.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 binutils2.30-21ubuntu1~18.04.4 @@ -266,10 +266,10 @@ libnunit-mocks2.6.3-cil2.6.4+dfsg-1 libnunit-util2.6.3-cil2.6.4+dfsg-1 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 libperl5.265.26.1-6ubuntu0.3 libpixman-1-00.34.0-2 From 887ac0415407ec283ea0fc3644b777867dc557fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 26 Sep 2020 23:28:05 -0400 Subject: [PATCH 0116/1009] Bot Updating Package Versions --- package_versions.txt | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b04e089..00c126e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bash4.4.18-2ubuntu1.2 binutils2.30-21ubuntu1~18.04.4 binutils-common2.30-21ubuntu1~18.04.4 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.4 -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 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 @@ -19,25 +19,25 @@ dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 diffutils1:3.6-1 -dirmngr2.2.4-1ubuntu1.2 +dirmngr2.2.4-1ubuntu1.3 dpkg1.19.0.5ubuntu2.3 dpkg-dev1.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 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 gcc-8-base8.4.0-1ubuntu1~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 +gnupg2.2.4-1ubuntu1.3 +gnupg-l10n2.2.4-1ubuntu1.3 +gnupg-utils2.2.4-1ubuntu1.3 +gpg2.2.4-1ubuntu1.3 +gpg-agent2.2.4-1ubuntu1.3 +gpgconf2.2.4-1ubuntu1.3 +gpgsm2.2.4-1ubuntu1.3 +gpgv2.2.4-1ubuntu1.3 +gpg-wks-client2.2.4-1ubuntu1.3 +gpg-wks-server2.2.4-1ubuntu1.3 grep3.1-2build1 gzip1.6-5ubuntu1 hostname3.20 @@ -53,7 +53,7 @@ libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libbinutils2.30-21ubuntu1~18.04.4 -libblkid12.31.1-0.4ubuntu3.6 +libblkid12.31.1-0.4ubuntu3.7 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1.2 @@ -70,7 +70,7 @@ libdpkg-perl1.19.0.5ubuntu2.3 libexif120.6.21-4ubuntu0.5 libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.6 +libfdisk12.31.1-0.4ubuntu3.7 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 @@ -251,7 +251,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.6 +libmount12.31.1-0.4ubuntu3.7 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -290,7 +290,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 @@ -301,7 +301,7 @@ libtiff54.0.9-5ubuntu0.3 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 libx11-62:1.6.4-3ubuntu0.3 libx11-data2:1.6.4-3ubuntu0.3 @@ -331,7 +331,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.6 +mount2.31.1-0.4ubuntu3.7 multiarch-support2.27-3ubuntu1.2 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 @@ -360,6 +360,6 @@ tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 -util-linux2.31.1-0.4ubuntu3.6 +util-linux2.31.1-0.4ubuntu3.7 xz-utils5.2.2-1.3 zlib1g1:1.2.11.dfsg-0ubuntu2 From 8fe4ce501220fee08e0c48a9de0471fa83b084c0 Mon Sep 17 00:00:00 2001 From: hotio <26902309+hotio@users.noreply.github.com> Date: Sun, 27 Sep 2020 11:06:50 +0200 Subject: [PATCH 0117/1009] Merge Preview into Nightly, following the upstream changes --- Dockerfile | 34 ++- Dockerfile.aarch64 | 34 ++- Dockerfile.armhf | 34 ++- README.md | 19 +- package_versions.txt | 516 ++++++++++----------------------- readme-vars.yml | 19 +- root/etc/cont-init.d/30-config | 3 +- root/etc/services.d/radarr/run | 5 +- 8 files changed, 225 insertions(+), 439 deletions(-) diff --git a/Dockerfile b/Dockerfile index c8c2962..ef3bf79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/mono:LTS +FROM lsiobase/ubuntu:focal # set version label ARG BUILD_DATE @@ -13,33 +13,35 @@ ARG RADARR_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 \ + jq \ + libicu66 \ + libmediainfo0v5 \ + sqlite3 && \ echo "**** install radarr ****" && \ + mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -k "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -k -sX GET "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ - | select(.version == \"${RADARR_RELEASE}\") | .url") && \ - mkdir -p \ - /app/radarr/bin && \ curl -o \ - /tmp/radar.tar.gz -L \ - "${radarr_url}" && \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ tar ixzf \ - /tmp/radar.tar.gz -C \ + /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo "**** clean up ****" && \ + echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo "**** cleanup ****" && \ rm -rf \ + /app/radarr/bin/Radarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* -# add local files -COPY /root / +# copy local files +COPY root/ / # ports and volumes EXPOSE 7878 diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2f003b9..83ae8c2 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm64v8-LTS +FROM lsiobase/ubuntu:arm64v8-focal # set version label ARG BUILD_DATE @@ -13,33 +13,35 @@ ARG RADARR_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 \ + jq \ + libicu66 \ + libmediainfo0v5 \ + sqlite3 && \ echo "**** install radarr ****" && \ + mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -k "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -k -sX GET "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ - | select(.version == \"${RADARR_RELEASE}\") | .url") && \ - mkdir -p \ - /app/radarr/bin && \ curl -o \ - /tmp/radar.tar.gz -L \ - "${radarr_url}" && \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ tar ixzf \ - /tmp/radar.tar.gz -C \ + /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo "**** clean up ****" && \ + echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo "**** cleanup ****" && \ rm -rf \ + /app/radarr/bin/Radarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* -# add local files -COPY /root / +# copy local files +COPY root/ / # ports and volumes EXPOSE 7878 diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 703afdd..f76f97d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm32v7-LTS +FROM lsiobase/ubuntu:arm32v7-focal # set version label ARG BUILD_DATE @@ -13,33 +13,35 @@ ARG RADARR_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 \ + jq \ + libicu66 \ + libmediainfo0v5 \ + sqlite3 && \ echo "**** install radarr ****" && \ + mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -k "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ fi && \ - radarr_url=$(curl -k -sX GET "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \ - | select(.version == \"${RADARR_RELEASE}\") | .url") && \ - mkdir -p \ - /app/radarr/bin && \ curl -o \ - /tmp/radar.tar.gz -L \ - "${radarr_url}" && \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ tar ixzf \ - /tmp/radar.tar.gz -C \ + /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo "**** clean up ****" && \ + echo "**** cleanup ****" && \ + echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ rm -rf \ + /app/radarr/bin/Radarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* -# add local files -COPY /root / +# copy local files +COPY root/ / # ports and volumes EXPOSE 7878 diff --git a/README.md b/README.md index 638cc76..b241cb7 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Find us at: [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. -[![radarr](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr.png)](https://github.com/Radarr/Radarr) +[![radarr](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr_alpha.png)](https://github.com/Radarr/Radarr) ## Supported Architectures @@ -54,6 +54,14 @@ The architectures supported by this image are: | arm64 | arm64v8-latest | | armhf | arm32v7-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 Radarr releases | +| nightly | Nightly Radarr releases | ## Usage @@ -76,14 +84,6 @@ docker create \ linuxserver/radarr ``` -You can choose between ,using tags, various branch versions of radarr, no tag is required to remain on the main branch. - -Add one of the tags, if required, to the linuxserver/radarr line of the run/create command in the following format, linuxserver/radarr:nightly - -The nightly branch and master branch can from time to time be the same version. - -HOWEVER , USE THE NIGHTLY BRANCH AT YOUR OWN PERIL !!!!!!!!! - ### docker-compose @@ -232,6 +232,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **09.27.20:** - Merge Preview into Nightly. * **05.04.20:** - Move app to /app. * **01.08.19:** - Rebase to Linuxserver LTS mono version. * **13.06.19:** - Add env variable for setting umask. diff --git a/package_versions.txt b/package_versions.txt index 00c126e..e3e36eb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,365 +1,153 @@ -adduser3.116ubuntu1 -apt1.6.12ubuntu0.1 -apt-transport-https1.6.12ubuntu0.1 -apt-utils1.6.12ubuntu0.1 -base-files10.1ubuntu2.10 -base-passwd3.5.44 -bash4.4.18-2ubuntu1.2 -binutils2.30-21ubuntu1~18.04.4 -binutils-common2.30-21ubuntu1~18.04.4 -binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.4 -bsdutils1:2.31.1-0.4ubuntu3.7 -bzip21.0.6-8.1ubuntu0.2 -ca-certificates20190110~18.04.1 -ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 -cli-common0.9+xamarin8+ubuntu1804b1 -coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.10 -dash0.5.8-2.10 -debconf1.5.66ubuntu1 -debianutils4.8.4 -diffutils1:3.6-1 -dirmngr2.2.4-1ubuntu1.3 -dpkg1.19.0.5ubuntu2.3 -dpkg-dev1.19.0.5ubuntu2.3 -e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.7 -findutils4.6.0+git+20170828-2 -fontconfig-config2.12.6-0ubuntu2 -fonts-dejavu-core2.37-1 -gcc-8-base8.4.0-1ubuntu1~18.04 -gnupg2.2.4-1ubuntu1.3 -gnupg-l10n2.2.4-1ubuntu1.3 -gnupg-utils2.2.4-1ubuntu1.3 -gpg2.2.4-1ubuntu1.3 -gpg-agent2.2.4-1ubuntu1.3 -gpgconf2.2.4-1ubuntu1.3 -gpgsm2.2.4-1ubuntu1.3 -gpgv2.2.4-1ubuntu1.3 -gpg-wks-client2.2.4-1ubuntu1.3 -gpg-wks-server2.2.4-1ubuntu1.3 -grep3.1-2build1 -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.12ubuntu0.1 -libapt-pkg5.01.6.12ubuntu0.1 -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 -libbinutils2.30-21ubuntu1~18.04.4 -libblkid12.31.1-0.4ubuntu3.7 -libbsd00.8.7-1ubuntu0.1 -libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 -libcairo21.15.10-2ubuntu0.1 -libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 -libcom-err21.44.1-1ubuntu1.3 -libcurl3-gnutls7.58.0-2ubuntu3.10 -libcurl47.58.0-2ubuntu3.10 -libcurl4-openssl-dev7.58.0-2ubuntu3.10 -libdb5.35.3.28-13.1ubuntu1.1 -libdebconfclient00.213ubuntu1 -libdpkg-perl1.19.0.5ubuntu2.3 -libexif120.6.21-4ubuntu0.5 -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 -libgcc11:8.4.0-1ubuntu1~18.04 -libgcrypt201.8.1-4ubuntu1.2 -libgdbm51.14.1-6 -libgdbm-compat41.14.1-6 -libgdiplus5.6.1-0xamarin1+ubuntu1804b1 -libgif75.1.4-2ubuntu0.1 -libglib2.0-02.56.4-0ubuntu0.18.04.6 -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 -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 -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.1 -libkeyutils11.5.9-9.2ubuntu2 -libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.1 -libkrb5support01.16-2ubuntu0.1 +adduser3.118ubuntu2 +apt2.0.2ubuntu0.1 +apt-utils2.0.2ubuntu0.1 +base-files11ubuntu5.2 +base-passwd3.5.47 +bash5.0-6ubuntu1.1 +bsdutils1:2.34-0.1ubuntu9.1 +bzip21.0.8-2 +ca-certificates20190110ubuntu1.1 +coreutils8.30-3ubuntu2 +curl7.68.0-1ubuntu2.2 +dash0.5.10.2-6 +debconf1.5.73 +debianutils4.9.1 +diffutils1:3.7-3 +dirmngr2.2.19-3ubuntu2 +dpkg1.19.7ubuntu3 +e2fsprogs1.45.5-2ubuntu1 +fdisk2.34-0.1ubuntu9.1 +findutils4.7.0-1ubuntu1 +gcc-10-base10-20200411-0ubuntu1 +gnupg2.2.19-3ubuntu2 +gnupg-l10n2.2.19-3ubuntu2 +gnupg-utils2.2.19-3ubuntu2 +gpg2.2.19-3ubuntu2 +gpg-agent2.2.19-3ubuntu2 +gpgconf2.2.19-3ubuntu2 +gpgsm2.2.19-3ubuntu2 +gpgv2.2.19-3ubuntu2 +gpg-wks-client2.2.19-3ubuntu2 +gpg-wks-server2.2.19-3ubuntu2 +grep3.4-1 +gzip1.10-0ubuntu4 +hostname3.23 +init-system-helpers1.57 +jq1.6-1 +krb5-locales1.17-6ubuntu4 +libacl12.2.53-6 +libapt-pkg6.02.0.2ubuntu0.1 +libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 +libassuan02.5.3-7ubuntu2 +libattr11:2.4.48-5 +libaudit11:2.8.5-2ubuntu6 +libaudit-common1:2.8.5-2ubuntu6 +libblkid12.34-0.1ubuntu9.1 +libbrotli11.0.7-6build1 +libbz2-1.01.0.8-2 +libc62.31-0ubuntu9.1 +libcap-ng00.7.9-2.1build1 +libc-bin2.31-0ubuntu9.1 +libcom-err21.45.5-2ubuntu1 +libcrypt11:4.4.10-10ubuntu4 +libcurl3-gnutls7.68.0-1ubuntu2.2 +libcurl47.68.0-1ubuntu2.2 +libdb5.35.3.28+dfsg1-0.6ubuntu2 +libdebconfclient00.251ubuntu1 +libext2fs21.45.5-2ubuntu1 +libfdisk12.34-0.1ubuntu9.1 +libffi73.3-4 +libgcc-s110-20200411-0ubuntu1 +libgcrypt201.8.5-5ubuntu1 +libgmp102:6.2.0+dfsg-4 +libgnutls303.6.13-2ubuntu1.3 +libgpg-error01.37-1 +libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 +libgssapi-krb5-21.17-6ubuntu4 +libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 +libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 +libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 +libhogweed53.5.1+really3.5.1-2 +libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 +libicu6666.1-2ubuntu2 +libidn2-02.2.0-2 +libjq11.6-1 +libk5crypto31.17-6ubuntu4 +libkeyutils11.6-6ubuntu1 +libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 +libkrb5-31.17-6ubuntu4 +libkrb5support01.17-6ubuntu4 libksba81.3.5-2 -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 -libmediainfo0v520.08-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.7 -libncurses56.1-1ubuntu1.18.04 -libncursesw56.1-1ubuntu1.18.04 -libnettle63.4-1 -libnghttp2-141.30.0-1ubuntu1 -libnpth01.5-3 -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 -libonig46.7.0-1 -libp11-kit00.23.9-2 -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 -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.17-1~18.04ubuntu1.1 -libpython2.7-stdlib2.7.17-1~18.04ubuntu1.1 -libpython-stdlib2.7.15~rc1-1 -libreadline77.0-3 -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 -libseccomp22.4.3-1ubuntu3.18.04.3 -libselinux12.7-2build2 -libsemanage12.7-2build2 -libsemanage-common2.7-2build2 -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 -libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.42 -libtasn1-64.13-2 -libtiff54.0.9-5ubuntu0.3 -libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 -libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.7 -libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.3 -libx11-data2:1.6.4-3ubuntu0.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 -libxrender11:0.9.10-1 -libzen0v50.4.38-1 -libzstd11.3.3+dfsg-2ubuntu1.1 -locales2.27-3ubuntu1.2 -login1:4.5-1ubuntu2 -lsb-base9.20170808ubuntu1 -make4.1-9.1ubuntu1 -mawk1.3.3-17ubuntu3 -mediainfo20.08-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.7 -multiarch-support2.27-3ubuntu1.2 -ncurses-base6.1-1ubuntu1.18.04 -ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.6 -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.17-1~18.04ubuntu1.1 -python2.7-minimal2.7.17-1~18.04ubuntu1.1 -python-minimal2.7.15~rc1-1 -readline-common7.0-3 -repo-mediaarea1.0-12 -sed4.4-2 -sensible-utils0.0.12 -sqlite33.22.0-1ubuntu0.4 -sysvinit-utils2.88dsf-59.10ubuntu1 -tar1.29b-2ubuntu0.1 -tzdata2020a-0ubuntu0.18.04 -ubuntu-keyring2018.09.18.1~18.04.0 -ucf3.0038 -unzip6.0-21ubuntu1 -util-linux2.31.1-0.4ubuntu3.7 -xz-utils5.2.2-1.3 -zlib1g1:1.2.11.dfsg-0ubuntu2 +libldap-2.4-22.4.49+dfsg-2ubuntu1.3 +libldap-common2.4.49+dfsg-2ubuntu1.3 +liblz4-11.9.2-2 +liblzma55.2.4-1ubuntu1 +libmediainfo0v519.09+dfsg-2build1 +libmms00.6.4-3 +libmount12.34-0.1ubuntu9.1 +libncurses66.2-0ubuntu2 +libncursesw66.2-0ubuntu2 +libnettle73.5.1+really3.5.1-2 +libnghttp2-141.40.0-1build1 +libnpth01.6-1 +libonig56.9.4-1 +libp11-kit00.23.20-1build1 +libpam0g1.3.1-5ubuntu4.1 +libpam-modules1.3.1-5ubuntu4.1 +libpam-modules-bin1.3.1-5ubuntu4.1 +libpam-runtime1.3.1-5ubuntu4.1 +libpcre2-8-010.34-7 +libpcre32:8.39-12build1 +libprocps82:3.3.16-1ubuntu2 +libpsl50.21.0-1ubuntu1 +libreadline88.0-4 +libroken18-heimdal7.7.0+dfsg-1ubuntu1 +librtmp12.4+20151223.gitfa8646d.1-2build1 +libsasl2-22.1.27+dfsg-2 +libsasl2-modules2.1.27+dfsg-2 +libsasl2-modules-db2.1.27+dfsg-2 +libseccomp22.4.3-1ubuntu3.20.04.3 +libselinux13.0-1build2 +libsemanage13.0-1build2 +libsemanage-common3.0-1build2 +libsepol13.0-1 +libsmartcols12.34-0.1ubuntu9.1 +libsqlite3-03.31.1-4ubuntu0.2 +libss21.45.5-2ubuntu1 +libssh-40.9.3-2ubuntu2.1 +libssl1.11.1.1f-1ubuntu2 +libstdc++610-20200411-0ubuntu1 +libsystemd0245.4-4ubuntu3.2 +libtasn1-64.16.0-2 +libtinfo66.2-0ubuntu2 +libtinyxml2-6a7.0.0+dfsg-1build1 +libudev1245.4-4ubuntu3.2 +libunistring20.9.10-2 +libuuid12.34-0.1ubuntu9.1 +libwind0-heimdal7.7.0+dfsg-1ubuntu1 +libzen0v50.4.37-1build1 +libzstd11.4.4+dfsg-3 +locales2.31-0ubuntu9.1 +login1:4.8.1-1ubuntu5.20.04 +logsave1.45.5-2ubuntu1 +lsb-base11.1.0ubuntu2 +mawk1.3.4.20200120-2 +mount2.34-0.1ubuntu9.1 +ncurses-base6.2-0ubuntu2 +ncurses-bin6.2-0ubuntu2 +openssl1.1.1f-1ubuntu2 +passwd1:4.8.1-1ubuntu5.20.04 +perl-base5.30.0-9build1 +pinentry-curses1.1.0-3build1 +procps2:3.3.16-1ubuntu2 +publicsuffix20200303.0012-1 +readline-common8.0-4 +sed4.7-1 +sensible-utils0.0.12+nmu1 +sqlite33.31.1-4ubuntu0.2 +sysvinit-utils2.96-2.1ubuntu1 +tar1.30+dfsg-7 +tzdata2020a-0ubuntu0.20.04 +ubuntu-keyring2020.02.11.2 +util-linux2.34-0.1ubuntu9.1 +zlib1g1:1.2.11.dfsg-2ubuntu1 diff --git a/readme-vars.yml b/readme-vars.yml index 1c4e63c..318ccb1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -3,7 +3,7 @@ # project information project_name: radarr project_url: "https://github.com/Radarr/Radarr" -project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr.png" +project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr_alpha.png" project_blurb: | [{{ project_name|capitalize }}]({{ project_url }}) - A fork of Sonarr to work with movies à la Couchpotato. project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" @@ -14,17 +14,11 @@ available_architectures: - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} -# Optional Block -optional_block_1: true -optional_block_1_items: - - | - You can choose between ,using tags, various branch versions of radarr, no tag is required to remain on the main branch. - - Add one of the tags, if required, to the linuxserver/radarr line of the run/create command in the following format, linuxserver/radarr:nightly - - The nightly branch and master branch can from time to time be the same version. - - HOWEVER , USE THE NIGHTLY BRANCH AT YOUR OWN PERIL !!!!!!!!! +# development version +development_versions: true +development_versions_items: + - { tag: "latest", desc: "Stable Radarr releases" } + - { tag: "nightly", desc: "Nightly Radarr releases" } # container parameters param_container_name: "{{ project_name }}" @@ -52,6 +46,7 @@ app_setup_block: | # changelog changelogs: + - { date: "09.27.20:", desc: "Merge Preview into Nightly." } - { date: "05.04.20:", desc: "Move app to /app." } - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - { date: "13.06.19:", desc: "Add env variable for setting umask." } diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index a8bfaf6..cb95d64 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 \ - /config \ - /app + /config diff --git a/root/etc/services.d/radarr/run b/root/etc/services.d/radarr/run index 4932883..6197abc 100644 --- a/root/etc/services.d/radarr/run +++ b/root/etc/services.d/radarr/run @@ -1,11 +1,8 @@ #!/usr/bin/with-contenv bash UMASK_SET=${UMASK_SET:-022} - umask "$UMASK_SET" -cd /app/radarr/bin || exit - exec \ - s6-setuidgid abc mono --debug Radarr.exe \ + s6-setuidgid abc /app/radarr/bin/Radarr \ -nobrowser -data=/config From 96578d19c3788d405b7d7411f2c68a7cec2ece07 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 27 Sep 2020 09:13:50 -0500 Subject: [PATCH 0118/1009] Readme Updates --- README.md | 21 +++++++++++++-------- readme-vars.yml | 11 ++++++++--- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b241cb7..3ef5208 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Radarr releases | +| 5.14 | Stable Radarr releases, but run on Mono 5.14 | | nightly | Nightly Radarr releases | ## Usage @@ -77,9 +78,9 @@ docker create \ -e TZ=Europe/London \ -e UMASK_SET=022 `#optional` \ -p 7878:7878 \ - -v :/config \ - -v :/movies \ - -v :/downloads \ + -v /path/to/data:/config \ + -v /path/to/movies:/movies \ + -v /path/to/downloadclient-downloads:/downloads \ --restart unless-stopped \ linuxserver/radarr ``` @@ -102,9 +103,9 @@ services: - TZ=Europe/London - UMASK_SET=022 #optional volumes: - - :/config - - :/movies - - :/downloads + - /path/to/data:/config + - /path/to/movies:/movies + - /path/to/downloadclient-downloads:/downloads ports: - 7878:7878 restart: unless-stopped @@ -122,8 +123,8 @@ Container images are configured using parameters passed at runtime (such as thos | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London, this is required for Radarr | | `-e UMASK_SET=022` | control permissions of files and directories created by Radarr | | `-v /config` | Database and Radarr configs | -| `-v /movies` | Location of Movie library on disk | -| `-v /downloads` | Location of download managers output directory | +| `-v /movies` | Location of Movie library on disk (See note in Application setup) | +| `-v /downloads` | Location of download managers output directory (See note in Application setup) | ## Environment variables from files (Docker secrets) @@ -161,6 +162,10 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). +**Special Note**: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, ensure that the movies and downloads data are on a single volume. For example, if you have `/mnt/storage/Movies` and `/mnt/storage/downloads/completed/Movies`, you would want something like `/mnt/storage:/media` for your volume. Then you can hardlink from `/media/downloads/completed` to `/media/Movies`. + +Another item to keep in mind, is that within Radarr itself, you should map your download client folder to your radarr folder. Navigate to **Settings -> Download Client -> Advanced Settings -> Remote Path Mappings**. Add a new mapping, and set: the Host as the same entry of the Host in your download client (for example its IP address), the Remote Path as `/downloads/Movies` (relative to the internal container path), and Local Path as `/media/downloads/completed/Movies`, assuming you have folders to separate 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%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "view available mods for this container.") diff --git a/readme-vars.yml b/readme-vars.yml index 318ccb1..93aa7f8 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -18,15 +18,16 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Radarr releases" } + - { tag: "5.14", desc: "Stable Radarr releases, but run on Mono 5.14" } - { tag: "nightly", desc: "Nightly Radarr releases" } # container parameters param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "", desc: "Database and Radarr configs" } - - { vol_path: "/movies", vol_host_path: "", desc: "Location of Movie library on disk" } - - { vol_path: "/downloads", vol_host_path: "", desc: "Location of download managers output directory" } + - { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Database and Radarr configs" } + - { vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Location of Movie library on disk (See note in Application setup)" } + - { vol_path: "/downloads", vol_host_path: "/path/to/downloadclient-downloads", desc: "Location of download managers output directory (See note in Application setup)" } param_usage_include_ports: true param_ports: @@ -44,6 +45,10 @@ app_setup_block_enabled: true app_setup_block: | Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). + **Special Note**: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, ensure that the movies and downloads data are on a single volume. For example, if you have `/mnt/storage/Movies` and `/mnt/storage/downloads/completed/Movies`, you would want something like `/mnt/storage:/media` for your volume. Then you can hardlink from `/media/downloads/completed` to `/media/Movies`. + + Another item to keep in mind, is that within Radarr itself, you should map your download client folder to your radarr folder. Navigate to **Settings -> Download Client -> Advanced Settings -> Remote Path Mappings**. Add a new mapping, and set: the Host as the same entry of the Host in your download client (for example its IP address), the Remote Path as `/downloads/Movies` (relative to the internal container path), and Local Path as `/media/downloads/completed/Movies`, assuming you have folders to separate your downloaded data types. + # changelog changelogs: - { date: "09.27.20:", desc: "Merge Preview into Nightly." } From c7d861aac4a94ac7a3154364a06ea30ece729204 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Oct 2020 03:26:20 +0100 Subject: [PATCH 0119/1009] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 12 ++++-- .github/PULL_REQUEST_TEMPLATE.md | 10 +++-- .github/workflows/greetings.yml | 4 +- Jenkinsfile | 28 ++++++++++++- README.md | 72 +++++++++++++++++--------------- 5 files changed, 81 insertions(+), 45 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index b9084fc..4cef599 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 26d5031..ea646d8 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-radarr/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 ae2f437..5644eb6 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-radarr/.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-radarr/.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-radarr/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-radarr/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Jenkinsfile b/Jenkinsfile index 35f99b3..b423321 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +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.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( @@ -136,6 +136,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 } } } @@ -156,6 +157,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/' } } @@ -176,6 +178,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/' } @@ -543,8 +546,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 ''' } @@ -552,6 +557,7 @@ pipeline { for DELETEIMAGE in "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ + ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:nightly || : done ''' @@ -592,12 +598,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 @@ -606,8 +618,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} @@ -616,6 +632,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} @@ -623,6 +643,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 @@ -691,7 +715,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 3ef5208..37eb921 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!") @@ -68,29 +71,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=radarr \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -e UMASK_SET=022 `#optional` \ - -p 7878:7878 \ - -v /path/to/data:/config \ - -v /path/to/movies:/movies \ - -v /path/to/downloadclient-downloads:/downloads \ - --restart unless-stopped \ - linuxserver/radarr -``` - - -### docker-compose +### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose)) Compatible with docker-compose v2 schemas. -``` +```yaml --- version: "2.1" services: @@ -111,6 +96,24 @@ services: restart: unless-stopped ``` +### docker cli + +``` +docker run -d \ + --name=radarr \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -e UMASK_SET=022 `#optional` \ + -p 7878:7878 \ + -v /path/to/data:/config \ + -v /path/to/movies:/movies \ + -v /path/to/downloadclient-downloads:/downloads \ + --restart unless-stopped \ + linuxserver/radarr +``` + + ## 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. @@ -168,9 +171,9 @@ Another item to keep in mind, is that within Radarr itself, you should map your ## 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%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "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=radarr&query=%24.mods%5B%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "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 @@ -188,14 +191,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/radarr` -* Stop the running container: `docker stop radarr` -* Delete the container: `docker rm radarr` -* 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 radarr` -* 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 radarr` @@ -203,7 +198,14 @@ Below are the instructions for updating containers: * or update a single container: `docker-compose up -d radarr` * 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/radarr` +* Stop the running container: `docker stop radarr` +* Delete the container: `docker rm radarr` +* 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 \ @@ -211,11 +213,13 @@ Below are the instructions for updating containers: containrrr/watchtower \ --run-once radarr ``` - -**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` +**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: From f829b396121bd3c61aada3874131955851abad57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Oct 2020 22:27:29 -0400 Subject: [PATCH 0120/1009] 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 0000000..8b57042 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,122 @@ +# Contributing to radarr + +## 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-radarr/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-radarr) + +### 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-radarr.git +cd docker-radarr +docker build \ + --no-cache \ + --pull \ + -t linuxserver/radarr: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-radarr/tree/master/root), add an entry to the changelog + +```yml +changelogs: + - { date: "DD.MM.YY:", desc: "Added some love to templates" } +``` From f0193fd2bca38d1bec09f344e89fb206257db541 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Oct 2020 07:28:48 +0000 Subject: [PATCH 0121/1009] 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 e3e36eb..d475b7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,7 +18,7 @@ dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 fdisk2.34-0.1ubuntu9.1 findutils4.7.0-1ubuntu1 -gcc-10-base10-20200411-0ubuntu1 +gcc-10-base10.2.0-5ubuntu1~20.04 gnupg2.2.19-3ubuntu2 gnupg-l10n2.2.19-3ubuntu2 gnupg-utils2.2.19-3ubuntu2 @@ -43,7 +43,7 @@ libattr11:2.4.48-5 libaudit11:2.8.5-2ubuntu6 libaudit-common1:2.8.5-2ubuntu6 libblkid12.34-0.1ubuntu9.1 -libbrotli11.0.7-6build1 +libbrotli11.0.7-6ubuntu0.1 libbz2-1.01.0.8-2 libc62.31-0ubuntu9.1 libcap-ng00.7.9-2.1build1 @@ -57,7 +57,7 @@ libdebconfclient00.251ubuntu1 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.1 libffi73.3-4 -libgcc-s110-20200411-0ubuntu1 +libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 @@ -116,7 +116,7 @@ libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2 -libstdc++610-20200411-0ubuntu1 +libstdc++610.2.0-5ubuntu1~20.04 libsystemd0245.4-4ubuntu3.2 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 @@ -150,4 +150,4 @@ tar1.30+dfsg-7 tzdata2020a-0ubuntu0.20.04 ubuntu-keyring2020.02.11.2 util-linux2.34-0.1ubuntu9.1 -zlib1g1:1.2.11.dfsg-2ubuntu1 +zlib1g1:1.2.11.dfsg-2ubuntu1.1 From 4f4ae14086d86ae1988f7df06eba361fe17d4340 Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 2 Nov 2020 06:56:01 -0800 Subject: [PATCH 0122/1009] update baseimages --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef3bf79..ca2a169 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:focal +FROM ghcr.io/linuxserver/baseimage-ubuntu:focal # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 83ae8c2..8a8ba11 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm64v8-focal +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f76f97d..2763b0b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm32v7-focal +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal # set version label ARG BUILD_DATE From 8f5f0c2482fb7bf02e2d9fe06b2e61edbdf919c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 14:57:24 +0000 Subject: [PATCH 0123/1009] Bot Updating Templated Files --- Jenkinsfile | 162 ++++++++++++++++++++-------------------------------- README.md | 14 ++--- 2 files changed, 68 insertions(+), 108 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b423321..3702727 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,7 +41,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' ''', @@ -128,7 +128,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 @@ -149,7 +149,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 @@ -170,7 +170,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 @@ -191,24 +191,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''' } } @@ -226,8 +226,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) @@ -332,28 +332,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') { @@ -361,28 +352,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} || :''' } } } @@ -481,20 +463,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 \ @@ -506,15 +488,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''' } } @@ -541,7 +523,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} @@ -583,15 +565,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} @@ -625,28 +607,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 @@ -660,8 +620,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} || : ''' } } @@ -714,9 +674,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 \ @@ -724,7 +684,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 37eb921..dbe0d5c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![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-radarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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%2Fradarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/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%2Fradarr%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/radarr/latest/index.html) [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. @@ -47,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 `linuxserver/radarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `ghcr.io/linuxserver/radarr` 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: @@ -80,7 +80,7 @@ Compatible with docker-compose v2 schemas. version: "2.1" services: radarr: - image: linuxserver/radarr + image: ghcr.io/linuxserver/radarr container_name: radarr environment: - PUID=1000 @@ -110,7 +110,7 @@ docker run -d \ -v /path/to/movies:/movies \ -v /path/to/downloadclient-downloads:/downloads \ --restart unless-stopped \ - linuxserver/radarr + ghcr.io/linuxserver/radarr ``` @@ -183,7 +183,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/radarr` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/radarr` ## Updating Info @@ -199,7 +199,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/radarr` +* Update the image: `docker pull ghcr.io/linuxserver/radarr` * Stop the running container: `docker stop radarr` * Delete the container: `docker rm radarr` * 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) @@ -229,7 +229,7 @@ cd docker-radarr docker build \ --no-cache \ --pull \ - -t linuxserver/radarr:latest . + -t ghcr.io/linuxserver/radarr:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From 920ba763f1c2f505d61b6140431a58ff6304562d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 10:04:12 -0500 Subject: [PATCH 0124/1009] 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 d475b7e..e86aca5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 -ca-certificates20190110ubuntu1.1 +ca-certificates20201027ubuntu0.20.04.1 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.2 dash0.5.10.2-6 @@ -147,7 +147,7 @@ sensible-utils0.0.12+nmu1 sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7 -tzdata2020a-0ubuntu0.20.04 +tzdata2020d-0ubuntu0.20.04 ubuntu-keyring2020.02.11.2 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.1 From 01e8e0c34a539a6438f34ea2d532d46aafe83df0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 Nov 2020 23:29:23 -0500 Subject: [PATCH 0125/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e86aca5..6cd9c5c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,7 @@ ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 openssl1.1.1f-1ubuntu2 passwd1:4.8.1-1ubuntu5.20.04 -perl-base5.30.0-9build1 +perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 procps2:3.3.16-1ubuntu2 publicsuffix20200303.0012-1 From ec9612149e6f65e6dab797c3a3fd1cc221a16669 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Nov 2020 08:09:31 +0000 Subject: [PATCH 0126/1009] 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 6cd9c5c..8691dfd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -117,11 +117,11 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2 libstdc++610.2.0-5ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.2 +libsystemd0245.4-4ubuntu3.3 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.2 +libudev1245.4-4ubuntu3.3 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 @@ -150,4 +150,4 @@ tar1.30+dfsg-7 tzdata2020d-0ubuntu0.20.04 ubuntu-keyring2020.02.11.2 util-linux2.34-0.1ubuntu9.1 -zlib1g1:1.2.11.dfsg-2ubuntu1.1 +zlib1g1:1.2.11.dfsg-2ubuntu1.2 From e0e2f7d0dc1e4d17400f9fc13426c5d574b33cbf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 15 Nov 2020 06:29:09 +0000 Subject: [PATCH 0127/1009] 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 8691dfd..3b77dba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -78,8 +78,8 @@ libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 libkrb5-31.17-6ubuntu4 libkrb5support01.17-6ubuntu4 libksba81.3.5-2 -libldap-2.4-22.4.49+dfsg-2ubuntu1.3 -libldap-common2.4.49+dfsg-2ubuntu1.3 +libldap-2.4-22.4.49+dfsg-2ubuntu1.4 +libldap-common2.4.49+dfsg-2ubuntu1.4 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmediainfo0v519.09+dfsg-2build1 From 562ba7eedc4f6f3afe9ed61cf1f25b71d38b1ef0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 22 Nov 2020 00:30:38 -0500 Subject: [PATCH 0128/1009] 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 3b77dba..779db8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,7 +34,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jq1.6-1 -krb5-locales1.17-6ubuntu4 +krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 @@ -63,7 +63,7 @@ libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 -libgssapi-krb5-21.17-6ubuntu4 +libgssapi-krb5-21.17-6ubuntu4.1 libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 @@ -72,14 +72,14 @@ libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 libjq11.6-1 -libk5crypto31.17-6ubuntu4 +libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 -libkrb5-31.17-6ubuntu4 -libkrb5support01.17-6ubuntu4 +libkrb5-31.17-6ubuntu4.1 +libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 -libldap-2.4-22.4.49+dfsg-2ubuntu1.4 -libldap-common2.4.49+dfsg-2ubuntu1.4 +libldap-2.4-22.4.49+dfsg-2ubuntu1.5 +libldap-common2.4.49+dfsg-2ubuntu1.5 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmediainfo0v519.09+dfsg-2build1 From 9b155dd18a5fa2aedfff1a44b63ed5707da6aad7 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sun, 29 Nov 2020 16:08:07 -0500 Subject: [PATCH 0129/1009] add trigger workflows --- .github/workflows/external_trigger.yml | 90 +++++++++++++++++++ .../workflows/external_trigger_scheduler.yml | 43 +++++++++ .github/workflows/package_trigger.yml | 38 ++++++++ .../workflows/package_trigger_scheduler.yml | 50 +++++++++++ README.md | 1 - readme-vars.yml | 1 - 6 files changed, 221 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/external_trigger.yml create mode 100644 .github/workflows/external_trigger_scheduler.yml create mode 100644 .github/workflows/package_trigger.yml create mode 100644 .github/workflows/package_trigger_scheduler.yml diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml new file mode 100644 index 0000000..5ee29a7 --- /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_RADARR_NIGHTLY }}" ]; then + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_RADARR_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_RADARR_NIGHTLY\". ****" + echo "**** Retrieving external version ****" + EXT_RELEASE=$(curl -sL https://radarr.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 radarr 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="linuxserver/radarr" + tag="nightly" + token=$(curl -sX GET \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fradarr%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') + image_info=$(curl -sL \ + --header "Authorization: Bearer ${token}" \ + "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}') + if [ -z "${IMAGE_VERSION}" ]; then + echo "**** Can't retrieve last pushed version, exiting ****" + FAILURE_REASON="Can't retrieve last pushed version for radarr 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 + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 ****" + 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 radarr 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 diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml new file mode 100644 index 0000000..4b4e3f7 --- /dev/null +++ b/.github/workflows/external_trigger_scheduler.yml @@ -0,0 +1,43 @@ +name: External Trigger Scheduler + +on: + schedule: + - cron: '51 * * * *' + 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: | + 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-radarr/${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. ****" + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-radarr/${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-radarr/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.yml b/.github/workflows/package_trigger.yml new file mode 100644 index 0000000..1c761d5 --- /dev/null +++ b/.github/workflows/package_trigger.yml @@ -0,0 +1,38 @@ +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_RADARR_NIGHTLY }}" ]; then + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY is set; skipping trigger. ****" + exit 0 + fi + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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_RADARR_NIGHTLY\". ****" + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 ****" + 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 new file mode 100644 index 0000000..ee4af48 --- /dev/null +++ b/.github/workflows/package_trigger_scheduler.yml @@ -0,0 +1,50 @@ +name: Package Trigger Scheduler + +on: + schedule: + - cron: '32 3 * * 3' + 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: | + 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-radarr/${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. ****" + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-radarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then + 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" \ + -d "{\"ref\":\"refs/heads/${br}\"}" \ + https://api.github.com/repos/linuxserver/docker-radarr/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 + 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 radarr** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-radarr/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/README.md b/README.md index dbe0d5c..b558eb5 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,6 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Radarr releases | -| 5.14 | Stable Radarr releases, but run on Mono 5.14 | | nightly | Nightly Radarr releases | ## Usage diff --git a/readme-vars.yml b/readme-vars.yml index 93aa7f8..46f57a4 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -18,7 +18,6 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Radarr releases" } - - { tag: "5.14", desc: "Stable Radarr releases, but run on Mono 5.14" } - { tag: "nightly", desc: "Nightly Radarr releases" } # container parameters From 3bf0ef49f15c53790195c5fde7e270de92a1ccd6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Dec 2020 00:02:53 -0500 Subject: [PATCH 0130/1009] 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 779db8c..2571431 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.2ubuntu0.1 -apt-utils2.0.2ubuntu0.1 +apt2.0.2ubuntu0.2 +apt-utils2.0.2ubuntu0.2 base-files11ubuntu5.2 base-passwd3.5.47 bash5.0-6ubuntu1.1 @@ -8,7 +8,7 @@ bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 ca-certificates20201027ubuntu0.20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.2 +curl7.68.0-1ubuntu2.4 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -36,7 +36,7 @@ init-system-helpers1.57 jq1.6-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.2ubuntu0.1 +libapt-pkg6.02.0.2ubuntu0.2 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libassuan02.5.3-7ubuntu2 libattr11:2.4.48-5 @@ -50,8 +50,8 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.1 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl3-gnutls7.68.0-1ubuntu2.2 -libcurl47.68.0-1ubuntu2.2 +libcurl3-gnutls7.68.0-1ubuntu2.4 +libcurl47.68.0-1ubuntu2.4 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libext2fs21.45.5-2ubuntu1 @@ -115,7 +115,7 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 -libssl1.11.1.1f-1ubuntu2 +libssl1.11.1.1f-1ubuntu2.1 libstdc++610.2.0-5ubuntu1~20.04 libsystemd0245.4-4ubuntu3.3 libtasn1-64.16.0-2 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2 +openssl1.1.1f-1ubuntu2.1 passwd1:4.8.1-1ubuntu5.20.04 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 850793627ad4cefbdcf8891e5335b2f6e6f9c0ab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Dec 2020 01:34:25 +0000 Subject: [PATCH 0131/1009] 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 4cef599..8b13789 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 3702727..e11c68f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +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.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( @@ -131,12 +131,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 } } } @@ -152,12 +153,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/' } } @@ -173,12 +175,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/' } @@ -238,9 +241,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} @@ -310,8 +316,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 @@ -323,8 +330,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') { @@ -332,12 +340,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}" @@ -352,12 +361,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}" @@ -430,6 +440,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' } @@ -447,6 +464,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' } @@ -536,7 +560,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} \ @@ -600,6 +624,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 @@ -614,10 +639,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} \ @@ -684,7 +712,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 b558eb5..8d748ec 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Find us at: [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/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-radarr/container_registry) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) From 10c80ab64ec087222413988844429a6997b8ffcd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Dec 2020 01:36:05 +0000 Subject: [PATCH 0132/1009] 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 | 1 + .../workflows/external_trigger_scheduler.yml | 2 +- .../workflows/package_trigger_scheduler.yml | 2 +- 7 files changed, 81 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 8b13789..0000000 --- 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 0000000..649446d --- /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-radarr + 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 0000000..e63e173 --- /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 0000000..20a91fd --- /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 5ee29a7..1c1fd7b 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/radarr" diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 4b4e3f7..2da5290 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_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index ee4af48..6666e26 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 2731005b9e3c52e6f0eb88b0fa0744531840538f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Jan 2021 02:15:04 +0000 Subject: [PATCH 0133/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2571431..5db3ea0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -91,7 +91,7 @@ libnettle73.5.1+really3.5.1-2 libnghttp2-141.40.0-1build1 libnpth01.6-1 libonig56.9.4-1 -libp11-kit00.23.20-1build1 +libp11-kit00.23.20-1ubuntu0.1 libpam0g1.3.1-5ubuntu4.1 libpam-modules1.3.1-5ubuntu4.1 libpam-modules-bin1.3.1-5ubuntu4.1 From 6bb53a80708eddeed10c409baac712bd9bea0e19 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 12 Jan 2021 23:12:47 -0500 Subject: [PATCH 0134/1009] 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 1c1fd7b..9aaf867 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 radarr branch nightly" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-radarr/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 5644eb6..7c5fa67 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-radarr/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-radarr/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-radarr/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-radarr/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 6666e26..fa05a13 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: '32 3 * * 3' + - cron: '53 15 * * 1' workflow_dispatch: jobs: diff --git a/Jenkinsfile b/Jenkinsfile index e11c68f..9fbbce3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -255,13 +255,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 342996e1d095a75963f416ad63f72601e65f775b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Jan 2021 03:50:12 +0000 Subject: [PATCH 0135/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5db3ea0..9166fa4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ sensible-utils0.0.12+nmu1 sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7 -tzdata2020d-0ubuntu0.20.04 +tzdata2020f-0ubuntu0.20.04.1 ubuntu-keyring2020.02.11.2 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 892b39acb5d5fbf86f535205fd6c806da52f30d0 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Mon, 18 Jan 2021 09:49:00 +0100 Subject: [PATCH 0136/1009] Deprecate UMASK_SET in favor of UMASK in baseimage --- README.md | 5 ++--- readme-vars.yml | 6 +++--- root/etc/services.d/radarr/run | 6 ++++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8d748ec..7a5dac1 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Radarr releases | +| develop | Radarr releases from their develop branch | | nightly | Nightly Radarr releases | ## Usage @@ -85,7 +86,6 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London - - UMASK_SET=022 #optional volumes: - /path/to/data:/config - /path/to/movies:/movies @@ -103,7 +103,6 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ - -e UMASK_SET=022 `#optional` \ -p 7878:7878 \ -v /path/to/data:/config \ -v /path/to/movies:/movies \ @@ -123,7 +122,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, this is required for Radarr | -| `-e UMASK_SET=022` | control permissions of files and directories created by Radarr | | `-v /config` | Database and Radarr configs | | `-v /movies` | Location of Movie library on disk (See note in Application setup) | | `-v /downloads` | Location of download managers output directory (See note in Application setup) | @@ -240,6 +238,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **17.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **09.27.20:** - Merge Preview into Nightly. * **05.04.20:** - Move app to /app. * **01.08.19:** - Rebase to Linuxserver LTS mono version. diff --git a/readme-vars.yml b/readme-vars.yml index 46f57a4..89d43f1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -18,6 +18,7 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Radarr releases" } + - { tag: "develop", desc: "Radarr releases from their develop branch" } - { tag: "nightly", desc: "Nightly Radarr releases" } # container parameters @@ -35,9 +36,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, this is required for Radarr"} # 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 Radarr"} +opt_param_usage_include_env: false # application setup block app_setup_block_enabled: true @@ -50,6 +49,7 @@ app_setup_block: | # changelog changelogs: + - { date: "17.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "09.27.20:", desc: "Merge Preview into Nightly." } - { date: "05.04.20:", desc: "Move app to /app." } - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } diff --git a/root/etc/services.d/radarr/run b/root/etc/services.d/radarr/run index 6197abc..cc8a724 100644 --- a/root/etc/services.d/radarr/run +++ b/root/etc/services.d/radarr/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/radarr/bin/Radarr \ From a23ead6b2c68db58d7d24963dc52bd577c4e9ebf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 04:40:39 -0500 Subject: [PATCH 0137/1009] 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 9166fa4..1f27d38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -33,7 +33,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jq1.6-1 +jq1.6-1ubuntu0.20.04.1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 @@ -71,7 +71,7 @@ libhogweed53.5.1+really3.5.1-2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libjq11.6-1 +libjq11.6-1ubuntu0.20.04.1 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -117,11 +117,11 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2.1 libstdc++610.2.0-5ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.3 +libsystemd0245.4-4ubuntu3.4 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.3 +libudev1245.4-4ubuntu3.4 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 @@ -146,7 +146,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 -tar1.30+dfsg-7 +tar1.30+dfsg-7ubuntu0.20.04.1 tzdata2020f-0ubuntu0.20.04.1 ubuntu-keyring2020.02.11.2 util-linux2.34-0.1ubuntu9.1 From 4a6d8165f47a763feb52190d3c100b48b689f8ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Jan 2021 15:03:32 -0500 Subject: [PATCH 0138/1009] 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 1f27d38..c818bfd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.2ubuntu0.2 -apt-utils2.0.2ubuntu0.2 +apt2.0.4 +apt-utils2.0.4 base-files11ubuntu5.2 base-passwd3.5.47 bash5.0-6ubuntu1.1 @@ -36,7 +36,7 @@ init-system-helpers1.57 jq1.6-1ubuntu0.20.04.1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.2ubuntu0.2 +libapt-pkg6.02.0.4 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libassuan02.5.3-7ubuntu2 libattr11:2.4.48-5 From 3f95eab9409286a3fa1993fa102536454de98df7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Jan 2021 21:03:57 +0000 Subject: [PATCH 0139/1009] 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 c818bfd..f94216b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -127,7 +127,7 @@ libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libzen0v50.4.37-1build1 libzstd11.4.4+dfsg-3 -locales2.31-0ubuntu9.1 +locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 @@ -147,7 +147,7 @@ sensible-utils0.0.12+nmu1 sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.1 -tzdata2020f-0ubuntu0.20.04.1 +tzdata2021a-0ubuntu0.20.04 ubuntu-keyring2020.02.11.2 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From a8bbc6b78923e5d75a549bb9c03fd8ce55401b2f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Feb 2021 04:09:08 +0000 Subject: [PATCH 0140/1009] 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 f94216b..8792d0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.118ubuntu2 apt2.0.4 apt-utils2.0.4 -base-files11ubuntu5.2 +base-files11ubuntu5.3 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 @@ -45,9 +45,9 @@ libaudit-common1:2.8.5-2ubuntu6 libblkid12.34-0.1ubuntu9.1 libbrotli11.0.7-6ubuntu0.1 libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.1 +libc62.31-0ubuntu9.2 libcap-ng00.7.9-2.1build1 -libc-bin2.31-0ubuntu9.1 +libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 libcurl3-gnutls7.68.0-1ubuntu2.4 From d948a3d684cb699f2c42d910becf4619e2ca701a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Feb 2021 13:16:19 +0000 Subject: [PATCH 0141/1009] 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 8792d0a..9de9a6f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 -ca-certificates20201027ubuntu0.20.04.1 +ca-certificates20210119~20.04.1 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.4 dash0.5.10.2-6 @@ -78,8 +78,8 @@ libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 -libldap-2.4-22.4.49+dfsg-2ubuntu1.5 -libldap-common2.4.49+dfsg-2ubuntu1.5 +libldap-2.4-22.4.49+dfsg-2ubuntu1.6 +libldap-common2.4.49+dfsg-2ubuntu1.6 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmediainfo0v519.09+dfsg-2build1 From af2d31d1628e4a52bb84be93517d3239ecc7da32 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Feb 2021 06:58:14 +0000 Subject: [PATCH 0142/1009] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 61 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9fbbce3..c9cecea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -231,10 +231,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} @@ -242,11 +285,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} @@ -255,8 +300,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' @@ -266,13 +311,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' @@ -512,7 +557,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} @@ -537,7 +582,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''' } } @@ -682,9 +727,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",\ @@ -692,9 +737,9 @@ pipeline { echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Updating to ${EXT_RELEASE_CLEAN}" > 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 @@ -721,7 +766,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 \ @@ -729,7 +774,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 10baed0faf44e3043239edd992f341f4d41348a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Feb 2021 01:59:35 -0500 Subject: [PATCH 0143/1009] Bot Updating Templated Files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 96374c4..6e8ad97 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ $RECYCLE.BIN/ Network Trash Folder Temporary Items .apdisk +.jenkins-external From 8b523e3fce9e6e7791bccf80829ff582a16c1f09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Feb 2021 20:00:31 +0000 Subject: [PATCH 0144/1009] 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 9de9a6f..66df96a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,22 +13,22 @@ dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 diffutils1:3.7-3 -dirmngr2.2.19-3ubuntu2 +dirmngr2.2.19-3ubuntu2.1 dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 fdisk2.34-0.1ubuntu9.1 findutils4.7.0-1ubuntu1 gcc-10-base10.2.0-5ubuntu1~20.04 -gnupg2.2.19-3ubuntu2 -gnupg-l10n2.2.19-3ubuntu2 -gnupg-utils2.2.19-3ubuntu2 -gpg2.2.19-3ubuntu2 -gpg-agent2.2.19-3ubuntu2 -gpgconf2.2.19-3ubuntu2 -gpgsm2.2.19-3ubuntu2 -gpgv2.2.19-3ubuntu2 -gpg-wks-client2.2.19-3ubuntu2 -gpg-wks-server2.2.19-3ubuntu2 +gnupg2.2.19-3ubuntu2.1 +gnupg-l10n2.2.19-3ubuntu2.1 +gnupg-utils2.2.19-3ubuntu2.1 +gpg2.2.19-3ubuntu2.1 +gpg-agent2.2.19-3ubuntu2.1 +gpgconf2.2.19-3ubuntu2.1 +gpgsm2.2.19-3ubuntu2.1 +gpgv2.2.19-3ubuntu2.1 +gpg-wks-client2.2.19-3ubuntu2.1 +gpg-wks-server2.2.19-3ubuntu2.1 grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 From 4b10c2c9f5c61b008578f701b0b1039a05f21c28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Feb 2021 04:01:07 +0000 Subject: [PATCH 0145/1009] 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 66df96a..a7051fa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -78,8 +78,8 @@ libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 -libldap-2.4-22.4.49+dfsg-2ubuntu1.6 -libldap-common2.4.49+dfsg-2ubuntu1.6 +libldap-2.4-22.4.49+dfsg-2ubuntu1.7 +libldap-common2.4.49+dfsg-2ubuntu1.7 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmediainfo0v519.09+dfsg-2build1 @@ -115,7 +115,7 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 -libssl1.11.1.1f-1ubuntu2.1 +libssl1.11.1.1f-1ubuntu2.2 libstdc++610.2.0-5ubuntu1~20.04 libsystemd0245.4-4ubuntu3.4 libtasn1-64.16.0-2 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.1 +openssl1.1.1f-1ubuntu2.2 passwd1:4.8.1-1ubuntu5.20.04 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From a4028382923de8d551ef99ee9cedf3f575352d38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Mar 2021 13:10:09 +0000 Subject: [PATCH 0146/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a7051fa..bc35d43 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -126,7 +126,7 @@ libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libzen0v50.4.37-1build1 -libzstd11.4.4+dfsg-3 +libzstd11.4.4+dfsg-3ubuntu0.1 locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 From 3734319ff4e4d35f867889f15a26817dbba1abdc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 30 Mar 2021 05:05:26 -0400 Subject: [PATCH 0147/1009] 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 bc35d43..18eb7d7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -115,13 +115,13 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 -libssl1.11.1.1f-1ubuntu2.2 +libssl1.11.1.1f-1ubuntu2.3 libstdc++610.2.0-5ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.4 +libsystemd0245.4-4ubuntu3.5 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.4 +libudev1245.4-4ubuntu3.5 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.2 +openssl1.1.1f-1ubuntu2.3 passwd1:4.8.1-1ubuntu5.20.04 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From e360bb66265a8b3c43310f0ef5cfbcf42b879ae3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 31 Mar 2021 13:20:12 +0000 Subject: [PATCH 0148/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 18eb7d7..cdda1dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -50,7 +50,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl3-gnutls7.68.0-1ubuntu2.4 +libcurl3-gnutls7.68.0-1ubuntu2.5 libcurl47.68.0-1ubuntu2.4 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 From 8bf4b0e56ab66dda4d03cbd5066c72f9767d830e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Apr 2021 17:06:20 +0100 Subject: [PATCH 0149/1009] 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 cdda1dc..6d4d0c0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 ca-certificates20210119~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.4 +curl7.68.0-1ubuntu2.5 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -51,7 +51,7 @@ libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 libcurl3-gnutls7.68.0-1ubuntu2.5 -libcurl47.68.0-1ubuntu2.4 +libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libext2fs21.45.5-2ubuntu1 @@ -148,6 +148,6 @@ sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.1 tzdata2021a-0ubuntu0.20.04 -ubuntu-keyring2020.02.11.2 +ubuntu-keyring2020.02.11.4 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 2e7ee4c60059ab0c2a34168265f2aa0ac39a934f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 13 Apr 2021 10:06:24 +0000 Subject: [PATCH 0150/1009] 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 6d4d0c0..7fb4dcf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.4 -apt-utils2.0.4 +apt2.0.5 +apt-utils2.0.5 base-files11ubuntu5.3 base-passwd3.5.47 bash5.0-6ubuntu1.1 @@ -36,7 +36,7 @@ init-system-helpers1.57 jq1.6-1ubuntu0.20.04.1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.4 +libapt-pkg6.02.0.5 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libassuan02.5.3-7ubuntu2 libattr11:2.4.48-5 @@ -117,11 +117,11 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2.3 libstdc++610.2.0-5ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.5 +libsystemd0245.4-4ubuntu3.6 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.5 +libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 From 5a313bac77a89d36ca57f89e2d5415050f7a0949 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 21:57:07 +0000 Subject: [PATCH 0151/1009] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 71 insertions(+), 17 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c9cecea..661836e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +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.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( @@ -307,22 +307,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{ @@ -379,8 +381,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-radarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-radarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-radarr\" \ + --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=Radarr\" \ + --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ + --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 @@ -393,8 +408,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-radarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-radarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-radarr\" \ + --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=Radarr\" \ + --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ + --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') { @@ -407,8 +435,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-radarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-radarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-radarr\" \ + --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=Radarr\" \ + --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ + --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}" @@ -428,8 +469,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-radarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-radarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-radarr\" \ + --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=Radarr\" \ + --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ + --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}" @@ -740,7 +794,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''' @@ -765,7 +819,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 aa3f06613d111ee653bf78dbded63cca23aa6f0b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 22:58:34 +0100 Subject: [PATCH 0152/1009] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 11 ++++--- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/greetings.yml | 4 +-- README.md | 56 +++++++++++++++++--------------- 4 files changed, 39 insertions(+), 34 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8b57042..4ff7caf 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-radarr/edit/master/readme-vars.yml). +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-radarr/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-radarr) @@ -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-radarr.git cd docker-radarr 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-radarr/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-radarr/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 ea646d8..90029e4 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-radarr/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-radarr/blob/nightly/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications ------------------------------ diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 7c5fa67..0bed83f 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-radarr/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-radarr/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-radarr/blob/nightly/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 7a5dac1..9644303 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. @@ -40,7 +41,6 @@ Find us at: [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. - [![radarr](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr_alpha.png)](https://github.com/Radarr/Radarr) ## Supported Architectures @@ -67,6 +67,14 @@ This image provides various versions that are available via tags. `latest` tag u | develop | Radarr releases from their develop branch | | nightly | Nightly Radarr releases | +## Application Setup + +Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). + +**Special Note**: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, ensure that the movies and downloads data are on a single volume. For example, if you have `/mnt/storage/Movies` and `/mnt/storage/downloads/completed/Movies`, you would want something like `/mnt/storage:/media` for your volume. Then you can hardlink from `/media/downloads/completed` to `/media/Movies`. + +Another item to keep in mind, is that within Radarr itself, you should map your download client folder to your radarr folder. Navigate to **Settings -> Download Client -> Advanced Settings -> Remote Path Mappings**. Add a new mapping, and set: the Host as the same entry of the Host in your download client (for example its IP address), the Remote Path as `/downloads/Movies` (relative to the internal container path), and Local Path as `/media/downloads/completed/Movies`, assuming you have folders to separate your downloaded data types. + ## Usage Here are some example snippets to help you get started creating a container. @@ -97,7 +105,7 @@ services: ### docker cli -``` +```bash docker run -d \ --name=radarr \ -e PUID=1000 \ @@ -111,7 +119,6 @@ docker run -d \ ghcr.io/linuxserver/radarr ``` - ## 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. @@ -132,7 +139,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 ``` @@ -151,28 +158,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 `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). - -**Special Note**: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, ensure that the movies and downloads data are on a single volume. For example, if you have `/mnt/storage/Movies` and `/mnt/storage/downloads/completed/Movies`, you would want something like `/mnt/storage:/media` for your volume. Then you can hardlink from `/media/downloads/completed` to `/media/Movies`. - -Another item to keep in mind, is that within Radarr itself, you should map your download client folder to your radarr folder. Navigate to **Settings -> Download Client -> Advanced Settings -> Remote Path Mappings**. Add a new mapping, and set: the Host as the same entry of the Host in your download client (for example its IP address), the Remote Path as `/downloads/Movies` (relative to the internal container path), and Local Path as `/media/downloads/completed/Movies`, assuming you have folders to separate 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=radarr&query=%24.mods%5B%27radarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=radarr "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 radarr /bin/bash` @@ -189,6 +185,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 radarr` * Let compose update all containers as necessary: `docker-compose up -d` @@ -196,6 +193,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/radarr` * Stop the running container: `docker stop radarr` * Delete the container: `docker rm radarr` @@ -203,24 +201,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 radarr ``` + * 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-radarr.git cd docker-radarr docker build \ @@ -230,7 +233,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 68fb51b0b4319baf1354928ee889c02637473ed3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Apr 2021 22:09:01 -0400 Subject: [PATCH 0153/1009] 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 7fb4dcf..db1c5ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -67,7 +67,7 @@ libgssapi-krb5-21.17-6ubuntu4.1 libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 -libhogweed53.5.1+really3.5.1-2 +libhogweed53.5.1+really3.5.1-2ubuntu0.1 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 @@ -87,7 +87,7 @@ libmms00.6.4-3 libmount12.34-0.1ubuntu9.1 libncurses66.2-0ubuntu2 libncursesw66.2-0ubuntu2 -libnettle73.5.1+really3.5.1-2 +libnettle73.5.1+really3.5.1-2ubuntu0.1 libnghttp2-141.40.0-1build1 libnpth01.6-1 libonig56.9.4-1 @@ -98,7 +98,7 @@ libpam-modules-bin1.3.1-5ubuntu4.1 libpam-runtime1.3.1-5ubuntu4.1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 -libprocps82:3.3.16-1ubuntu2 +libprocps82:3.3.16-1ubuntu2.1 libpsl50.21.0-1ubuntu1 libreadline88.0-4 libroken18-heimdal7.7.0+dfsg-1ubuntu1 @@ -106,7 +106,7 @@ librtmp12.4+20151223.gitfa8646d.1-2build1 libsasl2-22.1.27+dfsg-2 libsasl2-modules2.1.27+dfsg-2 libsasl2-modules-db2.1.27+dfsg-2 -libseccomp22.4.3-1ubuntu3.20.04.3 +libseccomp22.5.1-1ubuntu1~20.04.1 libselinux13.0-1build2 libsemanage13.0-1build2 libsemanage-common3.0-1build2 @@ -139,7 +139,7 @@ openssl1.1.1f-1ubuntu2.3 passwd1:4.8.1-1ubuntu5.20.04 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 -procps2:3.3.16-1ubuntu2 +procps2:3.3.16-1ubuntu2.1 publicsuffix20200303.0012-1 readline-common8.0-4 sed4.7-1 From 68ece5b5f5a8c7ca1588d03518d8c81de1c3e479 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 27 Apr 2021 16:00:33 +0100 Subject: [PATCH 0154/1009] 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 db1c5ae..3d6a51b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -78,8 +78,8 @@ libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 -libldap-2.4-22.4.49+dfsg-2ubuntu1.7 -libldap-common2.4.49+dfsg-2ubuntu1.7 +libldap-2.4-22.4.49+dfsg-2ubuntu1.8 +libldap-common2.4.49+dfsg-2ubuntu1.8 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmediainfo0v519.09+dfsg-2build1 @@ -127,7 +127,7 @@ libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libzen0v50.4.37-1build1 libzstd11.4.4+dfsg-3ubuntu0.1 -locales2.31-0ubuntu9.2 +locales2.31-0ubuntu9.3 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From f8e41fb21f842ed55e49be7c6b7788fe71f607a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 May 2021 14:43:36 +0100 Subject: [PATCH 0155/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3d6a51b..678cb49 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -127,7 +127,7 @@ libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libzen0v50.4.37-1build1 libzstd11.4.4+dfsg-3ubuntu0.1 -locales2.31-0ubuntu9.3 +locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From 9d15e77f7d3a9288622aa56a441c1fcf97e841f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 May 2021 12:21:22 +0000 Subject: [PATCH 0156/1009] 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 678cb49..25afbe6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -115,7 +115,7 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 -libssl1.11.1.1f-1ubuntu2.3 +libssl1.11.1.1f-1ubuntu2.4 libstdc++610.2.0-5ubuntu1~20.04 libsystemd0245.4-4ubuntu3.6 libtasn1-64.16.0-2 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.3 +openssl1.1.1f-1ubuntu2.4 passwd1:4.8.1-1ubuntu5.20.04 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 10bbb91dbd74d386e229fd8849f1c28a18b19b8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Jun 2021 04:08:36 +0000 Subject: [PATCH 0157/1009] 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 25afbe6..d12df0d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,7 +80,7 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.8 libldap-common2.4.49+dfsg-2ubuntu1.8 -liblz4-11.9.2-2 +liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmediainfo0v519.09+dfsg-2build1 libmms00.6.4-3 @@ -92,10 +92,10 @@ libnghttp2-141.40.0-1build1 libnpth01.6-1 libonig56.9.4-1 libp11-kit00.23.20-1ubuntu0.1 -libpam0g1.3.1-5ubuntu4.1 -libpam-modules1.3.1-5ubuntu4.1 -libpam-modules-bin1.3.1-5ubuntu4.1 -libpam-runtime1.3.1-5ubuntu4.1 +libpam0g1.3.1-5ubuntu4.2 +libpam-modules1.3.1-5ubuntu4.2 +libpam-modules-bin1.3.1-5ubuntu4.2 +libpam-runtime1.3.1-5ubuntu4.2 libpcre2-8-010.34-7 libpcre32:8.39-12build1 libprocps82:3.3.16-1ubuntu2.1 From cf6520bba13d26cbb9fc810be5aef6904a04fbe8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Jul 2021 15:58:39 +0000 Subject: [PATCH 0158/1009] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 661836e..64ea065 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -55,7 +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.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( @@ -260,7 +260,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 @@ -521,6 +520,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 8c93621ff682ead17f93810ea01dfa85228cfdae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Jul 2021 16:00:08 +0000 Subject: [PATCH 0159/1009] 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 0000000..a92f7df --- /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 4ff7caf..2934472 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 90029e4..e67aabb 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 1806420..3b3846e 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 9644303..5f4efa0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,6 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/container_registry) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![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-radarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/nightly/) @@ -79,9 +78,7 @@ Another item to keep in mind, is that within Radarr itself, you should map your 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 --- @@ -103,7 +100,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 4bc59c86e32fe4d38e946f0f64dfad68e8f75e6f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Jul 2021 16:03:09 +0000 Subject: [PATCH 0160/1009] 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 d12df0d..7b747e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,7 +18,7 @@ dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 fdisk2.34-0.1ubuntu9.1 findutils4.7.0-1ubuntu1 -gcc-10-base10.2.0-5ubuntu1~20.04 +gcc-10-base10.3.0-1ubuntu1~20.04 gnupg2.2.19-3ubuntu2.1 gnupg-l10n2.2.19-3ubuntu2.1 gnupg-utils2.2.19-3ubuntu2.1 @@ -57,7 +57,7 @@ libdebconfclient00.251ubuntu1 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.1 libffi73.3-4 -libgcc-s110.2.0-5ubuntu1~20.04 +libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 @@ -67,7 +67,7 @@ libgssapi-krb5-21.17-6ubuntu4.1 libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 -libhogweed53.5.1+really3.5.1-2ubuntu0.1 +libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 @@ -87,7 +87,7 @@ libmms00.6.4-3 libmount12.34-0.1ubuntu9.1 libncurses66.2-0ubuntu2 libncursesw66.2-0ubuntu2 -libnettle73.5.1+really3.5.1-2ubuntu0.1 +libnettle73.5.1+really3.5.1-2ubuntu0.2 libnghttp2-141.40.0-1build1 libnpth01.6-1 libonig56.9.4-1 @@ -98,7 +98,7 @@ libpam-modules-bin1.3.1-5ubuntu4.2 libpam-runtime1.3.1-5ubuntu4.2 libpcre2-8-010.34-7 libpcre32:8.39-12build1 -libprocps82:3.3.16-1ubuntu2.1 +libprocps82:3.3.16-1ubuntu2.2 libpsl50.21.0-1ubuntu1 libreadline88.0-4 libroken18-heimdal7.7.0+dfsg-1ubuntu1 @@ -116,12 +116,12 @@ libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2.4 -libstdc++610.2.0-5ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.6 +libstdc++610.3.0-1ubuntu1~20.04 +libsystemd0245.4-4ubuntu3.7 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.6 +libudev1245.4-4ubuntu3.7 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 @@ -139,7 +139,7 @@ openssl1.1.1f-1ubuntu2.4 passwd1:4.8.1-1ubuntu5.20.04 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 -procps2:3.3.16-1ubuntu2.1 +procps2:3.3.16-1ubuntu2.2 publicsuffix20200303.0012-1 readline-common8.0-4 sed4.7-1 From 26b07afc797b3c98f77b68d76086dacc2db131d3 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Mon, 12 Jul 2021 00:48:40 +0200 Subject: [PATCH 0161/1009] Use runtime when checking for updates. --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 52 +++++++++++++------------- Dockerfile.aarch64 | 52 +++++++++++++------------- Dockerfile.armhf | 52 +++++++++++++------------- Jenkinsfile | 2 +- README.md | 17 ++++++--- jenkins-vars.yml | 2 +- readme-vars.yml | 16 ++++++-- root/etc/cont-init.d/30-config | 2 +- root/etc/services.d/radarr/run | 8 ++-- 10 files changed, 109 insertions(+), 96 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 9aaf867..d822145 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_RADARR_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sL https://radarr.servarr.com/v1/update/nightly/changes?os=linux | jq -r '.[0].version') + EXT_RELEASE=$(curl -sL https://radarr.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 radarr branch nightly" diff --git a/Dockerfile b/Dockerfile index ca2a169..031038e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,32 +13,32 @@ ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ - jq \ - libicu66 \ - libmediainfo0v5 \ - sqlite3 && \ - echo "**** install radarr ****" && \ - mkdir -p /app/radarr/bin && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ - tar ixzf \ - /tmp/radarr.tar.gz -C \ - /app/radarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/radarr/bin/Radarr.Update \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install --no-install-recommends -y \ + jq \ + libicu66 \ + libmediainfo0v5 \ + sqlite3 && \ + echo "**** install radarr ****" && \ + mkdir -p /app/radarr/bin && \ + if [ -z ${RADARR_RELEASE+x} ]; then \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + curl -o \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ + tar ixzf \ + /tmp/radarr.tar.gz -C \ + /app/radarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo "**** cleanup ****" && \ + rm -rf \ + /app/radarr/bin/Radarr.Update \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8a8ba11..2ec7e43 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -13,32 +13,32 @@ ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ - jq \ - libicu66 \ - libmediainfo0v5 \ - sqlite3 && \ - echo "**** install radarr ****" && \ - mkdir -p /app/radarr/bin && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ - tar ixzf \ - /tmp/radarr.tar.gz -C \ - /app/radarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/radarr/bin/Radarr.Update \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install --no-install-recommends -y \ + jq \ + libicu66 \ + libmediainfo0v5 \ + sqlite3 && \ + echo "**** install radarr ****" && \ + mkdir -p /app/radarr/bin && \ + if [ -z ${RADARR_RELEASE+x} ]; then \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + curl -o \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ + tar ixzf \ + /tmp/radarr.tar.gz -C \ + /app/radarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo "**** cleanup ****" && \ + rm -rf \ + /app/radarr/bin/Radarr.Update \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 2763b0b..1c3c20d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -13,32 +13,32 @@ ARG RADARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ - jq \ - libicu66 \ - libmediainfo0v5 \ - sqlite3 && \ - echo "**** install radarr ****" && \ - mkdir -p /app/radarr/bin && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ - tar ixzf \ - /tmp/radarr.tar.gz -C \ - /app/radarr/bin --strip-components=1 && \ - echo "**** cleanup ****" && \ - echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ - rm -rf \ - /app/radarr/bin/Radarr.Update \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install --no-install-recommends -y \ + jq \ + libicu66 \ + libmediainfo0v5 \ + sqlite3 && \ + echo "**** install radarr ****" && \ + mkdir -p /app/radarr/bin && \ + if [ -z ${RADARR_RELEASE+x} ]; then \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + curl -o \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ + tar ixzf \ + /tmp/radarr.tar.gz -C \ + /app/radarr/bin --strip-components=1 && \ + echo "**** cleanup ****" && \ + echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + rm -rf \ + /app/radarr/bin/Radarr.Update \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # copy local files COPY root/ / diff --git a/Jenkinsfile b/Jenkinsfile index 64ea065..8e52794 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sL https://radarr.servarr.com/v1/update/nightly/changes?os=linux | jq -r '.[0].version' ''', + script: ''' curl -sL https://radarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux | jq -r '.[0].version' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 5f4efa0..3dae77c 100644 --- a/README.md +++ b/README.md @@ -70,9 +70,13 @@ This image provides various versions that are available via tags. `latest` tag u Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). -**Special Note**: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, ensure that the movies and downloads data are on a single volume. For example, if you have `/mnt/storage/Movies` and `/mnt/storage/downloads/completed/Movies`, you would want something like `/mnt/storage:/media` for your volume. Then you can hardlink from `/media/downloads/completed` to `/media/Movies`. +### Media folders -Another item to keep in mind, is that within Radarr itself, you should map your download client folder to your radarr folder. Navigate to **Settings -> Download Client -> Advanced Settings -> Remote Path Mappings**. Add a new mapping, and set: the Host as the same entry of the Host in your download client (for example its IP address), the Remote Path as `/downloads/Movies` (relative to the internal container path), and Local Path as `/media/downloads/completed/Movies`, assuming you have folders to separate your downloaded data types. +We have set `/movies` 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 @@ -93,8 +97,8 @@ services: - TZ=Europe/London volumes: - /path/to/data:/config - - /path/to/movies:/movies - - /path/to/downloadclient-downloads:/downloads + - /path/to/movies:/movies #optional + - /path/to/downloadclient-downloads:/downloads #optional ports: - 7878:7878 restart: unless-stopped @@ -110,8 +114,8 @@ docker run -d \ -e TZ=Europe/London \ -p 7878:7878 \ -v /path/to/data:/config \ - -v /path/to/movies:/movies \ - -v /path/to/downloadclient-downloads:/downloads \ + -v /path/to/movies:/movies `#optional` \ + -v /path/to/downloadclient-downloads:/downloads `#optional` \ --restart unless-stopped \ ghcr.io/linuxserver/radarr ``` @@ -239,6 +243,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 * **17.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **09.27.20:** - Merge Preview into Nightly. * **05.04.20:** - Move app to /app. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 0f787cb..8bf5862 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-radarr external_type: na -custom_version_command: curl -sL https://radarr.servarr.com/v1/update/nightly/changes?os=linux | jq -r '.[0].version' +custom_version_command: curl -sL https://radarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux | jq -r '.[0].version' release_type: prerelease release_tag: nightly ls_branch: nightly diff --git a/readme-vars.yml b/readme-vars.yml index 89d43f1..b116699 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -26,6 +26,9 @@ param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Database and Radarr configs" } + +opt_param_usage_include_vols: true +opt_param_volumes: - { vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Location of Movie library on disk (See note in Application setup)" } - { vol_path: "/downloads", vol_host_path: "/path/to/downloadclient-downloads", desc: "Location of download managers output directory (See note in Application setup)" } @@ -42,13 +45,18 @@ opt_param_usage_include_env: false app_setup_block_enabled: true app_setup_block: | Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). - - **Special Note**: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, ensure that the movies and downloads data are on a single volume. For example, if you have `/mnt/storage/Movies` and `/mnt/storage/downloads/completed/Movies`, you would want something like `/mnt/storage:/media` for your volume. Then you can hardlink from `/media/downloads/completed` to `/media/Movies`. - - Another item to keep in mind, is that within Radarr itself, you should map your download client folder to your radarr folder. Navigate to **Settings -> Download Client -> Advanced Settings -> Remote Path Mappings**. Add a new mapping, and set: the Host as the same entry of the Host in your download client (for example its IP address), the Remote Path as `/downloads/Movies` (relative to the internal container path), and Local Path as `/media/downloads/completed/Movies`, assuming you have folders to separate your downloaded data types. + + ### Media folders + + We have set `/movies` 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: "17.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "09.27.20:", desc: "Merge Preview into 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 cb95d64..aa3208d 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/radarr/run b/root/etc/services.d/radarr/run index cc8a724..9a42a4e 100644 --- a/root/etc/services.d/radarr/run +++ b/root/etc/services.d/radarr/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/radarr/bin/Radarr \ - -nobrowser -data=/config + s6-setuidgid abc /app/radarr/bin/Radarr \ + -nobrowser -data=/config From e9c6f599cd2400a2a9d706e489f81fcc3cb43d29 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Jul 2021 15:59:59 +0000 Subject: [PATCH 0162/1009] 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 7b747e1..710b2b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.5 -apt-utils2.0.5 +apt2.0.6 +apt-utils2.0.6 base-files11ubuntu5.3 base-passwd3.5.47 bash5.0-6ubuntu1.1 @@ -36,7 +36,7 @@ init-system-helpers1.57 jq1.6-1ubuntu0.20.04.1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.5 +libapt-pkg6.02.0.6 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libassuan02.5.3-7ubuntu2 libattr11:2.4.48-5 From 6359cb59dc2c2bf2c7cdc0427c8c1af92b1eb520 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Jul 2021 22:01:01 +0200 Subject: [PATCH 0163/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 710b2b1..9ccfc9e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -50,7 +50,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl3-gnutls7.68.0-1ubuntu2.5 +libcurl3-gnutls7.68.0-1ubuntu2.6 libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 From 37f197a41f7b0334f3d46ba6f39093e9fa339553 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Jul 2021 16:00:48 +0200 Subject: [PATCH 0164/1009] 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 9ccfc9e..165ad04 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 ca-certificates20210119~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.5 +curl7.68.0-1ubuntu2.6 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -51,7 +51,7 @@ libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 libcurl3-gnutls7.68.0-1ubuntu2.6 -libcurl47.68.0-1ubuntu2.5 +libcurl47.68.0-1ubuntu2.6 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libext2fs21.45.5-2ubuntu1 @@ -117,11 +117,11 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2.4 libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.7 +libsystemd0245.4-4ubuntu3.10 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.7 +libudev1245.4-4ubuntu3.10 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 From eb0ff2244c823be40454956ba412c30f3326ab23 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 Aug 2021 02:00:26 +0200 Subject: [PATCH 0165/1009] 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 165ad04..0c84b69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -60,7 +60,7 @@ libffi73.3-4 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libgmp102:6.2.0+dfsg-4 -libgnutls303.6.13-2ubuntu1.3 +libgnutls303.6.13-2ubuntu1.6 libgpg-error01.37-1 libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 libgssapi-krb5-21.17-6ubuntu4.1 @@ -117,18 +117,18 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 libssl1.11.1.1f-1ubuntu2.4 libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.10 +libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.10 +libudev1245.4-4ubuntu3.11 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libzen0v50.4.37-1build1 libzstd11.4.4+dfsg-3ubuntu0.1 locales2.31-0ubuntu9.2 -login1:4.8.1-1ubuntu5.20.04 +login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 @@ -136,7 +136,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 openssl1.1.1f-1ubuntu2.4 -passwd1:4.8.1-1ubuntu5.20.04 +passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 procps2:3.3.16-1ubuntu2.2 From db1f45df0b9bb35b16fea90e371b8e7a47f81b9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 Aug 2021 07:02:25 +0200 Subject: [PATCH 0166/1009] 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 0c84b69..1a51120 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -115,7 +115,7 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.1 -libssl1.11.1.1f-1ubuntu2.4 +libssl1.11.1.1f-1ubuntu2.5 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.4 +openssl1.1.1f-1ubuntu2.5 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 55c92a6c1c786fe7927aa28d2ffde2f3367f3bac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Aug 2021 09:59:18 +0200 Subject: [PATCH 0167/1009] Bot Updating Templated Files --- Jenkinsfile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8e52794..d9a06d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -375,7 +375,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 { @@ -400,7 +402,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 { @@ -505,7 +510,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} @@ -566,7 +571,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} @@ -590,7 +595,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 726b23f73dcd03ff385978f7c4fe44a98e64cdb8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Aug 2021 10:02:30 +0200 Subject: [PATCH 0168/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a51120..3907678 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.118ubuntu2 apt2.0.6 apt-utils2.0.6 -base-files11ubuntu5.3 +base-files11ubuntu5.4 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 From 1a4a63f22b5dd59edb3a24ef3378724d31d34345 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Sep 2021 17:00:24 +0200 Subject: [PATCH 0169/1009] 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 3907678..0898761 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,8 +114,8 @@ libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 -libssh-40.9.3-2ubuntu2.1 -libssl1.11.1.1f-1ubuntu2.5 +libssh-40.9.3-2ubuntu2.2 +libssl1.11.1.1f-1ubuntu2.8 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.5 +openssl1.1.1f-1ubuntu2.8 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 27705d75b1ebdeff74a964302a192605e463741f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 20 Sep 2021 17:58:52 +0200 Subject: [PATCH 0170/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0898761..892f58d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -50,7 +50,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl3-gnutls7.68.0-1ubuntu2.6 +libcurl3-gnutls7.68.0-1ubuntu2.7 libcurl47.68.0-1ubuntu2.6 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 From 48a14428aeaafc85be89ebb501939b1aab08f4c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 26 Sep 2021 03:49:26 +0200 Subject: [PATCH 0171/1009] 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 892f58d..34fa64c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 ca-certificates20210119~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.6 +curl7.68.0-1ubuntu2.7 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -51,14 +51,14 @@ libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 libcurl3-gnutls7.68.0-1ubuntu2.7 -libcurl47.68.0-1ubuntu2.6 +libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.1 libffi73.3-4 libgcc-s110.3.0-1ubuntu1~20.04 -libgcrypt201.8.5-5ubuntu1 +libgcrypt201.8.5-5ubuntu1.1 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.6 libgpg-error01.37-1 @@ -117,11 +117,11 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.8 libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.11 +libsystemd0245.4-4ubuntu3.13 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 libtinyxml2-6a7.0.0+dfsg-1build1 -libudev1245.4-4ubuntu3.11 +libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 From cecaed48aeee7ba2efbd394cd5fd9c3c99fbcdf2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Oct 2021 17:58:50 +0200 Subject: [PATCH 0172/1009] Bot Updating Templated Files --- Jenkinsfile | 108 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 101 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d9a06d6..5f63da2 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') BUILD_VERSION_ARG = 'RADARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-radarr' @@ -116,6 +117,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}") } } } @@ -130,6 +148,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 { @@ -152,6 +171,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 { @@ -174,6 +194,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 { @@ -369,6 +390,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/radarr") | .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/radarr",\ + "shortDescription":"example description",\ + "libraryType":"docker",\ + "website":"https://github.com/linuxserver/docker-radarr",\ + "backendUrl":"https://ghcr.io/linuxserver/radarr",\ + "publicUrl":"https://lscr.io/linuxserver/radarr"}' \ + | 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 ############### */ @@ -376,7 +439,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: '' } @@ -670,6 +733,12 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' ] ]) { retry(5) { @@ -678,22 +747,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 ''' } @@ -712,6 +785,12 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' ] ]) { retry(5) { @@ -720,13 +799,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} @@ -736,6 +816,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} @@ -745,6 +828,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 @@ -757,24 +843,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 87a5f64c7351a0a8fbcfc410c768ee2a72490b5f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Oct 2021 17:59:56 +0200 Subject: [PATCH 0173/1009] Bot Updating Templated Files --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3dae77c..cc482fb 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr/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-radarr/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-radarr/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/radarr) [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![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-radarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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/radarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/radarr` 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: @@ -89,7 +90,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: radarr: - image: ghcr.io/linuxserver/radarr + image: lscr.io/linuxserver/radarr container_name: radarr environment: - PUID=1000 @@ -117,7 +118,7 @@ docker run -d \ -v /path/to/movies:/movies `#optional` \ -v /path/to/downloadclient-downloads:/downloads `#optional` \ --restart unless-stopped \ - ghcr.io/linuxserver/radarr + lscr.io/linuxserver/radarr ``` ## Parameters @@ -177,7 +178,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/radarr` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/radarr` ## Updating Info @@ -195,7 +196,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull ghcr.io/linuxserver/radarr` +* Update the image: `docker pull lscr.io/linuxserver/radarr` * Stop the running container: `docker stop radarr` * Delete the container: `docker rm radarr` * 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) @@ -230,7 +231,7 @@ cd docker-radarr docker build \ --no-cache \ --pull \ - -t ghcr.io/linuxserver/radarr:latest . + -t lscr.io/linuxserver/radarr:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From 50f74614468f3772593a211ac7e4328a4a76461c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Oct 2021 18:02:31 +0200 Subject: [PATCH 0174/1009] 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 34fa64c..5951ad2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 bzip21.0.8-2 -ca-certificates20210119~20.04.1 +ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.7 dash0.5.10.2-6 @@ -98,7 +98,7 @@ libpam-modules-bin1.3.1-5ubuntu4.2 libpam-runtime1.3.1-5ubuntu4.2 libpcre2-8-010.34-7 libpcre32:8.39-12build1 -libprocps82:3.3.16-1ubuntu2.2 +libprocps82:3.3.16-1ubuntu2.3 libpsl50.21.0-1ubuntu1 libreadline88.0-4 libroken18-heimdal7.7.0+dfsg-1ubuntu1 @@ -139,7 +139,7 @@ openssl1.1.1f-1ubuntu2.8 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 -procps2:3.3.16-1ubuntu2.2 +procps2:3.3.16-1ubuntu2.3 publicsuffix20200303.0012-1 readline-common8.0-4 sed4.7-1 From f77e2c4486368cc353ad250c4b04b882ffe64be8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Oct 2021 16:01:00 +0200 Subject: [PATCH 0175/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5951ad2..e850454 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ sensible-utils0.0.12+nmu1 sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.1 -tzdata2021a-0ubuntu0.20.04 +tzdata2021a-2ubuntu0.20.04 ubuntu-keyring2020.02.11.4 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 6683bb160f3575d8eff53ec813d9bd40ba23577a Mon Sep 17 00:00:00 2001 From: Roxedus Date: Sun, 17 Oct 2021 17:31:38 +0200 Subject: [PATCH 0176/1009] Remove umask_set --- README.md | 1 + readme-vars.yml | 9 +++++---- root/etc/services.d/radarr/run | 5 ----- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index cc482fb..a08e34c 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **17.10.21:** - Remove `UMASK_SET`. * **11.07.21:** - Make the paths clearer to the user * **17.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **09.27.20:** - Merge Preview into Nightly. diff --git a/readme-vars.yml b/readme-vars.yml index b116699..08ee002 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -45,17 +45,18 @@ opt_param_usage_include_env: false app_setup_block_enabled: true app_setup_block: | Access the webui at `:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). - + ### Media folders - + We have set `/movies` 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: "17.10.21:", desc: "Remove `UMASK_SET`." } - { date: "11.07.21:", desc: "Make the paths clearer to the user" } - { date: "17.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "09.27.20:", desc: "Merge Preview into Nightly." } diff --git a/root/etc/services.d/radarr/run b/root/etc/services.d/radarr/run index 9a42a4e..e2d5e7b 100644 --- a/root/etc/services.d/radarr/run +++ b/root/etc/services.d/radarr/run @@ -1,10 +1,5 @@ #!/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/radarr/bin/Radarr \ -nobrowser -data=/config From bcf5ad22699c5b77425d18d47f0f60e8b4078b3d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Nov 2021 17:00:32 +0100 Subject: [PATCH 0177/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e850454..b2bf787 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ sensible-utils0.0.12+nmu1 sqlite33.31.1-4ubuntu0.2 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.1 -tzdata2021a-2ubuntu0.20.04 +tzdata2021e-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From cf04c423ecaa6fd2bc8c140d82d16699237314c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Nov 2021 08:00:32 +0100 Subject: [PATCH 0178/1009] 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 b2bf787..8d5852f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -92,10 +92,10 @@ libnghttp2-141.40.0-1build1 libnpth01.6-1 libonig56.9.4-1 libp11-kit00.23.20-1ubuntu0.1 -libpam0g1.3.1-5ubuntu4.2 -libpam-modules1.3.1-5ubuntu4.2 -libpam-modules-bin1.3.1-5ubuntu4.2 -libpam-runtime1.3.1-5ubuntu4.2 +libpam0g1.3.1-5ubuntu4.3 +libpam-modules1.3.1-5ubuntu4.3 +libpam-modules-bin1.3.1-5ubuntu4.3 +libpam-runtime1.3.1-5ubuntu4.3 libpcre2-8-010.34-7 libpcre32:8.39-12build1 libprocps82:3.3.16-1ubuntu2.3 From d38aa8388dac61371e18e17f58767898decda6b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Nov 2021 14:13:41 +0100 Subject: [PATCH 0179/1009] 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 8d5852f..8640660 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -115,7 +115,7 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.8 +libssl1.11.1.1f-1ubuntu2.9 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.13 libtasn1-64.16.0-2 @@ -135,7 +135,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.8 +openssl1.1.1f-1ubuntu2.9 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 455f66aaefe5af2c3b4d6a58dd79bced9f614508 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Nov 2021 21:01:06 +0100 Subject: [PATCH 0180/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8640660..bc0af25 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -69,7 +69,7 @@ libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 -libicu6666.1-2ubuntu2 +libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 libjq11.6-1ubuntu0.20.04.1 libk5crypto31.17-6ubuntu4.1 From 8bd305244b8351c396fb0b6a8f062ac818802480 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Mon, 13 Dec 2021 12:28:27 +0100 Subject: [PATCH 0181/1009] mediainfo is dead, long live ffprobe --- Dockerfile | 1 - Dockerfile.aarch64 | 1 - Dockerfile.armhf | 1 - README.md | 1 + readme-vars.yml | 1 + 5 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 031038e..ff13e4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,6 @@ RUN \ apt-get install --no-install-recommends -y \ jq \ libicu66 \ - libmediainfo0v5 \ sqlite3 && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2ec7e43..4dee74c 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -18,7 +18,6 @@ RUN \ apt-get install --no-install-recommends -y \ jq \ libicu66 \ - libmediainfo0v5 \ sqlite3 && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 1c3c20d..0d45323 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -18,7 +18,6 @@ RUN \ apt-get install --no-install-recommends -y \ jq \ libicu66 \ - libmediainfo0v5 \ sqlite3 && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ diff --git a/README.md b/README.md index a08e34c..9b674a5 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **13.12.21:** - Remove unused dependencies. * **17.10.21:** - Remove `UMASK_SET`. * **11.07.21:** - Make the paths clearer to the user * **17.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. diff --git a/readme-vars.yml b/readme-vars.yml index 08ee002..46312b1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -56,6 +56,7 @@ app_setup_block: | # changelog changelogs: + - { date: "13.12.21:", desc: "Remove unused dependencies." } - { date: "17.10.21:", desc: "Remove `UMASK_SET`." } - { date: "11.07.21:", desc: "Make the paths clearer to the user" } - { date: "17.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } From af3042a3cd9b973a9eb66d3e6fd41791251595df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 13 Dec 2021 13:55:49 +0100 Subject: [PATCH 0182/1009] Bot Updating Package Versions --- package_versions.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bc0af25..7967629 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -50,7 +50,6 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.2 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl3-gnutls7.68.0-1ubuntu2.7 libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 @@ -82,8 +81,6 @@ libldap-2.4-22.4.49+dfsg-2ubuntu1.8 libldap-common2.4.49+dfsg-2ubuntu1.8 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 -libmediainfo0v519.09+dfsg-2build1 -libmms00.6.4-3 libmount12.34-0.1ubuntu9.1 libncurses66.2-0ubuntu2 libncursesw66.2-0ubuntu2 @@ -120,12 +117,10 @@ libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.13 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 -libtinyxml2-6a7.0.0+dfsg-1build1 libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 -libzen0v50.4.37-1build1 libzstd11.4.4+dfsg-3ubuntu0.1 locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04.1 From 734d896fbb853f1b569286a3609240567b2c7ac4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 14 Dec 2021 23:01:20 +0100 Subject: [PATCH 0183/1009] 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 7967629..5493aec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -112,7 +112,7 @@ libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.9 +libssl1.11.1.1f-1ubuntu2.10 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.13 libtasn1-64.16.0-2 @@ -130,7 +130,7 @@ mawk1.3.4.20200120-2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.9 +openssl1.1.1f-1ubuntu2.10 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 7ffeb317ddebf9b56acc392df75c73e8eae582f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Dec 2021 18:11:44 +0100 Subject: [PATCH 0184/1009] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 50 insertions(+), 38 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5f63da2..dd209b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -118,12 +118,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]}" @@ -133,7 +132,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") + } + } } } @@ -402,10 +409,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/radarr") | .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/radarr") | .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/radarr",\ @@ -413,22 +420,10 @@ pipeline { "libraryType":"docker",\ "website":"https://github.com/linuxserver/docker-radarr",\ "backendUrl":"https://ghcr.io/linuxserver/radarr",\ - "publicUrl":"https://lscr.io/linuxserver/radarr"}' \ - | jq -r .uuid) + "publicUrl":"https://lscr.io/linuxserver/radarr"}' || : 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"}]' ''' } } @@ -752,11 +747,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 ''' } @@ -765,8 +764,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 ''' } @@ -816,9 +817,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} @@ -828,9 +831,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 @@ -843,14 +848,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 ''' } @@ -860,15 +869,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 53a1038bf8637d9252f0047617ff838ea9a8169c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Dec 2021 18:12:47 +0100 Subject: [PATCH 0185/1009] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9b674a5..49a6356 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Find us at: # [linuxserver/radarr](https://github.com/linuxserver/docker-radarr) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fradarr?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fradarr) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr/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-radarr/packages) From 183419430ed6cd51d779d79e064c0137e4d78564 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 21 Dec 2021 07:01:18 +0100 Subject: [PATCH 0186/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5493aec..2085bd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -103,7 +103,7 @@ librtmp12.4+20151223.gitfa8646d.1-2build1 libsasl2-22.1.27+dfsg-2 libsasl2-modules2.1.27+dfsg-2 libsasl2-modules-db2.1.27+dfsg-2 -libseccomp22.5.1-1ubuntu1~20.04.1 +libseccomp22.5.1-1ubuntu1~20.04.2 libselinux13.0-1build2 libsemanage13.0-1build2 libsemanage-common3.0-1build2 From edc4cf5e9d6a0f2d3227f64cf42130bb2868ffd0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Jan 2022 04:06:11 +0100 Subject: [PATCH 0187/1009] 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 2085bd7..900ee29 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,10 +114,10 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.10 libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.13 +libsystemd0245.4-4ubuntu3.14 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.13 +libudev1245.4-4ubuntu3.14 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 From c84b997e79a20879b8506180030ee656bf205404 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Jan 2022 07:00:27 +0100 Subject: [PATCH 0188/1009] 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 900ee29..af00f8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,10 +114,10 @@ libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.10 libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.14 +libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.14 +libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 From dee8c4945cce6eb247c0722e610733522dff0eeb Mon Sep 17 00:00:00 2001 From: TheSpad Date: Fri, 4 Feb 2022 11:37:22 +0000 Subject: [PATCH 0189/1009] Rebase nightly branch to Alpine --- Dockerfile | 24 +++++++++++------------- Dockerfile.aarch64 | 24 +++++++++++------------- Dockerfile.armhf | 24 +++++++++++------------- Jenkinsfile | 4 ++-- README.md | 1 + jenkins-vars.yml | 4 ++-- readme-vars.yml | 1 + 7 files changed, 39 insertions(+), 43 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff13e4f..163558e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,42 +1,40 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:focal +FROM ghcr.io/linuxserver/baseimage-alpine:3.15 # set version label ARG BUILD_DATE ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" +LABEL maintainer="thespad" # environment settings -ARG DEBIAN_FRONTEND="noninteractive" ARG RADARR_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 \ - libicu66 \ - sqlite3 && \ + icu-libs \ + sqlite-libs && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linux" \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ | jq -r '.[0].version'); \ fi && \ curl -o \ - /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ - tar ixzf \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=x64" && \ + tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ /tmp/* \ - /var/lib/apt/lists/* \ /var/tmp/* # copy local files diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4dee74c..09a4e57 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,42 +1,40 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15 # set version label ARG BUILD_DATE ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" +LABEL maintainer="thespad" # environment settings -ARG DEBIAN_FRONTEND="noninteractive" ARG RADARR_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 \ - libicu66 \ - sqlite3 && \ + icu-libs \ + sqlite-libs && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linux" \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ - tar ixzf \ - /tmp/radarr.tar.gz -C \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=arm64" && \ + tar xzf \ + /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ /tmp/* \ - /var/lib/apt/lists/* \ /var/tmp/* # copy local files diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 0d45323..6fa8582 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,42 +1,40 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal +FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.15 # set version label ARG BUILD_DATE ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" +LABEL maintainer="thespad" # environment settings -ARG DEBIAN_FRONTEND="noninteractive" ARG RADARR_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 \ - libicu66 \ - sqlite3 && \ + icu-libs \ + sqlite-libs && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linux" \ + RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ | jq -r '.[0].version'); \ fi && \ curl -o \ - /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ - tar ixzf \ + /tmp/radarr.tar.gz -L \ + "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=arm" && \ + tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ echo "**** cleanup ****" && \ - echo "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ rm -rf \ /app/radarr/bin/Radarr.Update \ /tmp/* \ - /var/lib/apt/lists/* \ /var/tmp/* # copy local files diff --git a/Jenkinsfile b/Jenkinsfile index dd209b1..0da8c00 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,14 +24,14 @@ pipeline { DOCKERHUB_IMAGE = 'linuxserver/radarr' DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr' PR_DOCKERHUB_IMAGE = 'lspipepr/radarr' - DIST_IMAGE = 'ubuntu' + DIST_IMAGE = 'alpine' MULTIARCH='true' CI='true' CI_WEB='true' CI_PORT='7878' CI_SSL='false' CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' + CI_DOCKERENV='TZ=Europe/London' CI_AUTH='user:password' CI_WEBPATH='' } diff --git a/README.md b/README.md index 49a6356..327c64f 100644 --- a/README.md +++ b/README.md @@ -245,6 +245,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **04.02.22:** - Rebase nightly branch to Alpine. * **13.12.21:** - Remove unused dependencies. * **17.10.21:** - Remove `UMASK_SET`. * **11.07.21:** - Make the paths clearer to the user diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 8bf5862..00a9146 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -15,14 +15,14 @@ repo_vars: - DOCKERHUB_IMAGE = 'linuxserver/radarr' - DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr' - PR_DOCKERHUB_IMAGE = 'lspipepr/radarr' - - DIST_IMAGE = 'ubuntu' + - DIST_IMAGE = 'alpine' - MULTIARCH='true' - CI='true' - CI_WEB='true' - CI_PORT='7878' - CI_SSL='false' - CI_DELAY='120' - - CI_DOCKERENV='TZ=US/Pacific' + - CI_DOCKERENV='TZ=Europe/London' - CI_AUTH='user:password' - CI_WEBPATH='' sponsor_links: diff --git a/readme-vars.yml b/readme-vars.yml index 46312b1..ef36046 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -56,6 +56,7 @@ app_setup_block: | # changelog changelogs: + - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } - { date: "13.12.21:", desc: "Remove unused dependencies." } - { date: "17.10.21:", desc: "Remove `UMASK_SET`." } - { date: "11.07.21:", desc: "Make the paths clearer to the user" } From 6dc9fb5231ee83b27fd44fa9311286c3e1ca54f1 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Fri, 4 Feb 2022 11:54:39 +0000 Subject: [PATCH 0190/1009] Add radarr Health warning about Alpine rebase --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 163558e..99efd61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 09a4e57..86450e5 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 6fa8582..9d0b00c 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ From 8a22c1ada29d03280bb7e6e22ca017a585609aa9 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Fri, 4 Feb 2022 18:28:09 +0000 Subject: [PATCH 0191/1009] 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 99efd61..f482bfc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 86450e5..91a0c18 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 9d0b00c..f30f247 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ From 6562fe22546c37ffb167e2a00cca0c09729583bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Feb 2022 21:06:52 +0100 Subject: [PATCH 0192/1009] Bot Updating Package Versions --- package_versions.txt | 191 ++++++++++--------------------------------- 1 file changed, 43 insertions(+), 148 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index af00f8c..9a64de2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,148 +1,43 @@ -adduser3.118ubuntu2 -apt2.0.6 -apt-utils2.0.6 -base-files11ubuntu5.4 -base-passwd3.5.47 -bash5.0-6ubuntu1.1 -bsdutils1:2.34-0.1ubuntu9.1 -bzip21.0.8-2 -ca-certificates20210119~20.04.2 -coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.7 -dash0.5.10.2-6 -debconf1.5.73 -debianutils4.9.1 -diffutils1:3.7-3 -dirmngr2.2.19-3ubuntu2.1 -dpkg1.19.7ubuntu3 -e2fsprogs1.45.5-2ubuntu1 -fdisk2.34-0.1ubuntu9.1 -findutils4.7.0-1ubuntu1 -gcc-10-base10.3.0-1ubuntu1~20.04 -gnupg2.2.19-3ubuntu2.1 -gnupg-l10n2.2.19-3ubuntu2.1 -gnupg-utils2.2.19-3ubuntu2.1 -gpg2.2.19-3ubuntu2.1 -gpg-agent2.2.19-3ubuntu2.1 -gpgconf2.2.19-3ubuntu2.1 -gpgsm2.2.19-3ubuntu2.1 -gpgv2.2.19-3ubuntu2.1 -gpg-wks-client2.2.19-3ubuntu2.1 -gpg-wks-server2.2.19-3ubuntu2.1 -grep3.4-1 -gzip1.10-0ubuntu4 -hostname3.23 -init-system-helpers1.57 -jq1.6-1ubuntu0.20.04.1 -krb5-locales1.17-6ubuntu4.1 -libacl12.2.53-6 -libapt-pkg6.02.0.6 -libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 -libassuan02.5.3-7ubuntu2 -libattr11:2.4.48-5 -libaudit11:2.8.5-2ubuntu6 -libaudit-common1:2.8.5-2ubuntu6 -libblkid12.34-0.1ubuntu9.1 -libbrotli11.0.7-6ubuntu0.1 -libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.2 -libcap-ng00.7.9-2.1build1 -libc-bin2.31-0ubuntu9.2 -libcom-err21.45.5-2ubuntu1 -libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.7 -libdb5.35.3.28+dfsg1-0.6ubuntu2 -libdebconfclient00.251ubuntu1 -libext2fs21.45.5-2ubuntu1 -libfdisk12.34-0.1ubuntu9.1 -libffi73.3-4 -libgcc-s110.3.0-1ubuntu1~20.04 -libgcrypt201.8.5-5ubuntu1.1 -libgmp102:6.2.0+dfsg-4 -libgnutls303.6.13-2ubuntu1.6 -libgpg-error01.37-1 -libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 -libgssapi-krb5-21.17-6ubuntu4.1 -libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 -libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 -libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 -libhogweed53.5.1+really3.5.1-2ubuntu0.2 -libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 -libicu6666.1-2ubuntu2.1 -libidn2-02.2.0-2 -libjq11.6-1ubuntu0.20.04.1 -libk5crypto31.17-6ubuntu4.1 -libkeyutils11.6-6ubuntu1 -libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 -libkrb5-31.17-6ubuntu4.1 -libkrb5support01.17-6ubuntu4.1 -libksba81.3.5-2 -libldap-2.4-22.4.49+dfsg-2ubuntu1.8 -libldap-common2.4.49+dfsg-2ubuntu1.8 -liblz4-11.9.2-2ubuntu0.20.04.1 -liblzma55.2.4-1ubuntu1 -libmount12.34-0.1ubuntu9.1 -libncurses66.2-0ubuntu2 -libncursesw66.2-0ubuntu2 -libnettle73.5.1+really3.5.1-2ubuntu0.2 -libnghttp2-141.40.0-1build1 -libnpth01.6-1 -libonig56.9.4-1 -libp11-kit00.23.20-1ubuntu0.1 -libpam0g1.3.1-5ubuntu4.3 -libpam-modules1.3.1-5ubuntu4.3 -libpam-modules-bin1.3.1-5ubuntu4.3 -libpam-runtime1.3.1-5ubuntu4.3 -libpcre2-8-010.34-7 -libpcre32:8.39-12build1 -libprocps82:3.3.16-1ubuntu2.3 -libpsl50.21.0-1ubuntu1 -libreadline88.0-4 -libroken18-heimdal7.7.0+dfsg-1ubuntu1 -librtmp12.4+20151223.gitfa8646d.1-2build1 -libsasl2-22.1.27+dfsg-2 -libsasl2-modules2.1.27+dfsg-2 -libsasl2-modules-db2.1.27+dfsg-2 -libseccomp22.5.1-1ubuntu1~20.04.2 -libselinux13.0-1build2 -libsemanage13.0-1build2 -libsemanage-common3.0-1build2 -libsepol13.0-1 -libsmartcols12.34-0.1ubuntu9.1 -libsqlite3-03.31.1-4ubuntu0.2 -libss21.45.5-2ubuntu1 -libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.10 -libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.15 -libtasn1-64.16.0-2 -libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.15 -libunistring20.9.10-2 -libuuid12.34-0.1ubuntu9.1 -libwind0-heimdal7.7.0+dfsg-1ubuntu1 -libzstd11.4.4+dfsg-3ubuntu0.1 -locales2.31-0ubuntu9.2 -login1:4.8.1-1ubuntu5.20.04.1 -logsave1.45.5-2ubuntu1 -lsb-base11.1.0ubuntu2 -mawk1.3.4.20200120-2 -mount2.34-0.1ubuntu9.1 -ncurses-base6.2-0ubuntu2 -ncurses-bin6.2-0ubuntu2 -openssl1.1.1f-1ubuntu2.10 -passwd1:4.8.1-1ubuntu5.20.04.1 -perl-base5.30.0-9ubuntu0.2 -pinentry-curses1.1.0-3build1 -procps2:3.3.16-1ubuntu2.3 -publicsuffix20200303.0012-1 -readline-common8.0-4 -sed4.7-1 -sensible-utils0.0.12+nmu1 -sqlite33.31.1-4ubuntu0.2 -sysvinit-utils2.96-2.1ubuntu1 -tar1.30+dfsg-7ubuntu0.20.04.1 -tzdata2021e-0ubuntu0.20.04 -ubuntu-keyring2020.02.11.4 -util-linux2.34-0.1ubuntu9.1 -zlib1g1:1.2.11.dfsg-2ubuntu1.2 +alpine-baselayout-3.2.0-r18 +alpine-keys-2.4-r1 +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 +coreutils-9.0-r2 +curl-7.80.0-r0 +icu-libs-69.1-r1 +jq-1.6-r1 +libacl-2.2.53-r0 +libattr-2.5.1-r1 +libc-utils-0.7.2-r3 +libcrypto1.1-1.1.1l-r8 +libcurl-7.80.0-r0 +libgcc-10.3.1_git20211027-r0 +libintl-0.21-r0 +libproc-3.3.17-r0 +libretls-3.3.4-r2 +libssl1.1-1.1.1l-r8 +libstdc++-10.3.1_git20211027-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 +nghttp2-libs-1.46.0-r0 +oniguruma-6.9.7.1-r0 +procps-3.3.17-r0 +readline-8.1.1-r0 +s6-ipcserver-2.11.0.0-r0 +scanelf-1.3.3-r0 +shadow-4.8.1-r1 +skalibs-2.11.0.0-r0 +sqlite-libs-3.36.0-r0 +ssl_client-1.34.1-r4 +tzdata-2021e-r0 +utmps-0.1.0.3-r0 +xz-5.2.5-r0 +xz-libs-5.2.5-r0 +zlib-1.2.11-r3 From 6a95881148f93dcb1942ecc195f7ebbf40ca16b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Feb 2022 00:00:12 +0100 Subject: [PATCH 0193/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9a64de2..549556e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ alpine-baselayout-3.2.0-r18 alpine-keys-2.4-r1 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 7827015358f4b6d30b6a7c561de579b60b6edb17 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Mon, 7 Mar 2022 17:50:36 +0000 Subject: [PATCH 0194/1009] 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 f482bfc..287a33c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 91a0c18..4138f60 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f30f247..d4efbad 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -30,7 +30,7 @@ RUN \ tar xzf \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_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/radarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/radarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ From a0e055307ac9e9c049beb392d51daffdf577d28b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Mar 2022 12:04:02 -0500 Subject: [PATCH 0195/1009] 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 549556e..d5f3bba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,13 +13,13 @@ jq-1.6-r1 libacl-2.2.53-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1l-r8 +libcrypto1.1-1.1.1n-r0 libcurl-7.80.0-r0 libgcc-10.3.1_git20211027-r0 libintl-0.21-r0 libproc-3.3.17-r0 -libretls-3.3.4-r2 -libssl1.1-1.1.1l-r8 +libretls-3.3.4-r3 +libssl1.1-1.1.1n-r0 libstdc++-10.3.1_git20211027-r0 linux-pam-1.5.2-r0 musl-1.2.2-r7 From 1f5041963ad1681c59aaae0a91c99af668feeaec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Mar 2022 04:15:24 +0200 Subject: [PATCH 0196/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d5f3bba..1e9b517 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ shadow-4.8.1-r1 skalibs-2.11.0.0-r0 sqlite-libs-3.36.0-r0 ssl_client-1.34.1-r4 -tzdata-2021e-r0 +tzdata-2022a-r0 utmps-0.1.0.3-r0 xz-5.2.5-r0 xz-libs-5.2.5-r0 From eb563bf7c6c6fb608eff1d30701f071e8c06ffc2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Mar 2022 04:26:29 +0200 Subject: [PATCH 0197/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1e9b517..fbff214 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,4 +40,4 @@ tzdata-2022a-r0 utmps-0.1.0.3-r0 xz-5.2.5-r0 xz-libs-5.2.5-r0 -zlib-1.2.11-r3 +zlib-1.2.12-r0 From 53a3e225397cfaee9dfbeb8f8334fa474a55795c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Apr 2022 17:58:50 +0200 Subject: [PATCH 0198/1009] 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 fbff214..3c8da23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,7 @@ alpine-keys-2.4-r1 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 coreutils-9.0-r2 @@ -35,7 +35,7 @@ scanelf-1.3.3-r0 shadow-4.8.1-r1 skalibs-2.11.0.0-r0 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 xz-5.2.5-r0 From 2f398ad9bba79069abffae4af06ceeb09b0f120d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Apr 2022 04:50:41 +0200 Subject: [PATCH 0199/1009] 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 3c8da23..4179b04 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,6 +38,6 @@ sqlite-libs-3.36.0-r0 ssl_client-1.34.1-r5 tzdata-2022a-r0 utmps-0.1.0.3-r0 -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 5685df4bad04415480f6a434c93947fd31d2700e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 May 2022 06:39:39 +0200 Subject: [PATCH 0200/1009] Bot Updating Templated Files --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0da8c00..f8f1fdc 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 -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 4e2ce1ed990d85bb0a1ac5a2430869366f8fcb0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 May 2022 06:40:55 +0200 Subject: [PATCH 0201/1009] Bot Updating Templated Files --- README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 327c64f..91e8d59 100644 --- a/README.md +++ b/README.md @@ -46,27 +46,27 @@ 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/radarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/radarr: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 Radarr releases | -| develop | Radarr releases from their develop branch | -| nightly | Nightly Radarr releases | +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable Radarr releases | +| develop | ✅ | Radarr releases from their develop branch | +| nightly | ✅ | Nightly Radarr releases | ## Application Setup @@ -91,7 +91,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: radarr: - image: lscr.io/linuxserver/radarr + image: lscr.io/linuxserver/radarr:nightly container_name: radarr environment: - PUID=1000 @@ -119,7 +119,7 @@ docker run -d \ -v /path/to/movies:/movies `#optional` \ -v /path/to/downloadclient-downloads:/downloads `#optional` \ --restart unless-stopped \ - lscr.io/linuxserver/radarr + lscr.io/linuxserver/radarr:nightly ``` ## Parameters @@ -179,7 +179,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/radarr` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/radarr:nightly` ## Updating Info @@ -197,7 +197,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/radarr` +* Update the image: `docker pull lscr.io/linuxserver/radarr:nightly` * Stop the running container: `docker stop radarr` * Delete the container: `docker rm radarr` * 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) @@ -232,7 +232,7 @@ cd docker-radarr docker build \ --no-cache \ --pull \ - -t lscr.io/linuxserver/radarr:latest . + -t lscr.io/linuxserver/radarr:nightly . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From b10a15c8728a656af8bf3dace5ef2e544a7dc646 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 May 2022 06:43:26 +0200 Subject: [PATCH 0202/1009] 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 4179b04..3f2df4a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,14 +7,14 @@ busybox-1.34.1-r5 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 coreutils-9.0-r2 -curl-7.80.0-r0 +curl-7.80.0-r1 icu-libs-69.1-r1 jq-1.6-r1 libacl-2.2.53-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1n-r0 -libcurl-7.80.0-r0 +libcurl-7.80.0-r1 libgcc-10.3.1_git20211027-r0 libintl-0.21-r0 libproc-3.3.17-r0 @@ -40,4 +40,4 @@ tzdata-2022a-r0 utmps-0.1.0.3-r0 xz-5.2.5-r1 xz-libs-5.2.5-r1 -zlib-1.2.12-r0 +zlib-1.2.12-r1 From 5f0982257a4033846c70da1f790bcd26e2ece6cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 12 May 2022 04:46:27 +0200 Subject: [PATCH 0203/1009] 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 3f2df4a..a343fef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,13 +13,13 @@ jq-1.6-r1 libacl-2.2.53-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1n-r0 +libcrypto1.1-1.1.1o-r0 libcurl-7.80.0-r1 libgcc-10.3.1_git20211027-r0 libintl-0.21-r0 libproc-3.3.17-r0 libretls-3.3.4-r3 -libssl1.1-1.1.1n-r0 +libssl1.1-1.1.1o-r0 libstdc++-10.3.1_git20211027-r0 linux-pam-1.5.2-r0 musl-1.2.2-r7 From 81ecfb7d86a2963eb501c7ed2eb237feac4d25f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Jul 2022 22:02:54 -0500 Subject: [PATCH 0204/1009] 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 a343fef..00fc71a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,19 +7,19 @@ busybox-1.34.1-r5 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 coreutils-9.0-r2 -curl-7.80.0-r1 +curl-7.80.0-r2 icu-libs-69.1-r1 jq-1.6-r1 libacl-2.2.53-r0 libattr-2.5.1-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 libgcc-10.3.1_git20211027-r0 libintl-0.21-r0 libproc-3.3.17-r0 libretls-3.3.4-r3 -libssl1.1-1.1.1o-r0 +libssl1.1-1.1.1p-r0 libstdc++-10.3.1_git20211027-r0 linux-pam-1.5.2-r0 musl-1.2.2-r7 From 2eb8e955ebabd1187d0b742243c547d85e9f2d04 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 10 Jul 2022 14:00:50 -0500 Subject: [PATCH 0205/1009] 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 00fc71a..07d325b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,7 @@ alpine-keys-2.4-r1 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 coreutils-9.0-r2 @@ -13,13 +13,13 @@ jq-1.6-r1 libacl-2.2.53-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1p-r0 +libcrypto1.1-1.1.1q-r0 libcurl-7.80.0-r2 libgcc-10.3.1_git20211027-r0 libintl-0.21-r0 libproc-3.3.17-r0 libretls-3.3.4-r3 -libssl1.1-1.1.1p-r0 +libssl1.1-1.1.1q-r0 libstdc++-10.3.1_git20211027-r0 linux-pam-1.5.2-r0 musl-1.2.2-r7 @@ -35,7 +35,7 @@ scanelf-1.3.3-r0 shadow-4.8.1-r1 skalibs-2.11.0.0-r0 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 xz-5.2.5-r1 From f2f676531ab850fb6c433bad7681a6c1e202abf4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 21 Jul 2022 23:00:51 +0200 Subject: [PATCH 0206/1009] 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 07d325b..7bdbd32 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,7 @@ alpine-keys-2.4-r1 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 coreutils-9.0-r2 @@ -24,8 +24,8 @@ libstdc++-10.3.1_git20211027-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 nghttp2-libs-1.46.0-r0 oniguruma-6.9.7.1-r0 procps-3.3.17-r0 @@ -35,7 +35,7 @@ scanelf-1.3.3-r0 shadow-4.8.1-r1 skalibs-2.11.0.0-r0 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 xz-5.2.5-r1 From 1710c00de5a4f24bd2105af03e6039729dc74917 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Aug 2022 18:00:33 +0200 Subject: [PATCH 0207/1009] 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 7bdbd32..a641f14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,8 +4,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 coreutils-9.0-r2 curl-7.80.0-r2 icu-libs-69.1-r1 From 79225e21923505cab680d75944cdfa1f991c09c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Aug 2022 06:24:27 +0200 Subject: [PATCH 0208/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a641f14..686f1b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,4 +40,4 @@ tzdata-2022a-r0 utmps-0.1.0.3-r0 xz-5.2.5-r1 xz-libs-5.2.5-r1 -zlib-1.2.12-r1 +zlib-1.2.12-r2 From 805a7fb2be73b3b10a00f8b3025b88e07f77d788 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Aug 2022 21:31:45 -0500 Subject: [PATCH 0209/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 686f1b7..5d7fc0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,4 +40,4 @@ tzdata-2022a-r0 utmps-0.1.0.3-r0 xz-5.2.5-r1 xz-libs-5.2.5-r1 -zlib-1.2.12-r2 +zlib-1.2.12-r3 From 5b593a68c43910bdc01adcb61bb293bb1460658f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Aug 2022 02:00:19 -0500 Subject: [PATCH 0210/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5d7fc0a..63ebb24 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ shadow-4.8.1-r1 skalibs-2.11.0.0-r0 sqlite-libs-3.36.0-r0 ssl_client-1.34.1-r7 -tzdata-2022a-r0 +tzdata-2022c-r0 utmps-0.1.0.3-r0 xz-5.2.5-r1 xz-libs-5.2.5-r1 From d118562a6e29ae478f711cb0c3f7c051631b77d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Sep 2022 13:00:47 -0500 Subject: [PATCH 0211/1009] 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 63ebb24..163171b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,14 +7,14 @@ busybox-1.34.1-r7 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 coreutils-9.0-r2 -curl-7.80.0-r2 +curl-7.80.0-r3 icu-libs-69.1-r1 jq-1.6-r1 libacl-2.2.53-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1q-r0 -libcurl-7.80.0-r2 +libcurl-7.80.0-r3 libgcc-10.3.1_git20211027-r0 libintl-0.21-r0 libproc-3.3.17-r0 From 350553eec68fb356e74e8f60f0a55b1adc34da51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Sep 2022 22:40:05 -0500 Subject: [PATCH 0212/1009] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f8f1fdc..a6b7cd6 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 568a47e192810795ce6ab8da7e0545cc14879ad3 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 27 Oct 2022 19:42:52 +0100 Subject: [PATCH 0213/1009] Rebase nightly to 3.16, migrate to s6v3 --- Dockerfile | 5 ++--- Dockerfile.aarch64 | 5 ++--- Dockerfile.armhf | 5 ++--- README.md | 1 + readme-vars.yml | 1 + .../init-config-end/dependencies.d/init-radarr-config | 0 .../s6-rc.d/init-radarr-config/dependencies.d/init-config | 0 .../30-config => s6-overlay/s6-rc.d/init-radarr-config/run} | 2 +- root/etc/s6-overlay/s6-rc.d/init-radarr-config/type | 1 + root/etc/s6-overlay/s6-rc.d/init-radarr-config/up | 1 + .../s6-rc.d/svc-radarr/dependencies.d/init-services | 0 root/etc/s6-overlay/s6-rc.d/svc-radarr/notification-fd | 1 + root/etc/s6-overlay/s6-rc.d/svc-radarr/run | 6 ++++++ root/etc/s6-overlay/s6-rc.d/svc-radarr/type | 1 + .../s6-overlay/s6-rc.d/user/contents.d/init-radarr-config | 0 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-radarr | 0 root/etc/services.d/radarr/run | 5 ----- 17 files changed, 19 insertions(+), 15 deletions(-) create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-radarr-config create mode 100644 root/etc/s6-overlay/s6-rc.d/init-radarr-config/dependencies.d/init-config rename root/etc/{cont-init.d/30-config => s6-overlay/s6-rc.d/init-radarr-config/run} (80%) mode change 100644 => 100755 create mode 100644 root/etc/s6-overlay/s6-rc.d/init-radarr-config/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-radarr-config/up create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-radarr/dependencies.d/init-services create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-radarr/notification-fd create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-radarr/run create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-radarr/type create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-radarr-config create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-radarr delete mode 100644 root/etc/services.d/radarr/run diff --git a/Dockerfile b/Dockerfile index 287a33c..6621372 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 \ icu-libs \ sqlite-libs && \ echo "**** install radarr ****" && \ @@ -42,4 +40,5 @@ COPY root/ / # ports and volumes EXPOSE 7878 + VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4138f60..c946c3f 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 \ icu-libs \ sqlite-libs && \ echo "**** install radarr ****" && \ @@ -42,4 +40,5 @@ COPY root/ / # ports and volumes EXPOSE 7878 + VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index d4efbad..a9aec30 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.15 +FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-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 \ icu-libs \ sqlite-libs && \ echo "**** install radarr ****" && \ @@ -42,4 +40,5 @@ COPY root/ / # ports and volumes EXPOSE 7878 + VOLUME /config diff --git a/README.md b/README.md index 91e8d59..d898a72 100644 --- a/README.md +++ b/README.md @@ -245,6 +245,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **27.10.22:** - Rebase nightly to Alpine 3.16, migrate to s6v3. * **04.02.22:** - Rebase nightly branch to Alpine. * **13.12.21:** - Remove unused dependencies. * **17.10.21:** - Remove `UMASK_SET`. diff --git a/readme-vars.yml b/readme-vars.yml index ef36046..64f837f 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -56,6 +56,7 @@ app_setup_block: | # changelog changelogs: + - { 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: "13.12.21:", desc: "Remove unused dependencies." } - { date: "17.10.21:", desc: "Remove `UMASK_SET`." } diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-radarr-config b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-radarr-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/dependencies.d/init-config b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/dependencies.d/init-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/cont-init.d/30-config b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run old mode 100644 new mode 100755 similarity index 80% rename from root/etc/cont-init.d/30-config rename to root/etc/s6-overlay/s6-rc.d/init-radarr-config/run index aa3208d..05c4707 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run @@ -1,5 +1,5 @@ #!/usr/bin/with-contenv bash -# permissions +# permissions chown -R abc:abc \ /config diff --git a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/type b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/up b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/up new file mode 100644 index 0000000..bb49764 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-radarr-config/run diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/dependencies.d/init-services b/root/etc/s6-overlay/s6-rc.d/svc-radarr/dependencies.d/init-services new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/notification-fd b/root/etc/s6-overlay/s6-rc.d/svc-radarr/notification-fd new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/notification-fd @@ -0,0 +1 @@ +3 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run new file mode 100755 index 0000000..8d7cbdf --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run @@ -0,0 +1,6 @@ +#!/usr/bin/with-contenv bash + +exec \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 7878" \ + cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \ + -nobrowser -data=/config diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/type b/root/etc/s6-overlay/s6-rc.d/svc-radarr/type new file mode 100644 index 0000000..5883cff --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/type @@ -0,0 +1 @@ +longrun diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-radarr-config b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-radarr-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-radarr b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-radarr new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/services.d/radarr/run b/root/etc/services.d/radarr/run deleted file mode 100644 index e2d5e7b..0000000 --- a/root/etc/services.d/radarr/run +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/with-contenv bash - -exec \ - s6-setuidgid abc /app/radarr/bin/Radarr \ - -nobrowser -data=/config From bfdccec4c71e3530146b162592343e531f935cb8 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 27 Oct 2022 20:30:16 +0100 Subject: [PATCH 0214/1009] 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 00a9146..8e0819d 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -24,6 +24,6 @@ repo_vars: - CI_DELAY='120' - CI_DOCKERENV='TZ=Europe/London' - CI_AUTH='user:password' - - CI_WEBPATH='' + - CI_WEBPATH='/system/status' sponsor_links: - { name: "Radarr", url: "https://opencollective.com/radarr" } From ca579eaa293f99c030a8f420f1b7007070c05dc5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 23:48:11 -0500 Subject: [PATCH 0215/1009] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a6b7cd6..d7fc40d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { CI_DELAY='120' CI_DOCKERENV='TZ=Europe/London' CI_AUTH='user:password' - CI_WEBPATH='' + CI_WEBPATH='/system/status' } stages { // Setup all the basic environment variables needed for the build From 5ce691335fd81c5bd1a45546b76485ad3001245b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 23:51:19 -0500 Subject: [PATCH 0216/1009] Bot Updating Package Versions --- package_versions.txt | 61 ++++++++++++++++++++++---------------------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 163171b..be55ee5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,43 +1,44 @@ -alpine-baselayout-3.2.0-r18 +alpine-baselayout-3.2.0-r23 +alpine-baselayout-data-3.2.0-r23 alpine-keys-2.4-r1 -apk-tools-2.12.7-r3 -bash-5.1.16-r0 -brotli-libs-1.0.9-r5 -busybox-1.34.1-r7 +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 -coreutils-9.0-r2 -curl-7.80.0-r3 -icu-libs-69.1-r1 +coreutils-9.1-r0 +curl-7.83.1-r3 +gmp-6.2.1-r2 +icu-data-en-71.1-r2 +icu-libs-71.1-r2 jq-1.6-r1 -libacl-2.2.53-r0 +libacl-2.3.1-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1q-r0 -libcurl-7.80.0-r3 -libgcc-10.3.1_git20211027-r0 -libintl-0.21-r0 -libproc-3.3.17-r0 -libretls-3.3.4-r3 +libcurl-7.83.1-r3 +libgcc-11.2.1_git20220219-r2 +libintl-0.21-r2 +libproc-3.3.17-r1 libssl1.1-1.1.1q-r0 -libstdc++-10.3.1_git20211027-r0 +libstdc++-11.2.1_git20220219-r2 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 -nghttp2-libs-1.46.0-r0 -oniguruma-6.9.7.1-r0 -procps-3.3.17-r0 -readline-8.1.1-r0 -s6-ipcserver-2.11.0.0-r0 -scanelf-1.3.3-r0 -shadow-4.8.1-r1 -skalibs-2.11.0.0-r0 -sqlite-libs-3.36.0-r0 -ssl_client-1.34.1-r7 +musl-1.2.3-r0 +musl-utils-1.2.3-r0 +ncurses-libs-6.3_p20220521-r0 +ncurses-terminfo-base-6.3_p20220521-r0 +nghttp2-libs-1.47.0-r0 +oniguruma-6.9.8-r0 +procps-3.3.17-r1 +readline-8.1.2-r0 +scanelf-1.3.4-r0 +shadow-4.10-r3 +skalibs-2.11.2.0-r0 +sqlite-libs-3.38.5-r0 +ssl_client-1.35.0-r17 tzdata-2022c-r0 -utmps-0.1.0.3-r0 +utmps-libs-0.1.2.0-r0 xz-5.2.5-r1 xz-libs-5.2.5-r1 zlib-1.2.12-r3 From 855cd7abb9a945abc4ba74e9f86f67e15ba782a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 31 Oct 2022 11:00:16 -0500 Subject: [PATCH 0217/1009] 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 be55ee5..4ccf928 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ busybox-1.35.0-r17 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 coreutils-9.1-r0 -curl-7.83.1-r3 +curl-7.83.1-r4 gmp-6.2.1-r2 icu-data-en-71.1-r2 icu-libs-71.1-r2 @@ -17,7 +17,7 @@ libacl-2.3.1-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1q-r0 -libcurl-7.83.1-r3 +libcurl-7.83.1-r4 libgcc-11.2.1_git20220219-r2 libintl-0.21-r2 libproc-3.3.17-r1 From 5dc60f2726d92378734bdbd4954871605f9d2045 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Nov 2022 21:51:53 -0500 Subject: [PATCH 0218/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4ccf928..37c9d65 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ libproc-3.3.17-r1 libssl1.1-1.1.1q-r0 libstdc++-11.2.1_git20220219-r2 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 bd3a32947adac4300f933f838b95ed1539ca378e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Nov 2022 03:49:21 +0100 Subject: [PATCH 0219/1009] 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 d822145..d03aed4 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 f932d9be25510063a1236f4ea72e435caccc4fa1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Nov 2022 03:52:39 +0100 Subject: [PATCH 0220/1009] 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 37c9d65..728067f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,16 +16,16 @@ jq-1.6-r1 libacl-2.3.1-r0 libattr-2.5.1-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1q-r0 +libcrypto1.1-1.1.1s-r0 libcurl-7.83.1-r4 libgcc-11.2.1_git20220219-r2 libintl-0.21-r2 libproc-3.3.17-r1 -libssl1.1-1.1.1q-r0 +libssl1.1-1.1.1s-r0 libstdc++-11.2.1_git20220219-r2 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 nghttp2-libs-1.47.0-r0 @@ -37,7 +37,7 @@ shadow-4.10-r3 skalibs-2.11.2.0-r0 sqlite-libs-3.38.5-r0 ssl_client-1.35.0-r17 -tzdata-2022c-r0 +tzdata-2022f-r1 utmps-libs-0.1.2.0-r0 xz-5.2.5-r1 xz-libs-5.2.5-r1 From e1dbb63eff344ff633cea203a2a28c539c3a4de8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Nov 2022 15:59:04 +0000 Subject: [PATCH 0221/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 728067f..1687594 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -25,7 +25,7 @@ libssl1.1-1.1.1s-r0 libstdc++-11.2.1_git20220219-r2 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 nghttp2-libs-1.47.0-r0 From b6d04cdcf7169be879541e07c5b17e3fc2e221ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Nov 2022 16:59:12 -0600 Subject: [PATCH 0222/1009] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d7fc40d..fab54d8 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 d8ab9ca13d7e3baf5d8594d898d5bf8352bf651b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Nov 2022 17:00:42 -0600 Subject: [PATCH 0223/1009] 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 e63e173..0000000 --- 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 20a91fd..0000000 --- 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 b7e01eccf1409e6bef43e3537e84f4eff5c83bfa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Nov 2022 00:02:09 +0100 Subject: [PATCH 0224/1009] 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 0000000..59a10f5 --- /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 0000000..099dcdb --- /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 d03aed4..c96853b 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 2da5290..39b5f90 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 0bed83f..60e3576 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-radarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-radarr/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-radarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-radarr/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-radarr/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 1c761d5..f905d62 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 fa05a13..3637791 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 3b3846e..73dfe45 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 a12ea5060a7fae3b7eaf156cfbd3af886da4ca92 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Mon, 19 Dec 2022 17:31:27 +0000 Subject: [PATCH 0225/1009] 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-radarr-config/run | 3 ++- root/etc/s6-overlay/s6-rc.d/svc-radarr/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 0000000..773767c --- /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 6621372..81aac01 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 @@ -32,8 +34,7 @@ RUN \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ - /tmp/* \ - /var/tmp/* + /tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index c946c3f..874512a 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 @@ -32,8 +34,7 @@ RUN \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ - /tmp/* \ - /var/tmp/* + /tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a9aec30..afe201b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16 +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17 # set version label ARG BUILD_DATE @@ -32,8 +34,7 @@ RUN \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ - /tmp/* \ - /var/tmp/* + /tmp/* # copy local files COPY root/ / diff --git a/README.md b/README.md index d898a72..37e023e 100644 --- a/README.md +++ b/README.md @@ -245,6 +245,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. * **13.12.21:** - Remove unused dependencies. diff --git a/readme-vars.yml b/readme-vars.yml index 64f837f..46eff08 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -56,6 +56,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: "13.12.21:", desc: "Remove unused dependencies." } diff --git a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run index 05c4707..efea851 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-radarr-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-radarr/run b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run index 8d7cbdf..88ca84a 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/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 7878" \ From ef8a97bfc91f618ffaff6a2f57dc1e7b03a17813 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Dec 2022 19:08:37 +0100 Subject: [PATCH 0226/1009] Bot Updating Package Versions --- package_versions.txt | 79 ++++++++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1687594..15b8877 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,44 +1,45 @@ -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 -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 +alpine-release-3.17.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 coreutils-9.1-r0 -curl-7.83.1-r4 -gmp-6.2.1-r2 -icu-data-en-71.1-r2 -icu-libs-71.1-r2 -jq-1.6-r1 -libacl-2.3.1-r0 -libattr-2.5.1-r1 +curl-7.86.0-r1 +icu-data-en-72.1-r1 +icu-libs-72.1-r1 +jq-1.6-r2 +libacl-2.3.1-r1 +libattr-2.5.1-r2 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1s-r0 -libcurl-7.83.1-r4 -libgcc-11.2.1_git20220219-r2 -libintl-0.21-r2 -libproc-3.3.17-r1 -libssl1.1-1.1.1s-r0 -libstdc++-11.2.1_git20220219-r2 -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 -nghttp2-libs-1.47.0-r0 +libcrypto3-3.0.7-r0 +libcurl-7.86.0-r1 +libgcc-12.2.1_git20220924-r4 +libintl-0.21.1-r1 +libproc-3.3.17-r2 +libssl3-3.0.7-r0 +libstdc++-12.2.1_git20220924-r4 +linux-pam-1.5.2-r1 +musl-1.2.3-r4 +musl-utils-1.2.3-r4 +ncurses-libs-6.3_p20221119-r0 +ncurses-terminfo-base-6.3_p20221119-r0 +nghttp2-libs-1.51.0-r0 oniguruma-6.9.8-r0 -procps-3.3.17-r1 -readline-8.1.2-r0 -scanelf-1.3.4-r0 -shadow-4.10-r3 -skalibs-2.11.2.0-r0 -sqlite-libs-3.38.5-r0 -ssl_client-1.35.0-r17 +procps-3.3.17-r2 +readline-8.2.0-r0 +scanelf-1.3.5-r1 +shadow-4.13-r0 +skalibs-2.12.0.1-r0 +sqlite-libs-3.40.0-r0 +ssl_client-1.35.0-r29 tzdata-2022f-r1 -utmps-libs-0.1.2.0-r0 -xz-5.2.5-r1 -xz-libs-5.2.5-r1 -zlib-1.2.12-r3 +utmps-libs-0.1.2.0-r1 +xz-5.2.9-r0 +xz-libs-5.2.9-r0 +zlib-1.2.13-r0 From ea0d6ded9ddf34ec231eee114a35fc5ad5b51480 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Dec 2022 22:57:15 +0100 Subject: [PATCH 0227/1009] 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 15b8877..ceaa61d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ busybox-binsh-1.35.0-r29 ca-certificates-20220614-r3 ca-certificates-bundle-20220614-r3 coreutils-9.1-r0 -curl-7.86.0-r1 +curl-7.87.0-r0 icu-data-en-72.1-r1 icu-libs-72.1-r1 jq-1.6-r2 @@ -18,7 +18,7 @@ libacl-2.3.1-r1 libattr-2.5.1-r2 libc-utils-0.7.2-r3 libcrypto3-3.0.7-r0 -libcurl-7.86.0-r1 +libcurl-7.87.0-r0 libgcc-12.2.1_git20220924-r4 libintl-0.21.1-r1 libproc-3.3.17-r2 From dad405f8804a638bc1b9dc429e0be9d15fc260a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Jan 2023 09:58:44 -0600 Subject: [PATCH 0228/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ceaa61d..8a22d38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ readline-8.2.0-r0 scanelf-1.3.5-r1 shadow-4.13-r0 skalibs-2.12.0.1-r0 -sqlite-libs-3.40.0-r0 +sqlite-libs-3.40.1-r0 ssl_client-1.35.0-r29 tzdata-2022f-r1 utmps-libs-0.1.2.0-r1 From 54011bff8fff23a89faac3b010654208c1515f33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Jan 2023 09:58:59 -0600 Subject: [PATCH 0229/1009] 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 8a22d38..326db13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,14 +1,14 @@ 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 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 +ca-certificates-20220614-r4 +ca-certificates-bundle-20220614-r4 coreutils-9.1-r0 curl-7.87.0-r0 icu-data-en-72.1-r1 @@ -17,12 +17,12 @@ jq-1.6-r2 libacl-2.3.1-r1 libattr-2.5.1-r2 libc-utils-0.7.2-r3 -libcrypto3-3.0.7-r0 +libcrypto3-3.0.7-r2 libcurl-7.87.0-r0 libgcc-12.2.1_git20220924-r4 libintl-0.21.1-r1 libproc-3.3.17-r2 -libssl3-3.0.7-r0 +libssl3-3.0.7-r2 libstdc++-12.2.1_git20220924-r4 linux-pam-1.5.2-r1 musl-1.2.3-r4 From c9b2984ec4489ad2bb6412a733e91ab29758c7da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Jan 2023 12:12:34 -0600 Subject: [PATCH 0230/1009] 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 326db13..ae6c70b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ busybox-binsh-1.35.0-r29 ca-certificates-20220614-r4 ca-certificates-bundle-20220614-r4 coreutils-9.1-r0 -curl-7.87.0-r0 +curl-7.87.0-r1 icu-data-en-72.1-r1 icu-libs-72.1-r1 jq-1.6-r2 @@ -18,7 +18,7 @@ libacl-2.3.1-r1 libattr-2.5.1-r2 libc-utils-0.7.2-r3 libcrypto3-3.0.7-r2 -libcurl-7.87.0-r0 +libcurl-7.87.0-r1 libgcc-12.2.1_git20220924-r4 libintl-0.21.1-r1 libproc-3.3.17-r2 From 38d2a5d5cf6a9576be0eeeff2076956122ff074b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 20:05:48 +0100 Subject: [PATCH 0231/1009] Bot Updating Templated Files --- Jenkinsfile | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fab54d8..2585a94 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-nightly - docker push ${MANIFESTIMAGE}:arm32v7-nightly - docker push ${MANIFESTIMAGE}:arm64v8-nightly 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} @@ -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 9459df46440a107224736f8b72d2926570d515bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 20:07:07 +0100 Subject: [PATCH 0232/1009] 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 a92f7df..5f150f3 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 60e3576..ba84430 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-radarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-radarr/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-radarr/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 0000000..2df6b61 --- /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 37e023e..a757fd2 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 Radarr releases | | develop | ✅ | Radarr releases from their develop branch | | nightly | ✅ | Nightly Radarr releases | - ## Application Setup Access the webui at `<your-ip>:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). @@ -96,7 +95,7 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=Europe/London + - TZ=Etc/UTC volumes: - /path/to/data:/config - /path/to/movies:/movies #optional @@ -113,13 +112,14 @@ docker run -d \ --name=radarr \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ=Europe/London \ + -e TZ=Etc/UTC \ -p 7878:7878 \ -v /path/to/data:/config \ -v /path/to/movies:/movies `#optional` \ -v /path/to/downloadclient-downloads:/downloads `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/radarr:nightly + ``` ## Parameters @@ -131,7 +131,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-p 7878` | The port for the Radarr webinterface | | `-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, this is required for Radarr | +| `-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` | Database and Radarr configs | | `-v /movies` | Location of Movie library on disk (See note in Application setup) | | `-v /downloads` | Location of download managers output directory (See note in Application setup) | From 5b84f3afabdfe44abfd954afdad6ddae1d255684 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Feb 2023 16:59:30 +0100 Subject: [PATCH 0233/1009] 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 ae6c70b..f98cb8a 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 apk-tools-2.12.10-r1 bash-5.2.15-r0 brotli-libs-1.0.9-r9 @@ -17,12 +17,12 @@ jq-1.6-r2 libacl-2.3.1-r1 libattr-2.5.1-r2 libc-utils-0.7.2-r3 -libcrypto3-3.0.7-r2 +libcrypto3-3.0.8-r0 libcurl-7.87.0-r1 libgcc-12.2.1_git20220924-r4 libintl-0.21.1-r1 libproc-3.3.17-r2 -libssl3-3.0.7-r2 +libssl3-3.0.8-r0 libstdc++-12.2.1_git20220924-r4 linux-pam-1.5.2-r1 musl-1.2.3-r4 From cd18356e723e74d384a71c96254fb569ca5e5c2b Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Thu, 23 Feb 2023 15:51:23 +0000 Subject: [PATCH 0234/1009] Use ping endpoint for readiness check. --- root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check | 7 +++++++ root/etc/s6-overlay/s6-rc.d/svc-radarr/run | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check b/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check new file mode 100755 index 0000000..af1540a --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check @@ -0,0 +1,7 @@ +#!/bin/bash + +if [[ $(curl -sL "http://localhost:7878/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-radarr/run b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run index 88ca84a..9737861 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run @@ -2,6 +2,6 @@ # shellcheck shell=bash exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 7878" \ + s6-notifyoncheck -d -n 300 -w 1000 \ cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \ -nobrowser -data=/config From a25dd2470b315263f51031531abee697a281257d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 24 Feb 2023 03:57:21 -0600 Subject: [PATCH 0235/1009] 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 f98cb8a..8d02a5d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ busybox-binsh-1.35.0-r29 ca-certificates-20220614-r4 ca-certificates-bundle-20220614-r4 coreutils-9.1-r0 -curl-7.87.0-r1 +curl-7.87.0-r2 icu-data-en-72.1-r1 icu-libs-72.1-r1 jq-1.6-r2 @@ -18,7 +18,7 @@ libacl-2.3.1-r1 libattr-2.5.1-r2 libc-utils-0.7.2-r3 libcrypto3-3.0.8-r0 -libcurl-7.87.0-r1 +libcurl-7.87.0-r2 libgcc-12.2.1_git20220924-r4 libintl-0.21.1-r1 libproc-3.3.17-r2 From 977e02c24ca6b4124147efb471d2fa11403aef52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Mar 2023 09:59:27 -0600 Subject: [PATCH 0236/1009] Bot Updating Templated Files --- Jenkinsfile | 46 ++++++++++++++++++---------------------------- 1 file changed, 18 insertions(+), 28 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2585a94..0a11497 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-radarr/packages\" \ @@ -455,7 +456,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ - --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-radarr/packages\" \ @@ -485,7 +487,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ - --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-radarr/packages\" \ @@ -512,7 +515,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ - --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-radarr/packages\" \ @@ -546,7 +550,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ - --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 94e83f5bfad8af4d482d8cd74055689d7308b598 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Mar 2023 10:03:18 -0600 Subject: [PATCH 0237/1009] Bot Updating Package Versions --- package_versions.txt | 310 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 265 insertions(+), 45 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8d02a5d..d46818e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,45 +1,265 @@ -alpine-baselayout-3.4.0-r0 -alpine-baselayout-data-3.4.0-r0 -alpine-keys-2.4-r1 -alpine-release-3.17.2-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 -coreutils-9.1-r0 -curl-7.87.0-r2 -icu-data-en-72.1-r1 -icu-libs-72.1-r1 -jq-1.6-r2 -libacl-2.3.1-r1 -libattr-2.5.1-r2 -libc-utils-0.7.2-r3 -libcrypto3-3.0.8-r0 -libcurl-7.87.0-r2 -libgcc-12.2.1_git20220924-r4 -libintl-0.21.1-r1 -libproc-3.3.17-r2 -libssl3-3.0.8-r0 -libstdc++-12.2.1_git20220924-r4 -linux-pam-1.5.2-r1 -musl-1.2.3-r4 -musl-utils-1.2.3-r4 -ncurses-libs-6.3_p20221119-r0 -ncurses-terminfo-base-6.3_p20221119-r0 -nghttp2-libs-1.51.0-r0 -oniguruma-6.9.8-r0 -procps-3.3.17-r2 -readline-8.2.0-r0 -scanelf-1.3.5-r1 -shadow-4.13-r0 -skalibs-2.12.0.1-r0 -sqlite-libs-3.40.1-r0 -ssl_client-1.35.0-r29 -tzdata-2022f-r1 -utmps-libs-0.1.2.0-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.1.0 dotnet +DryIoc.dll 5.3.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 +Instances 1.6.1 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 4.7.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.1 dotnet +NLog.Extensions.Logging 5.0.0 dotnet +NLog.Targets.Syslog 7.0.0 dotnet +Newtonsoft.Json 13.0.2 dotnet +NodaTime 3.0.0 dotnet +Npgsql 5.0.11 dotnet +Npgsql 6.0.3 dotnet +Polly.Contrib.WaitAndRetry 1.1.1 dotnet +Portable.BouncyCastle 1.8.10 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.23.1 dotnet +Servarr.FFMpegCore 4.7.0-26 dotnet +Servarr.FFprobe 5.1.2.106 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 +Swashbuckle.AspNetCore.Swagger 6.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.3.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.Compression 4.3.0 dotnet +System.IO.Compression.ZipFile 4.3.0 dotnet +System.IO.FileSystem 4.3.0 dotnet +System.IO.FileSystem.AccessControl 5.0.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.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 +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 +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 +coreutils 9.1-r0 apk +curl 7.88.1-r0 apk +icu-data-en 72.1-r1 apk +icu-libs 72.1-r1 apk +jq 1.6-r2 apk +libacl 2.3.1-r1 apk +libattr 2.5.1-r2 apk +libbsd 0.11.7-r0 apk +libc-utils 0.7.2-r3 apk +libcrypto3 3.0.8-r0 apk +libcurl 7.88.1-r0 apk +libgcc 12.2.1_git20220924-r4 apk +libintl 0.21.1-r1 apk +libmd 1.0.4-r0 apk +libproc 3.3.17-r2 apk +libssl3 3.0.8-r0 apk +libstdc++ 12.2.1_git20220924-r4 apk +linux-pam 1.5.2-r1 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 +nghttp2-libs 1.51.0-r0 apk +oniguruma 6.9.8-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 +shadow 4.13-r0 apk +skalibs 2.12.0.1-r0 apk +sqlite-libs 3.40.1-r0 apk +ssl_client 1.35.0-r29 apk +tzdata 2022f-r1 apk +utmps-libs 0.1.2.0-r1 apk +xz 5.2.9-r0 apk +xz-libs 5.2.9-r0 apk +zlib 1.2.13-r0 apk From 040354aa482bb8767cca2e593eaa737049a28000 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Mar 2023 02:14:41 +0100 Subject: [PATCH 0238/1009] 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 d46818e..aadc975 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ busybox-binsh 1 ca-certificates 20220614-r4 apk ca-certificates-bundle 20220614-r4 apk coreutils 9.1-r0 apk -curl 7.88.1-r0 apk +curl 7.88.1-r1 apk icu-data-en 72.1-r1 apk icu-libs 72.1-r1 apk jq 1.6-r2 apk @@ -195,7 +195,7 @@ libattr 2 libbsd 0.11.7-r0 apk libc-utils 0.7.2-r3 apk libcrypto3 3.0.8-r0 apk -libcurl 7.88.1-r0 apk +libcurl 7.88.1-r1 apk libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk From adb8d83f95e3a9ea1a56d10c011b2b1e128bf3ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 30 Mar 2023 02:13:52 +0200 Subject: [PATCH 0239/1009] 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 aadc975..dff4b25 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -194,13 +194,13 @@ libacl 2 libattr 2.5.1-r2 apk libbsd 0.11.7-r0 apk libc-utils 0.7.2-r3 apk -libcrypto3 3.0.8-r0 apk +libcrypto3 3.0.8-r1 apk libcurl 7.88.1-r1 apk libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk libproc 3.3.17-r2 apk -libssl3 3.0.8-r0 apk +libssl3 3.0.8-r1 apk libstdc++ 12.2.1_git20220924-r4 apk linux-pam 1.5.2-r1 apk musl 1.2.3-r4 apk @@ -258,7 +258,7 @@ shadow 4 skalibs 2.12.0.1-r0 apk sqlite-libs 3.40.1-r0 apk ssl_client 1.35.0-r29 apk -tzdata 2022f-r1 apk +tzdata 2023b-r1 apk utmps-libs 0.1.2.0-r1 apk xz 5.2.9-r0 apk xz-libs 5.2.9-r0 apk From 1fd35ffaf067c7e63faa09e8b1672617dca6937f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 23:05:00 +0200 Subject: [PATCH 0240/1009] Bot Updating Templated Files --- Jenkinsfile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0a11497..39c5f77 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 e0937f2a4dd5990eefb99c45aa1a14ec4a92ed34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 23:06:33 +0200 Subject: [PATCH 0241/1009] 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 773767c..0000000 --- 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 73dfe45..0000000 --- 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 69b848682774db3aa4ffe54bfe1bf7e487e654e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 16:08:08 -0500 Subject: [PATCH 0242/1009] 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 0000000..87243e2 --- /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 0000000..3f946f9 --- /dev/null +++ b/.github/workflows/call_issues_cron.yml @@ -0,0 +1,13 @@ +name: Mark stale issues and pull requests +on: + schedule: + - cron: '58 22 * * *' + 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 3637791..03aa4b5 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: '53 15 * * 1' + - cron: '49 16 * * 0' workflow_dispatch: jobs: diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml index 2df6b61..1447bc5 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 9a535a3f6ebf81cf6751b76f4c18ffdd5e3ed2fc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Apr 2023 11:57:22 -0500 Subject: [PATCH 0243/1009] 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 dff4b25..fe16d59 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ System.Xml.XDocument 4 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 apk-tools 2.12.10-r1 apk bash 5.2.15-r0 apk brotli-libs 1.0.9-r9 apk @@ -194,13 +194,13 @@ libacl 2 libattr 2.5.1-r2 apk libbsd 0.11.7-r0 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 libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk libproc 3.3.17-r2 apk -libssl3 3.0.8-r1 apk +libssl3 3.0.8-r3 apk libstdc++ 12.2.1_git20220924-r4 apk linux-pam 1.5.2-r1 apk musl 1.2.3-r4 apk @@ -258,7 +258,7 @@ shadow 4 skalibs 2.12.0.1-r0 apk sqlite-libs 3.40.1-r0 apk ssl_client 1.35.0-r29 apk -tzdata 2023b-r1 apk +tzdata 2023c-r0 apk utmps-libs 0.1.2.0-r1 apk xz 5.2.9-r0 apk xz-libs 5.2.9-r0 apk From e34d1b12083886dca3384b53b4ef2346de120a25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Apr 2023 19:48:06 -0500 Subject: [PATCH 0244/1009] 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 fe16d59..d4f02ed 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 @@ -99,7 +99,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 @@ -162,7 +162,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 c4d8a388712022f60a5889b27a1fd9ca77556efb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Apr 2023 19:00:08 +0200 Subject: [PATCH 0245/1009] 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 d4f02ed..3f3102e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ busybox-binsh 1 ca-certificates 20220614-r4 apk ca-certificates-bundle 20220614-r4 apk coreutils 9.1-r0 apk -curl 7.88.1-r1 apk +curl 8.0.1-r0 apk icu-data-en 72.1-r1 apk icu-libs 72.1-r1 apk jq 1.6-r2 apk @@ -195,7 +195,7 @@ libattr 2 libbsd 0.11.7-r0 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 libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk From f2276d18738f980dc7e839832d9e28c9e20390b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Apr 2023 17:34:18 +0000 Subject: [PATCH 0246/1009] 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 3f3102e..e2973f9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -194,13 +194,13 @@ libacl 2 libattr 2.5.1-r2 apk libbsd 0.11.7-r0 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 libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk libproc 3.3.17-r2 apk -libssl3 3.0.8-r3 apk +libssl3 3.0.8-r4 apk libstdc++ 12.2.1_git20220924-r4 apk linux-pam 1.5.2-r1 apk musl 1.2.3-r4 apk From f5f2abff4eb9511760fe8213285e053447142be2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 01:57:22 +0000 Subject: [PATCH 0247/1009] Bot Updating Package Versions --- package_versions.txt | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e2973f9..5559d5f 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.1.0 dotnet -DryIoc.dll 5.3.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 8.6.2 dotnet Ical.Net 4.2.0 dotnet ImpromptuInterface 7.0.1 dotnet Instances 1.6.1 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 4.7.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 @@ -65,7 +64,7 @@ NodaTime 3 Npgsql 5.0.11 dotnet Npgsql 6.0.3 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.23.1 dotnet Servarr.FFMpegCore 4.7.0-26 dotnet @@ -90,11 +89,11 @@ 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 Swashbuckle.AspNetCore.Swagger 6.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.3.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 @@ -108,6 +107,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 @@ -133,7 +133,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.Resources.ResourceManager 4.3.0 dotnet System.Runtime 4.3.0 dotnet System.Runtime.Caching 4.7.0 dotnet @@ -146,11 +146,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 @@ -158,7 +158,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 From 82e2148ff92602185c2f0404aaeac25177a1c96c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Apr 2023 22:49:02 -0500 Subject: [PATCH 0248/1009] Bot Updating Templated Files --- Jenkinsfile | 91 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 85 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 39c5f77..8475a30 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 d678cf05dce9b916456b7cd7d3221de7df40a8d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Apr 2023 22:50:52 -0500 Subject: [PATCH 0249/1009] 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 87243e2..2c30784 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 c96853b..4583754 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_RADARR_NIGHTLY }}" ]; then echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_RADARR_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_RADARR_NIGHTLY\". ****" + echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sL https://radarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux | 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/radarr" 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-radarr/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-radarr/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 39b5f90..ca86cff 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: '51 * * * *' + - cron: '25 * * * *' 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-radarr/${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-radarr/${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-radarr/${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-radarr/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 f905d62..2342978 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_RADARR_NIGHTLY }}" ]; then echo "**** Github secret PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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_RADARR_NIGHTLY\". ****" + echo "Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 03aa4b5..87d5495 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-radarr/${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-radarr/${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-radarr/${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 7bce6165a3ab96c5550fabc042450819c3782fe5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Apr 2023 15:13:45 -0500 Subject: [PATCH 0250/1009] 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 5559d5f..ecbb1ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -90,8 +90,8 @@ Servarr.FluentMigrator.Runner.SqlServer 3 Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet SharpZipLib 1.3.3 dotnet SixLabors.ImageSharp 3.0.1 dotnet -Swashbuckle.AspNetCore.Swagger 6.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.3.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.3.0 dotnet System.Collections 4.3.0 dotnet From f5523f5c11cc7b829638d3e3e0f6e2a0a0f56506 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 May 2023 06:45:08 +0000 Subject: [PATCH 0251/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ecbb1ac..184ea6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ DryIoc.Microsoft.DependencyInjection 6 DryIoc.dll 5.3.4 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 Instances 1.6.1 dotnet From 2195e74e1c8eb1aa17f69e6c6cdff1e14d0c8978 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 May 2023 20:10:33 +0000 Subject: [PATCH 0252/1009] 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 184ea6c..b6f7ba5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -182,8 +182,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 coreutils 9.1-r0 apk curl 8.0.1-r0 apk icu-data-en 72.1-r1 apk From 5015da29138a57c0b7801c80ea3147f5af3abf5f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 May 2023 15:49:06 +0000 Subject: [PATCH 0253/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b6f7ba5..f33e538 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -202,7 +202,7 @@ libproc 3 libssl3 3.0.8-r4 apk libstdc++ 12.2.1_git20220924-r4 apk linux-pam 1.5.2-r1 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 c31f7062157602a3aa4244e1fff81dd78421b445 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 May 2023 16:58:10 +0000 Subject: [PATCH 0254/1009] 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 f33e538..ba129be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -185,7 +185,7 @@ busybox-binsh 1 ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk coreutils 9.1-r0 apk -curl 8.0.1-r0 apk +curl 8.1.0-r1 apk icu-data-en 72.1-r1 apk icu-libs 72.1-r1 apk jq 1.6-r2 apk @@ -194,7 +194,7 @@ libattr 2 libbsd 0.11.7-r0 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 libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk @@ -203,7 +203,7 @@ libssl3 3 libstdc++ 12.2.1_git20220924-r4 apk linux-pam 1.5.2-r1 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 2da0567d88c03b09b6c15ac7e9d4f8c6b7c4b661 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 10:25:11 +0000 Subject: [PATCH 0255/1009] Bot Updating Templated Files --- Jenkinsfile | 121 ++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 71 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8475a30..ed65f69 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/radarr") | .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/radarr") | .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 8a3e1943afd44874012300c30d14f47320d548b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 May 2023 14:11:44 +0000 Subject: [PATCH 0256/1009] 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 ba129be..3706afd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -185,7 +185,7 @@ busybox-binsh 1 ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk coreutils 9.1-r0 apk -curl 8.1.0-r1 apk +curl 8.1.1-r1 apk icu-data-en 72.1-r1 apk icu-libs 72.1-r1 apk jq 1.6-r2 apk @@ -194,7 +194,7 @@ libattr 2 libbsd 0.11.7-r0 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 libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk @@ -204,8 +204,8 @@ libstdc++ 1 linux-pam 1.5.2-r1 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 nghttp2-libs 1.51.0-r0 apk oniguruma 6.9.8-r0 apk From b6967238c6bf603d79a193d9b259c5c654080e71 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Jun 2023 16:58:33 +0000 Subject: [PATCH 0257/1009] 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 3706afd..f8cd26d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -185,7 +185,7 @@ busybox-binsh 1 ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk coreutils 9.1-r0 apk -curl 8.1.1-r1 apk +curl 8.1.2-r0 apk icu-data-en 72.1-r1 apk icu-libs 72.1-r1 apk jq 1.6-r2 apk @@ -193,13 +193,13 @@ libacl 2 libattr 2.5.1-r2 apk libbsd 0.11.7-r0 apk libc-utils 0.7.2-r3 apk -libcrypto3 3.0.8-r4 apk -libcurl 8.1.1-r1 apk +libcrypto3 3.0.9-r1 apk +libcurl 8.1.2-r0 apk libgcc 12.2.1_git20220924-r4 apk libintl 0.21.1-r1 apk libmd 1.0.4-r0 apk libproc 3.3.17-r2 apk -libssl3 3.0.8-r4 apk +libssl3 3.0.9-r1 apk libstdc++ 12.2.1_git20220924-r4 apk linux-pam 1.5.2-r1 apk musl 1.2.3-r5 apk From 974910a4d3fa985353660dc3295275eef027c357 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Jun 2023 12:52:58 +0000 Subject: [PATCH 0258/1009] 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 f8cd26d..cf402e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -56,8 +56,8 @@ 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.1 dotnet -NLog.Extensions.Logging 5.0.0 dotnet +NLog 5.2.0 dotnet +NLog.Extensions.Logging 5.3.0 dotnet NLog.Targets.Syslog 7.0.0 dotnet Newtonsoft.Json 13.0.2 dotnet NodaTime 3.0.0 dotnet From 3474502db249129eec51cfe3514c8e36110781d6 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Tue, 6 Jun 2023 15:07:57 +0100 Subject: [PATCH 0259/1009] Rebase to 3.18 (nightly) --- .github/ISSUE_TEMPLATE/issue.bug.yml | 1 - Dockerfile | 5 +- Dockerfile.aarch64 | 5 +- Dockerfile.armhf | 45 ----------- Jenkinsfile | 78 ++++--------------- README.md | 3 +- jenkins-vars.yml | 1 + readme-vars.yml | 2 +- .../s6-overlay/s6-rc.d/svc-radarr/data/check | 4 +- 9 files changed, 30 insertions(+), 114 deletions(-) delete mode 100644 Dockerfile.armhf diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index 59a10f5..ce3d19a 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 81aac01..39c42e0 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 @@ -17,7 +17,8 @@ RUN \ echo "**** install packages ****" && \ apk add -U --upgrade --no-cache \ icu-libs \ - sqlite-libs && \ + sqlite-libs \ + xmlstarlet && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 874512a..2eccbcb 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 @@ -17,7 +17,8 @@ RUN \ echo "**** install packages ****" && \ apk add -U --upgrade --no-cache \ icu-libs \ - sqlite-libs && \ + sqlite-libs \ + xmlstarlet && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index afe201b..0000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,45 +0,0 @@ -# syntax=docker/dockerfile:1 - -FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17 - -# set version label -ARG BUILD_DATE -ARG VERSION -ARG RADARR_RELEASE -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thespad" - -# environment settings -ARG RADARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg" - -RUN \ - echo "**** install packages ****" && \ - apk add -U --upgrade --no-cache \ - icu-libs \ - sqlite-libs && \ - echo "**** install radarr ****" && \ - mkdir -p /app/radarr/bin && \ - if [ -z ${RADARR_RELEASE+x} ]; then \ - RADARR_RELEASE=$(curl -sL "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/radarr.tar.gz -L \ - "https://radarr.servarr.com/v1/update/${RADARR_BRANCH}/updatefile?version=${RADARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=arm" && \ - tar xzf \ - /tmp/radarr.tar.gz -C \ - /app/radarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/radarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/radarr/bin/Radarr.Update \ - /tmp/* - -# copy local files -COPY root/ / - -# ports and volumes -EXPOSE 7878 - -VOLUME /config diff --git a/Jenkinsfile b/Jenkinsfile index ed65f69..1a399db 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-radarr/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-radarr\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-radarr\" \ - --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=Radarr\" \ - --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ - --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 a757fd2..6c9bb75 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 @@ -245,6 +245,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 8e0819d..d23f739 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,6 +7,7 @@ custom_version_command: curl -sL https://radarr.servarr.com/v1/update/nightly/ch release_type: prerelease release_tag: nightly ls_branch: nightly +build_armhf: false repo_vars: - BUILD_VERSION_ARG = 'RADARR_RELEASE' - LS_USER = 'linuxserver' diff --git a/readme-vars.yml b/readme-vars.yml index 46eff08..a59f10e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -12,7 +12,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 @@ -56,6 +55,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-radarr/data/check b/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check index af1540a..57b08c4 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check @@ -1,6 +1,8 @@ #!/bin/bash -if [[ $(curl -sL "http://localhost:7878/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:-7878}/ping" | jq -r '.status' 2>/dev/null) = "OK" ]]; then exit 0 else exit 1 From 17829c9aa00b15275e7f97854585c5d142692ce7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Jun 2023 20:10:06 +0000 Subject: [PATCH 0260/1009] Bot Updating Package Versions --- package_versions.txt | 534 ++++++++++++++++++++++--------------------- 1 file changed, 270 insertions(+), 264 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cf402e6..d9f31d6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,264 +1,270 @@ -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 -Instances 1.6.1 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 4.7.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.3.0 dotnet -NLog.Targets.Syslog 7.0.0 dotnet -Newtonsoft.Json 13.0.2 dotnet -NodaTime 3.0.0 dotnet -Npgsql 5.0.11 dotnet -Npgsql 6.0.3 dotnet -Polly.Contrib.WaitAndRetry 1.1.1 dotnet -Portable.BouncyCastle 1.9.0 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.23.1 dotnet -Servarr.FFMpegCore 4.7.0-26 dotnet -Servarr.FFprobe 5.1.2.106 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 -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.Compression 4.3.0 dotnet -System.IO.Compression.ZipFile 4.3.0 dotnet -System.IO.FileSystem 4.3.0 dotnet -System.IO.FileSystem.AccessControl 5.0.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.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 -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 -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 -coreutils 9.1-r0 apk -curl 8.1.2-r0 apk -icu-data-en 72.1-r1 apk -icu-libs 72.1-r1 apk -jq 1.6-r2 apk -libacl 2.3.1-r1 apk -libattr 2.5.1-r2 apk -libbsd 0.11.7-r0 apk -libc-utils 0.7.2-r3 apk -libcrypto3 3.0.9-r1 apk -libcurl 8.1.2-r0 apk -libgcc 12.2.1_git20220924-r4 apk -libintl 0.21.1-r1 apk -libmd 1.0.4-r0 apk -libproc 3.3.17-r2 apk -libssl3 3.0.9-r1 apk -libstdc++ 12.2.1_git20220924-r4 apk -linux-pam 1.5.2-r1 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 -nghttp2-libs 1.51.0-r0 apk -oniguruma 6.9.8-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 -shadow 4.13-r0 apk -skalibs 2.12.0.1-r0 apk -sqlite-libs 3.40.1-r0 apk -ssl_client 1.35.0-r29 apk -tzdata 2023c-r0 apk -utmps-libs 0.1.2.0-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 +Instances 1.6.1 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 4.7.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.3.0 dotnet +NLog.Targets.Syslog 7.0.0 dotnet +Newtonsoft.Json 13.0.2 dotnet +NodaTime 3.0.0 dotnet +Npgsql 5.0.11 dotnet +Npgsql 6.0.3 dotnet +Polly.Contrib.WaitAndRetry 1.1.1 dotnet +Portable.BouncyCastle 1.9.0 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.23.1 dotnet +Servarr.FFMpegCore 4.7.0-26 dotnet +Servarr.FFprobe 5.1.2.106 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 +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.Compression 4.3.0 dotnet +System.IO.Compression.ZipFile 4.3.0 dotnet +System.IO.FileSystem 4.3.0 dotnet +System.IO.FileSystem.AccessControl 5.0.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.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 +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 +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 +coreutils 9.3-r1 apk +curl 8.1.2-r0 apk +icu-data-en 73.1-r1 apk +icu-libs 73.1-r1 apk +jq 1.6-r3 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbsd 0.11.7-r1 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.1-r1 apk +libcurl 8.1.2-r0 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgpg-error 1.47-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libproc2 4.0.3-r1 apk +libssl3 3.1.1-r1 apk +libstdc++ 12.2.1_git20220924-r10 apk +libunistring 1.1-r1 apk +libxml2 2.11.4-r0 apk +libxslt 1.1.38-r0 apk +linux-pam 1.5.2-r10 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 +nghttp2-libs 1.53.0-r0 apk +oniguruma 6.9.8-r1 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 +sqlite-libs 3.41.2-r2 apk +ssl_client 1.36.1-r0 apk +tzdata 2023c-r1 apk +utmps-libs 0.1.2.1-r1 apk +xmlstarlet 1.6.1-r2 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 6e3ae9597250b59b27c99b97f698d7b7e614533d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Jun 2023 20:52:59 +0000 Subject: [PATCH 0261/1009] 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 d9f31d6..76506d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ ca-certificates 2 ca-certificates-bundle 20230506-r0 apk coreutils 9.3-r1 apk curl 8.1.2-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 libacl 2.3.1-r3 apk libattr 2.5.1-r4 apk From 1f64e3c9bbb2cacb80e24b093f7c07b6f48c8a24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Jun 2023 09:38:37 +0000 Subject: [PATCH 0262/1009] 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 76506d3..c7bbe25 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ System.Xml.XDocument 4 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 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk @@ -259,7 +259,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 sqlite-libs 3.41.2-r2 apk ssl_client 1.36.1-r0 apk From 6e70758d300b6bdf8c15f631b793b7e9104800c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Jul 2023 09:39:07 +0000 Subject: [PATCH 0263/1009] Bot Updating Templated Files --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1a399db..fe6dda7 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 951b2d798c5c8a0d801a52207557f54e104f1a3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Jul 2023 09:41:43 +0000 Subject: [PATCH 0264/1009] 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 c7bbe25..2fd5b14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ ca-certificates 2 ca-certificates-bundle 20230506-r0 apk coreutils 9.3-r1 apk curl 8.1.2-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 libacl 2.3.1-r3 apk libattr 2.5.1-r4 apk From fb9dc4d8935b6ff0e3f658eccd7923f7a1347026 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Jul 2023 12:52:21 +0000 Subject: [PATCH 0265/1009] 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 2fd5b14..bc92b74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -180,8 +180,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 coreutils 9.3-r1 apk @@ -262,7 +262,7 @@ scanelf 1 shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r0 apk +ssl_client 1.36.1-r1 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk xmlstarlet 1.6.1-r2 apk From 0789a1cd0ccf823bd2af59c7572fb35e37bb6274 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Jul 2023 02:51:55 +0000 Subject: [PATCH 0266/1009] 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 bc92b74..ab9bf33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ ca-certificates 2 ca-certificates-bundle 20230506-r0 apk coreutils 9.3-r1 apk curl 8.1.2-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 libacl 2.3.1-r3 apk libattr 2.5.1-r4 apk From 9ccfe2ebd67d016ae552f373bcc3105dc3ae090d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Jul 2023 03:08:59 +0000 Subject: [PATCH 0267/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ab9bf33..22b3a4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -193,7 +193,7 @@ libacl 2 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk From db78137a54d9259b92f7505d48b9913e0caf9438 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Jul 2023 00:53:16 +0000 Subject: [PATCH 0268/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 22b3a4f..b68488c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -203,7 +203,7 @@ libintl 0 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.3-r1 apk -libssl3 3.1.1-r1 apk +libssl3 3.1.1-r2 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.4-r0 apk From 1af96caf38564b75e3199b625c76fc897a4a25c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Jul 2023 22:14:04 +0000 Subject: [PATCH 0269/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b68488c..82c9270 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -193,7 +193,7 @@ libacl 2 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk From efb2060bd162481cee4307381ab58778944bdf6e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Jul 2023 00:50:22 +0000 Subject: [PATCH 0270/1009] 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 82c9270..5036831 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -185,7 +185,7 @@ busybox-binsh 1 ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk coreutils 9.3-r1 apk -curl 8.1.2-r0 apk +curl 8.2.0-r1 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk jq 1.6-r3 apk @@ -194,7 +194,7 @@ libattr 2 libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk libgpg-error 1.47-r1 apk @@ -203,7 +203,7 @@ libintl 0 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.3-r1 apk -libssl3 3.1.1-r2 apk +libssl3 3.1.1-r3 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.4-r0 apk @@ -213,7 +213,7 @@ musl 1 musl-utils 1.2.4-r0 apk ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk -nghttp2-libs 1.53.0-r0 apk +nghttp2-libs 1.55.1-r0 apk oniguruma 6.9.8-r1 apk procps-ng 4.0.3-r1 apk readline 8.2.1-r1 apk From 44b2c60cf7d6db3ca3ea6e07b212905783375ae1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 07:09:25 +0000 Subject: [PATCH 0271/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5036831..983472d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -209,7 +209,7 @@ libunistring 1 libxml2 2.11.4-r0 apk libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 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 08a3e23ab6691ce71cd12c0c3cd66f89fb108987 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 16:35:19 +0000 Subject: [PATCH 0272/1009] 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 983472d..a75a7d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -180,12 +180,12 @@ 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 coreutils 9.3-r1 apk -curl 8.2.0-r1 apk +curl 8.2.1-r0 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk jq 1.6-r3 apk @@ -194,7 +194,7 @@ libattr 2 libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk libgpg-error 1.47-r1 apk @@ -210,7 +210,7 @@ libxml2 2 libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 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 nghttp2-libs 1.55.1-r0 apk @@ -262,7 +262,7 @@ scanelf 1 shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r1 apk +ssl_client 1.36.1-r2 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk xmlstarlet 1.6.1-r2 apk From 266aaa38f45b5af6b590426ba2ea4e22aa683335 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Aug 2023 09:56:26 +0000 Subject: [PATCH 0273/1009] Bot Updating Package Versions --- package_versions.txt | 696 ++++++++++++++++++++++++++----------------- 1 file changed, 426 insertions(+), 270 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a75a7d5..3087e83 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,270 +1,426 @@ -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 -Instances 1.6.1 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 4.7.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.3.0 dotnet -NLog.Targets.Syslog 7.0.0 dotnet -Newtonsoft.Json 13.0.2 dotnet -NodaTime 3.0.0 dotnet -Npgsql 5.0.11 dotnet -Npgsql 6.0.3 dotnet -Polly.Contrib.WaitAndRetry 1.1.1 dotnet -Portable.BouncyCastle 1.9.0 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.23.1 dotnet -Servarr.FFMpegCore 4.7.0-26 dotnet -Servarr.FFprobe 5.1.2.106 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 -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.Compression 4.3.0 dotnet -System.IO.Compression.ZipFile 4.3.0 dotnet -System.IO.FileSystem 4.3.0 dotnet -System.IO.FileSystem.AccessControl 5.0.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.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 -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 -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 -coreutils 9.3-r1 apk -curl 8.2.1-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r3 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbsd 0.11.7-r1 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.1-r3 apk -libcurl 8.2.1-r0 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgpg-error 1.47-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libproc2 4.0.3-r1 apk -libssl3 3.1.1-r3 apk -libstdc++ 12.2.1_git20220924-r10 apk -libunistring 1.1-r1 apk -libxml2 2.11.4-r0 apk -libxslt 1.1.38-r0 apk -linux-pam 1.5.2-r10 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 -nghttp2-libs 1.55.1-r0 apk -oniguruma 6.9.8-r1 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 -sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r2 apk -tzdata 2023c-r1 apk -utmps-libs 0.1.2.1-r1 apk -xmlstarlet 1.6.1-r2 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 +FFMpegCore 4.0.0.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 +Instances 1.0.0.0 dotnet +Json.NET .NET 6.0 13.0.2.27524 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 6 5.3.0.360 dotnet +Noda Time 3.0.0.0 dotnet +Npgsql 6.0.3.0 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet +Radarr 4.7.4.7746 dotnet +Radarr.Api.V3 4.7.4.7746 dotnet +Radarr.Common 4.7.4.7746 dotnet +Radarr.Core 4.7.4.7746 dotnet +Radarr.Host 4.7.4.7746 dotnet +Radarr.Http 4.7.4.7746 dotnet +Radarr.Mono 4.7.4.7746 dotnet +Radarr.SignalR 4.7.4.7746 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.23.1.0 dotnet +SixLabors.ImageSharp 3.0.1.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.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 +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 +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 +coreutils 9.3-r1 apk +curl 8.2.1-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r3 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbsd 0.11.7-r1 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.1-r3 apk +libcurl 8.2.1-r0 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgpg-error 1.47-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libproc2 4.0.3-r1 apk +libssl3 3.1.1-r3 apk +libstdc++ 12.2.1_git20220924-r10 apk +libunistring 1.1-r1 apk +libxml2 2.11.4-r0 apk +libxslt 1.1.38-r0 apk +linux-pam 1.5.2-r10 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 +nghttp2-libs 1.55.1-r0 apk +oniguruma 6.9.8-r1 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 +sqlite-libs 3.41.2-r2 apk +ssl_client 1.36.1-r2 apk +tzdata 2023c-r1 apk +utmps-libs 0.1.2.1-r1 apk +xmlstarlet 1.6.1-r2 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From d9f3249030ac51aa2c0e2bd85608a0f1fd14e9c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 3 Aug 2023 19:32:38 +0000 Subject: [PATCH 0274/1009] 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 3087e83..1d91880 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.4.7746 dotnet -Radarr.Api.V3 4.7.4.7746 dotnet -Radarr.Common 4.7.4.7746 dotnet -Radarr.Core 4.7.4.7746 dotnet -Radarr.Host 4.7.4.7746 dotnet -Radarr.Http 4.7.4.7746 dotnet -Radarr.Mono 4.7.4.7746 dotnet -Radarr.SignalR 4.7.4.7746 dotnet +Radarr 4.7.4.7748 dotnet +Radarr.Api.V3 4.7.4.7748 dotnet +Radarr.Common 4.7.4.7748 dotnet +Radarr.Core 4.7.4.7748 dotnet +Radarr.Host 4.7.4.7748 dotnet +Radarr.Http 4.7.4.7748 dotnet +Radarr.Mono 4.7.4.7748 dotnet +Radarr.SignalR 4.7.4.7748 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 88cf26d60dbdfce55fab511205071860c6eeccfe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 4 Aug 2023 10:02:15 +0000 Subject: [PATCH 0275/1009] 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 1d91880..a7f31ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.4.7748 dotnet -Radarr.Api.V3 4.7.4.7748 dotnet -Radarr.Common 4.7.4.7748 dotnet -Radarr.Core 4.7.4.7748 dotnet -Radarr.Host 4.7.4.7748 dotnet -Radarr.Http 4.7.4.7748 dotnet -Radarr.Mono 4.7.4.7748 dotnet -Radarr.SignalR 4.7.4.7748 dotnet +Radarr 4.7.4.7756 dotnet +Radarr.Api.V3 4.7.4.7756 dotnet +Radarr.Common 4.7.4.7756 dotnet +Radarr.Core 4.7.4.7756 dotnet +Radarr.Host 4.7.4.7756 dotnet +Radarr.Http 4.7.4.7756 dotnet +Radarr.Mono 4.7.4.7756 dotnet +Radarr.SignalR 4.7.4.7756 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -388,7 +388,7 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk From 74c91df7ec8a0ca99fc2761a780fadb46282ef9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Aug 2023 19:20:10 +0000 Subject: [PATCH 0276/1009] 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 a7f31ae..b0aef53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.4.7756 dotnet -Radarr.Api.V3 4.7.4.7756 dotnet -Radarr.Common 4.7.4.7756 dotnet -Radarr.Core 4.7.4.7756 dotnet -Radarr.Host 4.7.4.7756 dotnet -Radarr.Http 4.7.4.7756 dotnet -Radarr.Mono 4.7.4.7756 dotnet -Radarr.SignalR 4.7.4.7756 dotnet +Radarr 4.7.4.7758 dotnet +Radarr.Api.V3 4.7.4.7758 dotnet +Radarr.Common 4.7.4.7758 dotnet +Radarr.Core 4.7.4.7758 dotnet +Radarr.Host 4.7.4.7758 dotnet +Radarr.Http 4.7.4.7758 dotnet +Radarr.Mono 4.7.4.7758 dotnet +Radarr.SignalR 4.7.4.7758 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -398,7 +398,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.3-r1 apk -libssl3 3.1.1-r3 apk +libssl3 3.1.2-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.4-r0 apk From 6d2f66376388b7e3b0891285a4413a0b99141949 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 6 Aug 2023 17:31:28 +0000 Subject: [PATCH 0277/1009] 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 b0aef53..cda4420 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.4.7758 dotnet -Radarr.Api.V3 4.7.4.7758 dotnet -Radarr.Common 4.7.4.7758 dotnet -Radarr.Core 4.7.4.7758 dotnet -Radarr.Host 4.7.4.7758 dotnet -Radarr.Http 4.7.4.7758 dotnet -Radarr.Mono 4.7.4.7758 dotnet -Radarr.SignalR 4.7.4.7758 dotnet +Radarr 4.7.5.7760 dotnet +Radarr.Api.V3 4.7.5.7760 dotnet +Radarr.Common 4.7.5.7760 dotnet +Radarr.Core 4.7.5.7760 dotnet +Radarr.Host 4.7.5.7760 dotnet +Radarr.Http 4.7.5.7760 dotnet +Radarr.Mono 4.7.5.7760 dotnet +Radarr.SignalR 4.7.5.7760 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 3d1aa1ae5a896351f1d64595d7b35491167e3265 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 03:01:46 +0000 Subject: [PATCH 0278/1009] 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 cda4420..ece58c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7760 dotnet -Radarr.Api.V3 4.7.5.7760 dotnet -Radarr.Common 4.7.5.7760 dotnet -Radarr.Core 4.7.5.7760 dotnet -Radarr.Host 4.7.5.7760 dotnet -Radarr.Http 4.7.5.7760 dotnet -Radarr.Mono 4.7.5.7760 dotnet -Radarr.SignalR 4.7.5.7760 dotnet +Radarr 4.7.5.7764 dotnet +Radarr.Api.V3 4.7.5.7764 dotnet +Radarr.Common 4.7.5.7764 dotnet +Radarr.Core 4.7.5.7764 dotnet +Radarr.Host 4.7.5.7764 dotnet +Radarr.Http 4.7.5.7764 dotnet +Radarr.Mono 4.7.5.7764 dotnet +Radarr.SignalR 4.7.5.7764 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 140fe097cd6ac9afba7b5ff4561662b680687a43 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 03:31:10 +0000 Subject: [PATCH 0279/1009] 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 ece58c9..3ceeb76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7764 dotnet -Radarr.Api.V3 4.7.5.7764 dotnet -Radarr.Common 4.7.5.7764 dotnet -Radarr.Core 4.7.5.7764 dotnet -Radarr.Host 4.7.5.7764 dotnet -Radarr.Http 4.7.5.7764 dotnet -Radarr.Mono 4.7.5.7764 dotnet -Radarr.SignalR 4.7.5.7764 dotnet +Radarr 4.7.5.7765 dotnet +Radarr.Api.V3 4.7.5.7765 dotnet +Radarr.Common 4.7.5.7765 dotnet +Radarr.Core 4.7.5.7765 dotnet +Radarr.Host 4.7.5.7765 dotnet +Radarr.Http 4.7.5.7765 dotnet +Radarr.Mono 4.7.5.7765 dotnet +Radarr.SignalR 4.7.5.7765 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 87b6c54e500ef854d91f5d815e28d3f457b36acf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 9 Aug 2023 08:20:58 +0000 Subject: [PATCH 0280/1009] 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 3ceeb76..5627c91 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7765 dotnet -Radarr.Api.V3 4.7.5.7765 dotnet -Radarr.Common 4.7.5.7765 dotnet -Radarr.Core 4.7.5.7765 dotnet -Radarr.Host 4.7.5.7765 dotnet -Radarr.Http 4.7.5.7765 dotnet -Radarr.Mono 4.7.5.7765 dotnet -Radarr.SignalR 4.7.5.7765 dotnet +Radarr 4.7.5.7770 dotnet +Radarr.Api.V3 4.7.5.7770 dotnet +Radarr.Common 4.7.5.7770 dotnet +Radarr.Core 4.7.5.7770 dotnet +Radarr.Host 4.7.5.7770 dotnet +Radarr.Http 4.7.5.7770 dotnet +Radarr.Mono 4.7.5.7770 dotnet +Radarr.SignalR 4.7.5.7770 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 6e9d0b17f77623462adab14881660baee9c7b290 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 9 Aug 2023 13:46:28 +0000 Subject: [PATCH 0281/1009] 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 5627c91..7f6ed50 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7770 dotnet -Radarr.Api.V3 4.7.5.7770 dotnet -Radarr.Common 4.7.5.7770 dotnet -Radarr.Core 4.7.5.7770 dotnet -Radarr.Host 4.7.5.7770 dotnet -Radarr.Http 4.7.5.7770 dotnet -Radarr.Mono 4.7.5.7770 dotnet -Radarr.SignalR 4.7.5.7770 dotnet +Radarr 4.7.5.7772 dotnet +Radarr.Api.V3 4.7.5.7772 dotnet +Radarr.Common 4.7.5.7772 dotnet +Radarr.Core 4.7.5.7772 dotnet +Radarr.Host 4.7.5.7772 dotnet +Radarr.Http 4.7.5.7772 dotnet +Radarr.Mono 4.7.5.7772 dotnet +Radarr.SignalR 4.7.5.7772 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 6280d6e4c57329c99f67ca560ed1f55084423a91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 9 Aug 2023 16:14:03 +0000 Subject: [PATCH 0282/1009] 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 7f6ed50..5028947 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7772 dotnet -Radarr.Api.V3 4.7.5.7772 dotnet -Radarr.Common 4.7.5.7772 dotnet -Radarr.Core 4.7.5.7772 dotnet -Radarr.Host 4.7.5.7772 dotnet -Radarr.Http 4.7.5.7772 dotnet -Radarr.Mono 4.7.5.7772 dotnet -Radarr.SignalR 4.7.5.7772 dotnet +Radarr 4.7.5.7775 dotnet +Radarr.Api.V3 4.7.5.7775 dotnet +Radarr.Common 4.7.5.7775 dotnet +Radarr.Core 4.7.5.7775 dotnet +Radarr.Host 4.7.5.7775 dotnet +Radarr.Http 4.7.5.7775 dotnet +Radarr.Mono 4.7.5.7775 dotnet +Radarr.SignalR 4.7.5.7775 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From ca64d4b3e377316de1711ceead7e8cbce1387c57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Aug 2023 10:37:42 +0000 Subject: [PATCH 0283/1009] 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 5028947..c25d489 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 6.0.3.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7775 dotnet -Radarr.Api.V3 4.7.5.7775 dotnet -Radarr.Common 4.7.5.7775 dotnet -Radarr.Core 4.7.5.7775 dotnet -Radarr.Host 4.7.5.7775 dotnet -Radarr.Http 4.7.5.7775 dotnet -Radarr.Mono 4.7.5.7775 dotnet -Radarr.SignalR 4.7.5.7775 dotnet +Radarr 4.7.5.7782 dotnet +Radarr.Api.V3 4.7.5.7782 dotnet +Radarr.Common 4.7.5.7782 dotnet +Radarr.Core 4.7.5.7782 dotnet +Radarr.Host 4.7.5.7782 dotnet +Radarr.Http 4.7.5.7782 dotnet +Radarr.Mono 4.7.5.7782 dotnet +Radarr.SignalR 4.7.5.7782 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 3043f8622796f76946388ebcf3292d5c679704ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Aug 2023 16:17:29 +0000 Subject: [PATCH 0284/1009] 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 c25d489..2354451 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,16 +181,16 @@ NLog Syslog target 7.0.0.0 NLog for NetStandard 2.0 5.2.0.1813 dotnet NLog.Extensions.Logging for .NET 6 5.3.0.360 dotnet Noda Time 3.0.0.0 dotnet -Npgsql 6.0.3.0 dotnet +Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7782 dotnet -Radarr.Api.V3 4.7.5.7782 dotnet -Radarr.Common 4.7.5.7782 dotnet -Radarr.Core 4.7.5.7782 dotnet -Radarr.Host 4.7.5.7782 dotnet -Radarr.Http 4.7.5.7782 dotnet -Radarr.Mono 4.7.5.7782 dotnet -Radarr.SignalR 4.7.5.7782 dotnet +Radarr 4.7.5.7786 dotnet +Radarr.Api.V3 4.7.5.7786 dotnet +Radarr.Common 4.7.5.7786 dotnet +Radarr.Core 4.7.5.7786 dotnet +Radarr.Host 4.7.5.7786 dotnet +Radarr.Http 4.7.5.7786 dotnet +Radarr.Mono 4.7.5.7786 dotnet +Radarr.SignalR 4.7.5.7786 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From be9cfb57605cd08dc6cbe85ec8a0b4ee9256ef5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 11 Aug 2023 22:44:39 +0000 Subject: [PATCH 0285/1009] 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 2354451..bc57ffd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7786 dotnet -Radarr.Api.V3 4.7.5.7786 dotnet -Radarr.Common 4.7.5.7786 dotnet -Radarr.Core 4.7.5.7786 dotnet -Radarr.Host 4.7.5.7786 dotnet -Radarr.Http 4.7.5.7786 dotnet -Radarr.Mono 4.7.5.7786 dotnet -Radarr.SignalR 4.7.5.7786 dotnet +Radarr 4.7.5.7787 dotnet +Radarr.Api.V3 4.7.5.7787 dotnet +Radarr.Common 4.7.5.7787 dotnet +Radarr.Core 4.7.5.7787 dotnet +Radarr.Host 4.7.5.7787 dotnet +Radarr.Http 4.7.5.7787 dotnet +Radarr.Mono 4.7.5.7787 dotnet +Radarr.SignalR 4.7.5.7787 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 0536c6db62a0fc6dbbcec0b08d601cfd4e322e5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 12 Aug 2023 01:49:29 +0000 Subject: [PATCH 0286/1009] 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 bc57ffd..8f40961 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7787 dotnet -Radarr.Api.V3 4.7.5.7787 dotnet -Radarr.Common 4.7.5.7787 dotnet -Radarr.Core 4.7.5.7787 dotnet -Radarr.Host 4.7.5.7787 dotnet -Radarr.Http 4.7.5.7787 dotnet -Radarr.Mono 4.7.5.7787 dotnet -Radarr.SignalR 4.7.5.7787 dotnet +Radarr 4.7.5.7791 dotnet +Radarr.Api.V3 4.7.5.7791 dotnet +Radarr.Common 4.7.5.7791 dotnet +Radarr.Core 4.7.5.7791 dotnet +Radarr.Host 4.7.5.7791 dotnet +Radarr.Http 4.7.5.7791 dotnet +Radarr.Mono 4.7.5.7791 dotnet +Radarr.SignalR 4.7.5.7791 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 56855b429ed5e6b37ac3e567198fe2d497db004b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 12 Aug 2023 02:31:16 +0000 Subject: [PATCH 0287/1009] 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 8f40961..cd25a89 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7791 dotnet -Radarr.Api.V3 4.7.5.7791 dotnet -Radarr.Common 4.7.5.7791 dotnet -Radarr.Core 4.7.5.7791 dotnet -Radarr.Host 4.7.5.7791 dotnet -Radarr.Http 4.7.5.7791 dotnet -Radarr.Mono 4.7.5.7791 dotnet -Radarr.SignalR 4.7.5.7791 dotnet +Radarr 4.7.5.7793 dotnet +Radarr.Api.V3 4.7.5.7793 dotnet +Radarr.Common 4.7.5.7793 dotnet +Radarr.Core 4.7.5.7793 dotnet +Radarr.Host 4.7.5.7793 dotnet +Radarr.Http 4.7.5.7793 dotnet +Radarr.Mono 4.7.5.7793 dotnet +Radarr.SignalR 4.7.5.7793 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From a54ccfc48b74a6403da62e2356151274f3a59d47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 13 Aug 2023 02:30:53 +0000 Subject: [PATCH 0288/1009] 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 cd25a89..6e6aedc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7793 dotnet -Radarr.Api.V3 4.7.5.7793 dotnet -Radarr.Common 4.7.5.7793 dotnet -Radarr.Core 4.7.5.7793 dotnet -Radarr.Host 4.7.5.7793 dotnet -Radarr.Http 4.7.5.7793 dotnet -Radarr.Mono 4.7.5.7793 dotnet -Radarr.SignalR 4.7.5.7793 dotnet +Radarr 4.7.5.7806 dotnet +Radarr.Api.V3 4.7.5.7806 dotnet +Radarr.Common 4.7.5.7806 dotnet +Radarr.Core 4.7.5.7806 dotnet +Radarr.Host 4.7.5.7806 dotnet +Radarr.Http 4.7.5.7806 dotnet +Radarr.Mono 4.7.5.7806 dotnet +Radarr.SignalR 4.7.5.7806 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -370,7 +370,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 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk From ec794ea50901bac42ab66d135cf90b544dc27da5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 13 Aug 2023 18:54:09 +0000 Subject: [PATCH 0289/1009] 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 6e6aedc..eda4e6e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7806 dotnet -Radarr.Api.V3 4.7.5.7806 dotnet -Radarr.Common 4.7.5.7806 dotnet -Radarr.Core 4.7.5.7806 dotnet -Radarr.Host 4.7.5.7806 dotnet -Radarr.Http 4.7.5.7806 dotnet -Radarr.Mono 4.7.5.7806 dotnet -Radarr.SignalR 4.7.5.7806 dotnet +Radarr 4.7.5.7812 dotnet +Radarr.Api.V3 4.7.5.7812 dotnet +Radarr.Common 4.7.5.7812 dotnet +Radarr.Core 4.7.5.7812 dotnet +Radarr.Host 4.7.5.7812 dotnet +Radarr.Http 4.7.5.7812 dotnet +Radarr.Mono 4.7.5.7812 dotnet +Radarr.SignalR 4.7.5.7812 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 5bcf8655bf68143f6e24096611d63a19b78da666 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Aug 2023 00:05:03 +0000 Subject: [PATCH 0290/1009] 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 eda4e6e..44dd6f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7812 dotnet -Radarr.Api.V3 4.7.5.7812 dotnet -Radarr.Common 4.7.5.7812 dotnet -Radarr.Core 4.7.5.7812 dotnet -Radarr.Host 4.7.5.7812 dotnet -Radarr.Http 4.7.5.7812 dotnet -Radarr.Mono 4.7.5.7812 dotnet -Radarr.SignalR 4.7.5.7812 dotnet +Radarr 4.7.5.7817 dotnet +Radarr.Api.V3 4.7.5.7817 dotnet +Radarr.Common 4.7.5.7817 dotnet +Radarr.Core 4.7.5.7817 dotnet +Radarr.Host 4.7.5.7817 dotnet +Radarr.Http 4.7.5.7817 dotnet +Radarr.Mono 4.7.5.7817 dotnet +Radarr.SignalR 4.7.5.7817 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 9261290edc9eca1f33b1def4926979e66d6a0279 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Aug 2023 19:47:52 +0000 Subject: [PATCH 0291/1009] 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 44dd6f0..8774620 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7817 dotnet -Radarr.Api.V3 4.7.5.7817 dotnet -Radarr.Common 4.7.5.7817 dotnet -Radarr.Core 4.7.5.7817 dotnet -Radarr.Host 4.7.5.7817 dotnet -Radarr.Http 4.7.5.7817 dotnet -Radarr.Mono 4.7.5.7817 dotnet -Radarr.SignalR 4.7.5.7817 dotnet +Radarr 4.7.5.7821 dotnet +Radarr.Api.V3 4.7.5.7821 dotnet +Radarr.Common 4.7.5.7821 dotnet +Radarr.Core 4.7.5.7821 dotnet +Radarr.Host 4.7.5.7821 dotnet +Radarr.Http 4.7.5.7821 dotnet +Radarr.Mono 4.7.5.7821 dotnet +Radarr.SignalR 4.7.5.7821 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -374,7 +374,6 @@ alpine-release 3.18.3-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 542ea83e3eb94451653a1d9ee87ac9215d60eb0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Aug 2023 15:15:37 +0000 Subject: [PATCH 0292/1009] 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 8774620..b06e5f5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.0.360 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 4.7.5.7821 dotnet -Radarr.Api.V3 4.7.5.7821 dotnet -Radarr.Common 4.7.5.7821 dotnet -Radarr.Core 4.7.5.7821 dotnet -Radarr.Host 4.7.5.7821 dotnet -Radarr.Http 4.7.5.7821 dotnet -Radarr.Mono 4.7.5.7821 dotnet -Radarr.SignalR 4.7.5.7821 dotnet +Radarr 5.0.0.7836 dotnet +Radarr.Api.V3 5.0.0.7836 dotnet +Radarr.Common 5.0.0.7836 dotnet +Radarr.Core 5.0.0.7836 dotnet +Radarr.Host 5.0.0.7836 dotnet +Radarr.Http 5.0.0.7836 dotnet +Radarr.Mono 5.0.0.7836 dotnet +Radarr.SignalR 5.0.0.7836 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -217,7 +217,7 @@ System.Core 6.0.1623.17311 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.SQLite Core 1.0.118.0 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 From 0b391397020f0e8bec78eee682400a25fade149a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 02:38:45 +0000 Subject: [PATCH 0293/1009] 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 b06e5f5..6cf17ab 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 +Dapper 2.0.143.55328 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 FFMpegCore 4.0.0.0 dotnet @@ -30,7 +30,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Instances 1.0.0.0 dotnet -Json.NET .NET 6.0 13.0.2.27524 dotnet +Json.NET .NET 6.0 13.0.3.27908 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -128,7 +128,7 @@ Microsoft.Extensions.Configuration.KeyPerFile 6.0.1623.17406 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.DependencyInjection.Abstractions 7.0.22.51805 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 @@ -139,7 +139,7 @@ Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 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.1623.17406 dotnet Microsoft.Extensions.Identity.Stores 6.0.1623.17406 dotnet @@ -178,19 +178,19 @@ Mono.Nat 3.0.1 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 6 5.3.0.360 dotnet +NLog for NetStandard 2.0 5.2.3.1999 dotnet +NLog.Extensions.Logging for .NET 6 5.3.3.381 dotnet Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7836 dotnet -Radarr.Api.V3 5.0.0.7836 dotnet -Radarr.Common 5.0.0.7836 dotnet -Radarr.Core 5.0.0.7836 dotnet -Radarr.Host 5.0.0.7836 dotnet -Radarr.Http 5.0.0.7836 dotnet -Radarr.Mono 5.0.0.7836 dotnet -Radarr.SignalR 5.0.0.7836 dotnet +Radarr 5.0.0.7844 dotnet +Radarr.Api.V3 5.0.0.7844 dotnet +Radarr.Common 5.0.0.7844 dotnet +Radarr.Core 5.0.0.7844 dotnet +Radarr.Host 5.0.0.7844 dotnet +Radarr.Http 5.0.0.7844 dotnet +Radarr.Mono 5.0.0.7844 dotnet +Radarr.SignalR 5.0.0.7844 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -333,7 +333,7 @@ System.Security.Principal.Windows 6.0.1623.17311 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.ServiceProcess.ServiceController 6.0.1823.26907 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 From 5a77ce81a67bf83569bac9027ea6acdbd23282dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 03:12:15 +0000 Subject: [PATCH 0294/1009] 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 6cf17ab..4a5f84d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7844 dotnet -Radarr.Api.V3 5.0.0.7844 dotnet -Radarr.Common 5.0.0.7844 dotnet -Radarr.Core 5.0.0.7844 dotnet -Radarr.Host 5.0.0.7844 dotnet -Radarr.Http 5.0.0.7844 dotnet -Radarr.Mono 5.0.0.7844 dotnet -Radarr.SignalR 5.0.0.7844 dotnet +Radarr 5.0.0.7845 dotnet +Radarr.Api.V3 5.0.0.7845 dotnet +Radarr.Common 5.0.0.7845 dotnet +Radarr.Core 5.0.0.7845 dotnet +Radarr.Host 5.0.0.7845 dotnet +Radarr.Http 5.0.0.7845 dotnet +Radarr.Mono 5.0.0.7845 dotnet +Radarr.SignalR 5.0.0.7845 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 532380c92ebaad1c9ba63bf97c07298b9711093f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 12:01:39 +0000 Subject: [PATCH 0295/1009] 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 4a5f84d..9dd25fa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7845 dotnet -Radarr.Api.V3 5.0.0.7845 dotnet -Radarr.Common 5.0.0.7845 dotnet -Radarr.Core 5.0.0.7845 dotnet -Radarr.Host 5.0.0.7845 dotnet -Radarr.Http 5.0.0.7845 dotnet -Radarr.Mono 5.0.0.7845 dotnet -Radarr.SignalR 5.0.0.7845 dotnet +Radarr 5.0.0.7846 dotnet +Radarr.Api.V3 5.0.0.7846 dotnet +Radarr.Common 5.0.0.7846 dotnet +Radarr.Core 5.0.0.7846 dotnet +Radarr.Host 5.0.0.7846 dotnet +Radarr.Http 5.0.0.7846 dotnet +Radarr.Mono 5.0.0.7846 dotnet +Radarr.SignalR 5.0.0.7846 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 020f83388e494b57bdbdd06b28cdac467a3c818b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 20:25:57 +0000 Subject: [PATCH 0296/1009] 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 9dd25fa..748936e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7846 dotnet -Radarr.Api.V3 5.0.0.7846 dotnet -Radarr.Common 5.0.0.7846 dotnet -Radarr.Core 5.0.0.7846 dotnet -Radarr.Host 5.0.0.7846 dotnet -Radarr.Http 5.0.0.7846 dotnet -Radarr.Mono 5.0.0.7846 dotnet -Radarr.SignalR 5.0.0.7846 dotnet +Radarr 5.0.0.7849 dotnet +Radarr.Api.V3 5.0.0.7849 dotnet +Radarr.Common 5.0.0.7849 dotnet +Radarr.Core 5.0.0.7849 dotnet +Radarr.Host 5.0.0.7849 dotnet +Radarr.Http 5.0.0.7849 dotnet +Radarr.Mono 5.0.0.7849 dotnet +Radarr.SignalR 5.0.0.7849 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 3635fae380c831d375fddf306d46e37538c439cf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 21:59:53 +0000 Subject: [PATCH 0297/1009] 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 748936e..b76b8de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7849 dotnet -Radarr.Api.V3 5.0.0.7849 dotnet -Radarr.Common 5.0.0.7849 dotnet -Radarr.Core 5.0.0.7849 dotnet -Radarr.Host 5.0.0.7849 dotnet -Radarr.Http 5.0.0.7849 dotnet -Radarr.Mono 5.0.0.7849 dotnet -Radarr.SignalR 5.0.0.7849 dotnet +Radarr 5.0.0.7851 dotnet +Radarr.Api.V3 5.0.0.7851 dotnet +Radarr.Common 5.0.0.7851 dotnet +Radarr.Core 5.0.0.7851 dotnet +Radarr.Host 5.0.0.7851 dotnet +Radarr.Http 5.0.0.7851 dotnet +Radarr.Mono 5.0.0.7851 dotnet +Radarr.SignalR 5.0.0.7851 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 0fa82a88a198ace3f796474aa746860d15010717 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Aug 2023 04:14:49 +0000 Subject: [PATCH 0298/1009] 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 b76b8de..5f219de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7851 dotnet -Radarr.Api.V3 5.0.0.7851 dotnet -Radarr.Common 5.0.0.7851 dotnet -Radarr.Core 5.0.0.7851 dotnet -Radarr.Host 5.0.0.7851 dotnet -Radarr.Http 5.0.0.7851 dotnet -Radarr.Mono 5.0.0.7851 dotnet -Radarr.SignalR 5.0.0.7851 dotnet +Radarr 5.0.0.7858 dotnet +Radarr.Api.V3 5.0.0.7858 dotnet +Radarr.Common 5.0.0.7858 dotnet +Radarr.Core 5.0.0.7858 dotnet +Radarr.Host 5.0.0.7858 dotnet +Radarr.Http 5.0.0.7858 dotnet +Radarr.Mono 5.0.0.7858 dotnet +Radarr.SignalR 5.0.0.7858 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 4640eeb7fabb379f8172840d07ccc10be22f2e1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Aug 2023 08:29:30 +0000 Subject: [PATCH 0299/1009] 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 5f219de..185f387 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7858 dotnet -Radarr.Api.V3 5.0.0.7858 dotnet -Radarr.Common 5.0.0.7858 dotnet -Radarr.Core 5.0.0.7858 dotnet -Radarr.Host 5.0.0.7858 dotnet -Radarr.Http 5.0.0.7858 dotnet -Radarr.Mono 5.0.0.7858 dotnet -Radarr.SignalR 5.0.0.7858 dotnet +Radarr 5.0.0.7862 dotnet +Radarr.Api.V3 5.0.0.7862 dotnet +Radarr.Common 5.0.0.7862 dotnet +Radarr.Core 5.0.0.7862 dotnet +Radarr.Host 5.0.0.7862 dotnet +Radarr.Http 5.0.0.7862 dotnet +Radarr.Mono 5.0.0.7862 dotnet +Radarr.SignalR 5.0.0.7862 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 4cc179143ec896b04933810b41cc23821548e3a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Aug 2023 16:02:02 +0000 Subject: [PATCH 0300/1009] 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 185f387..ca152e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7862 dotnet -Radarr.Api.V3 5.0.0.7862 dotnet -Radarr.Common 5.0.0.7862 dotnet -Radarr.Core 5.0.0.7862 dotnet -Radarr.Host 5.0.0.7862 dotnet -Radarr.Http 5.0.0.7862 dotnet -Radarr.Mono 5.0.0.7862 dotnet -Radarr.SignalR 5.0.0.7862 dotnet +Radarr 5.0.0.7866 dotnet +Radarr.Api.V3 5.0.0.7866 dotnet +Radarr.Common 5.0.0.7866 dotnet +Radarr.Core 5.0.0.7866 dotnet +Radarr.Host 5.0.0.7866 dotnet +Radarr.Http 5.0.0.7866 dotnet +Radarr.Mono 5.0.0.7866 dotnet +Radarr.SignalR 5.0.0.7866 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From f73e8b5e03ab29e06ae8b7e18c7f01f258123d25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 03:09:25 +0000 Subject: [PATCH 0301/1009] 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 ca152e6..fd46925 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7866 dotnet -Radarr.Api.V3 5.0.0.7866 dotnet -Radarr.Common 5.0.0.7866 dotnet -Radarr.Core 5.0.0.7866 dotnet -Radarr.Host 5.0.0.7866 dotnet -Radarr.Http 5.0.0.7866 dotnet -Radarr.Mono 5.0.0.7866 dotnet -Radarr.SignalR 5.0.0.7866 dotnet +Radarr 5.0.0.7872 dotnet +Radarr.Api.V3 5.0.0.7872 dotnet +Radarr.Common 5.0.0.7872 dotnet +Radarr.Core 5.0.0.7872 dotnet +Radarr.Host 5.0.0.7872 dotnet +Radarr.Http 5.0.0.7872 dotnet +Radarr.Mono 5.0.0.7872 dotnet +Radarr.SignalR 5.0.0.7872 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 212e1702fc8eed30ea626764054d20a044a527ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 03:31:13 +0000 Subject: [PATCH 0302/1009] 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 fd46925..a733576 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7872 dotnet -Radarr.Api.V3 5.0.0.7872 dotnet -Radarr.Common 5.0.0.7872 dotnet -Radarr.Core 5.0.0.7872 dotnet -Radarr.Host 5.0.0.7872 dotnet -Radarr.Http 5.0.0.7872 dotnet -Radarr.Mono 5.0.0.7872 dotnet -Radarr.SignalR 5.0.0.7872 dotnet +Radarr 5.0.0.7874 dotnet +Radarr.Api.V3 5.0.0.7874 dotnet +Radarr.Common 5.0.0.7874 dotnet +Radarr.Core 5.0.0.7874 dotnet +Radarr.Host 5.0.0.7874 dotnet +Radarr.Http 5.0.0.7874 dotnet +Radarr.Mono 5.0.0.7874 dotnet +Radarr.SignalR 5.0.0.7874 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 08f95d729dd39130b6bf5320e50444d433d7accc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 05:06:33 +0000 Subject: [PATCH 0303/1009] 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 a733576..8559f27 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7874 dotnet -Radarr.Api.V3 5.0.0.7874 dotnet -Radarr.Common 5.0.0.7874 dotnet -Radarr.Core 5.0.0.7874 dotnet -Radarr.Host 5.0.0.7874 dotnet -Radarr.Http 5.0.0.7874 dotnet -Radarr.Mono 5.0.0.7874 dotnet -Radarr.SignalR 5.0.0.7874 dotnet +Radarr 5.0.0.7875 dotnet +Radarr.Api.V3 5.0.0.7875 dotnet +Radarr.Common 5.0.0.7875 dotnet +Radarr.Core 5.0.0.7875 dotnet +Radarr.Host 5.0.0.7875 dotnet +Radarr.Http 5.0.0.7875 dotnet +Radarr.Mono 5.0.0.7875 dotnet +Radarr.SignalR 5.0.0.7875 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From d015d5dfea07acd96926a79ae59528b12541fc65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 10:16:04 +0000 Subject: [PATCH 0304/1009] 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 8559f27..dc6f699 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7875 dotnet -Radarr.Api.V3 5.0.0.7875 dotnet -Radarr.Common 5.0.0.7875 dotnet -Radarr.Core 5.0.0.7875 dotnet -Radarr.Host 5.0.0.7875 dotnet -Radarr.Http 5.0.0.7875 dotnet -Radarr.Mono 5.0.0.7875 dotnet -Radarr.SignalR 5.0.0.7875 dotnet +Radarr 5.0.0.7881 dotnet +Radarr.Api.V3 5.0.0.7881 dotnet +Radarr.Common 5.0.0.7881 dotnet +Radarr.Core 5.0.0.7881 dotnet +Radarr.Host 5.0.0.7881 dotnet +Radarr.Http 5.0.0.7881 dotnet +Radarr.Mono 5.0.0.7881 dotnet +Radarr.SignalR 5.0.0.7881 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 1bb0de77ab33821e5c3afd53d752cb854238803f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 10:54:39 +0000 Subject: [PATCH 0305/1009] 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 dc6f699..e99048d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7881 dotnet -Radarr.Api.V3 5.0.0.7881 dotnet -Radarr.Common 5.0.0.7881 dotnet -Radarr.Core 5.0.0.7881 dotnet -Radarr.Host 5.0.0.7881 dotnet -Radarr.Http 5.0.0.7881 dotnet -Radarr.Mono 5.0.0.7881 dotnet -Radarr.SignalR 5.0.0.7881 dotnet +Radarr 5.0.0.7883 dotnet +Radarr.Api.V3 5.0.0.7883 dotnet +Radarr.Common 5.0.0.7883 dotnet +Radarr.Core 5.0.0.7883 dotnet +Radarr.Host 5.0.0.7883 dotnet +Radarr.Http 5.0.0.7883 dotnet +Radarr.Mono 5.0.0.7883 dotnet +Radarr.SignalR 5.0.0.7883 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 254d0bc8274098d02bb538aee56e238e41c3f500 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 11:26:30 +0000 Subject: [PATCH 0306/1009] 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 e99048d..d5bb7ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7883 dotnet -Radarr.Api.V3 5.0.0.7883 dotnet -Radarr.Common 5.0.0.7883 dotnet -Radarr.Core 5.0.0.7883 dotnet -Radarr.Host 5.0.0.7883 dotnet -Radarr.Http 5.0.0.7883 dotnet -Radarr.Mono 5.0.0.7883 dotnet -Radarr.SignalR 5.0.0.7883 dotnet +Radarr 5.0.0.7884 dotnet +Radarr.Api.V3 5.0.0.7884 dotnet +Radarr.Common 5.0.0.7884 dotnet +Radarr.Core 5.0.0.7884 dotnet +Radarr.Host 5.0.0.7884 dotnet +Radarr.Http 5.0.0.7884 dotnet +Radarr.Mono 5.0.0.7884 dotnet +Radarr.SignalR 5.0.0.7884 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 99e80d455e29143a1b4895482fac13d772ddd043 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 14:50:32 +0000 Subject: [PATCH 0307/1009] 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 d5bb7ea..159493a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7884 dotnet -Radarr.Api.V3 5.0.0.7884 dotnet -Radarr.Common 5.0.0.7884 dotnet -Radarr.Core 5.0.0.7884 dotnet -Radarr.Host 5.0.0.7884 dotnet -Radarr.Http 5.0.0.7884 dotnet -Radarr.Mono 5.0.0.7884 dotnet -Radarr.SignalR 5.0.0.7884 dotnet +Radarr 5.0.0.7887 dotnet +Radarr.Api.V3 5.0.0.7887 dotnet +Radarr.Common 5.0.0.7887 dotnet +Radarr.Core 5.0.0.7887 dotnet +Radarr.Host 5.0.0.7887 dotnet +Radarr.Http 5.0.0.7887 dotnet +Radarr.Mono 5.0.0.7887 dotnet +Radarr.SignalR 5.0.0.7887 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 82d088adb0b4b21f8c21bb4cd4e0fa3222e5e48c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 21:17:07 +0000 Subject: [PATCH 0308/1009] 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 159493a..82c7faf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7887 dotnet -Radarr.Api.V3 5.0.0.7887 dotnet -Radarr.Common 5.0.0.7887 dotnet -Radarr.Core 5.0.0.7887 dotnet -Radarr.Host 5.0.0.7887 dotnet -Radarr.Http 5.0.0.7887 dotnet -Radarr.Mono 5.0.0.7887 dotnet -Radarr.SignalR 5.0.0.7887 dotnet +Radarr 5.0.0.7889 dotnet +Radarr.Api.V3 5.0.0.7889 dotnet +Radarr.Common 5.0.0.7889 dotnet +Radarr.Core 5.0.0.7889 dotnet +Radarr.Host 5.0.0.7889 dotnet +Radarr.Http 5.0.0.7889 dotnet +Radarr.Mono 5.0.0.7889 dotnet +Radarr.SignalR 5.0.0.7889 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From e5dc97049e059107b36429b62ce5a6f8c2f14743 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 10:42:42 +0000 Subject: [PATCH 0309/1009] 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 82c7faf..f730aed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7889 dotnet -Radarr.Api.V3 5.0.0.7889 dotnet -Radarr.Common 5.0.0.7889 dotnet -Radarr.Core 5.0.0.7889 dotnet -Radarr.Host 5.0.0.7889 dotnet -Radarr.Http 5.0.0.7889 dotnet -Radarr.Mono 5.0.0.7889 dotnet -Radarr.SignalR 5.0.0.7889 dotnet +Radarr 5.0.0.7894 dotnet +Radarr.Api.V3 5.0.0.7894 dotnet +Radarr.Common 5.0.0.7894 dotnet +Radarr.Core 5.0.0.7894 dotnet +Radarr.Host 5.0.0.7894 dotnet +Radarr.Http 5.0.0.7894 dotnet +Radarr.Mono 5.0.0.7894 dotnet +Radarr.SignalR 5.0.0.7894 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 20057097fa169116bed51f31bef8d258f7c20ff3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 16:00:43 +0000 Subject: [PATCH 0310/1009] 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 f730aed..18f8f86 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7894 dotnet -Radarr.Api.V3 5.0.0.7894 dotnet -Radarr.Common 5.0.0.7894 dotnet -Radarr.Core 5.0.0.7894 dotnet -Radarr.Host 5.0.0.7894 dotnet -Radarr.Http 5.0.0.7894 dotnet -Radarr.Mono 5.0.0.7894 dotnet -Radarr.SignalR 5.0.0.7894 dotnet +Radarr 5.0.0.7906 dotnet +Radarr.Api.V3 5.0.0.7906 dotnet +Radarr.Common 5.0.0.7906 dotnet +Radarr.Core 5.0.0.7906 dotnet +Radarr.Host 5.0.0.7906 dotnet +Radarr.Http 5.0.0.7906 dotnet +Radarr.Mono 5.0.0.7906 dotnet +Radarr.SignalR 5.0.0.7906 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 36f40dc1a67f7a151c54e86a6458298160b80495 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 16:56:02 +0000 Subject: [PATCH 0311/1009] 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 18f8f86..da7e8f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7906 dotnet -Radarr.Api.V3 5.0.0.7906 dotnet -Radarr.Common 5.0.0.7906 dotnet -Radarr.Core 5.0.0.7906 dotnet -Radarr.Host 5.0.0.7906 dotnet -Radarr.Http 5.0.0.7906 dotnet -Radarr.Mono 5.0.0.7906 dotnet -Radarr.SignalR 5.0.0.7906 dotnet +Radarr 5.0.0.7907 dotnet +Radarr.Api.V3 5.0.0.7907 dotnet +Radarr.Common 5.0.0.7907 dotnet +Radarr.Core 5.0.0.7907 dotnet +Radarr.Host 5.0.0.7907 dotnet +Radarr.Http 5.0.0.7907 dotnet +Radarr.Mono 5.0.0.7907 dotnet +Radarr.SignalR 5.0.0.7907 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 2a1ec5c27a0ef4bb2622aa89287f0b5c1cc76680 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 18:58:13 +0000 Subject: [PATCH 0312/1009] 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 da7e8f7..5824e29 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7907 dotnet -Radarr.Api.V3 5.0.0.7907 dotnet -Radarr.Common 5.0.0.7907 dotnet -Radarr.Core 5.0.0.7907 dotnet -Radarr.Host 5.0.0.7907 dotnet -Radarr.Http 5.0.0.7907 dotnet -Radarr.Mono 5.0.0.7907 dotnet -Radarr.SignalR 5.0.0.7907 dotnet +Radarr 5.0.0.7911 dotnet +Radarr.Api.V3 5.0.0.7911 dotnet +Radarr.Common 5.0.0.7911 dotnet +Radarr.Core 5.0.0.7911 dotnet +Radarr.Host 5.0.0.7911 dotnet +Radarr.Http 5.0.0.7911 dotnet +Radarr.Mono 5.0.0.7911 dotnet +Radarr.SignalR 5.0.0.7911 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 5943606f9d29808aa2e5306108921e14ba12286c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 19:31:00 +0000 Subject: [PATCH 0313/1009] 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 5824e29..3b82e2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7911 dotnet -Radarr.Api.V3 5.0.0.7911 dotnet -Radarr.Common 5.0.0.7911 dotnet -Radarr.Core 5.0.0.7911 dotnet -Radarr.Host 5.0.0.7911 dotnet -Radarr.Http 5.0.0.7911 dotnet -Radarr.Mono 5.0.0.7911 dotnet -Radarr.SignalR 5.0.0.7911 dotnet +Radarr 5.0.0.7912 dotnet +Radarr.Api.V3 5.0.0.7912 dotnet +Radarr.Common 5.0.0.7912 dotnet +Radarr.Core 5.0.0.7912 dotnet +Radarr.Host 5.0.0.7912 dotnet +Radarr.Http 5.0.0.7912 dotnet +Radarr.Mono 5.0.0.7912 dotnet +Radarr.SignalR 5.0.0.7912 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 4c623eec255c58903bd34589b6023e6439fef4de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 19:52:06 +0000 Subject: [PATCH 0314/1009] 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 3b82e2a..8deaf96 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7912 dotnet -Radarr.Api.V3 5.0.0.7912 dotnet -Radarr.Common 5.0.0.7912 dotnet -Radarr.Core 5.0.0.7912 dotnet -Radarr.Host 5.0.0.7912 dotnet -Radarr.Http 5.0.0.7912 dotnet -Radarr.Mono 5.0.0.7912 dotnet -Radarr.SignalR 5.0.0.7912 dotnet +Radarr 5.0.0.7914 dotnet +Radarr.Api.V3 5.0.0.7914 dotnet +Radarr.Common 5.0.0.7914 dotnet +Radarr.Core 5.0.0.7914 dotnet +Radarr.Host 5.0.0.7914 dotnet +Radarr.Http 5.0.0.7914 dotnet +Radarr.Mono 5.0.0.7914 dotnet +Radarr.SignalR 5.0.0.7914 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From b14d07f72ad18a5fa6abee19894dbc65a89aae84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 20:41:40 +0000 Subject: [PATCH 0315/1009] 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 8deaf96..3a61978 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7914 dotnet -Radarr.Api.V3 5.0.0.7914 dotnet -Radarr.Common 5.0.0.7914 dotnet -Radarr.Core 5.0.0.7914 dotnet -Radarr.Host 5.0.0.7914 dotnet -Radarr.Http 5.0.0.7914 dotnet -Radarr.Mono 5.0.0.7914 dotnet -Radarr.SignalR 5.0.0.7914 dotnet +Radarr 5.0.0.7916 dotnet +Radarr.Api.V3 5.0.0.7916 dotnet +Radarr.Common 5.0.0.7916 dotnet +Radarr.Core 5.0.0.7916 dotnet +Radarr.Host 5.0.0.7916 dotnet +Radarr.Http 5.0.0.7916 dotnet +Radarr.Mono 5.0.0.7916 dotnet +Radarr.SignalR 5.0.0.7916 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From e40ae1adbe1817e7fdaad465af1044ff09c7d986 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 21:31:17 +0000 Subject: [PATCH 0316/1009] 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 3a61978..507c7d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7916 dotnet -Radarr.Api.V3 5.0.0.7916 dotnet -Radarr.Common 5.0.0.7916 dotnet -Radarr.Core 5.0.0.7916 dotnet -Radarr.Host 5.0.0.7916 dotnet -Radarr.Http 5.0.0.7916 dotnet -Radarr.Mono 5.0.0.7916 dotnet -Radarr.SignalR 5.0.0.7916 dotnet +Radarr 5.0.0.7918 dotnet +Radarr.Api.V3 5.0.0.7918 dotnet +Radarr.Common 5.0.0.7918 dotnet +Radarr.Core 5.0.0.7918 dotnet +Radarr.Host 5.0.0.7918 dotnet +Radarr.Http 5.0.0.7918 dotnet +Radarr.Mono 5.0.0.7918 dotnet +Radarr.SignalR 5.0.0.7918 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 7f617a5007b3e05678f8ae7d5d3f6b653bd4b658 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 22:31:22 +0000 Subject: [PATCH 0317/1009] 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 507c7d8..70d0415 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7918 dotnet -Radarr.Api.V3 5.0.0.7918 dotnet -Radarr.Common 5.0.0.7918 dotnet -Radarr.Core 5.0.0.7918 dotnet -Radarr.Host 5.0.0.7918 dotnet -Radarr.Http 5.0.0.7918 dotnet -Radarr.Mono 5.0.0.7918 dotnet -Radarr.SignalR 5.0.0.7918 dotnet +Radarr 5.0.0.7920 dotnet +Radarr.Api.V3 5.0.0.7920 dotnet +Radarr.Common 5.0.0.7920 dotnet +Radarr.Core 5.0.0.7920 dotnet +Radarr.Host 5.0.0.7920 dotnet +Radarr.Http 5.0.0.7920 dotnet +Radarr.Mono 5.0.0.7920 dotnet +Radarr.SignalR 5.0.0.7920 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From bb393da02cd48e804ee06f475c3cf3ab93a0a748 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Aug 2023 01:54:37 +0000 Subject: [PATCH 0318/1009] 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 70d0415..1bc048e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7920 dotnet -Radarr.Api.V3 5.0.0.7920 dotnet -Radarr.Common 5.0.0.7920 dotnet -Radarr.Core 5.0.0.7920 dotnet -Radarr.Host 5.0.0.7920 dotnet -Radarr.Http 5.0.0.7920 dotnet -Radarr.Mono 5.0.0.7920 dotnet -Radarr.SignalR 5.0.0.7920 dotnet +Radarr 5.0.0.7925 dotnet +Radarr.Api.V3 5.0.0.7925 dotnet +Radarr.Common 5.0.0.7925 dotnet +Radarr.Core 5.0.0.7925 dotnet +Radarr.Host 5.0.0.7925 dotnet +Radarr.Http 5.0.0.7925 dotnet +Radarr.Mono 5.0.0.7925 dotnet +Radarr.SignalR 5.0.0.7925 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 6038364c106dd9234c4bb58bb03ec1bafa67c895 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Aug 2023 03:43:47 +0000 Subject: [PATCH 0319/1009] 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 1bc048e..9ab9d25 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7925 dotnet -Radarr.Api.V3 5.0.0.7925 dotnet -Radarr.Common 5.0.0.7925 dotnet -Radarr.Core 5.0.0.7925 dotnet -Radarr.Host 5.0.0.7925 dotnet -Radarr.Http 5.0.0.7925 dotnet -Radarr.Mono 5.0.0.7925 dotnet -Radarr.SignalR 5.0.0.7925 dotnet +Radarr 5.0.0.7927 dotnet +Radarr.Api.V3 5.0.0.7927 dotnet +Radarr.Common 5.0.0.7927 dotnet +Radarr.Core 5.0.0.7927 dotnet +Radarr.Host 5.0.0.7927 dotnet +Radarr.Http 5.0.0.7927 dotnet +Radarr.Mono 5.0.0.7927 dotnet +Radarr.SignalR 5.0.0.7927 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 8699423ab577c580de933d6786c6977615f8e1f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Aug 2023 04:28:40 +0000 Subject: [PATCH 0320/1009] 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 9ab9d25..b5dd59d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7927 dotnet -Radarr.Api.V3 5.0.0.7927 dotnet -Radarr.Common 5.0.0.7927 dotnet -Radarr.Core 5.0.0.7927 dotnet -Radarr.Host 5.0.0.7927 dotnet -Radarr.Http 5.0.0.7927 dotnet -Radarr.Mono 5.0.0.7927 dotnet -Radarr.SignalR 5.0.0.7927 dotnet +Radarr 5.0.0.7928 dotnet +Radarr.Api.V3 5.0.0.7928 dotnet +Radarr.Common 5.0.0.7928 dotnet +Radarr.Core 5.0.0.7928 dotnet +Radarr.Host 5.0.0.7928 dotnet +Radarr.Http 5.0.0.7928 dotnet +Radarr.Mono 5.0.0.7928 dotnet +Radarr.SignalR 5.0.0.7928 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 0577455e78ac7dacdb74c48105d3b5b82a1f32a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Aug 2023 03:41:07 +0000 Subject: [PATCH 0321/1009] 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 b5dd59d..6536405 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7928 dotnet -Radarr.Api.V3 5.0.0.7928 dotnet -Radarr.Common 5.0.0.7928 dotnet -Radarr.Core 5.0.0.7928 dotnet -Radarr.Host 5.0.0.7928 dotnet -Radarr.Http 5.0.0.7928 dotnet -Radarr.Mono 5.0.0.7928 dotnet -Radarr.SignalR 5.0.0.7928 dotnet +Radarr 5.0.0.7936 dotnet +Radarr.Api.V3 5.0.0.7936 dotnet +Radarr.Common 5.0.0.7936 dotnet +Radarr.Core 5.0.0.7936 dotnet +Radarr.Host 5.0.0.7936 dotnet +Radarr.Http 5.0.0.7936 dotnet +Radarr.Mono 5.0.0.7936 dotnet +Radarr.SignalR 5.0.0.7936 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From ee9240ec6f5d1bf9a94f9d59462bc0671f04bf02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Aug 2023 14:32:20 +0000 Subject: [PATCH 0322/1009] 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 6536405..8fc2180 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7936 dotnet -Radarr.Api.V3 5.0.0.7936 dotnet -Radarr.Common 5.0.0.7936 dotnet -Radarr.Core 5.0.0.7936 dotnet -Radarr.Host 5.0.0.7936 dotnet -Radarr.Http 5.0.0.7936 dotnet -Radarr.Mono 5.0.0.7936 dotnet -Radarr.SignalR 5.0.0.7936 dotnet +Radarr 5.0.0.7938 dotnet +Radarr.Api.V3 5.0.0.7938 dotnet +Radarr.Common 5.0.0.7938 dotnet +Radarr.Core 5.0.0.7938 dotnet +Radarr.Host 5.0.0.7938 dotnet +Radarr.Http 5.0.0.7938 dotnet +Radarr.Mono 5.0.0.7938 dotnet +Radarr.SignalR 5.0.0.7938 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From bcd7473ebf1e99994a4c9b2128feb046f765e601 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Aug 2023 21:04:34 +0000 Subject: [PATCH 0323/1009] 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 8fc2180..4a845b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7938 dotnet -Radarr.Api.V3 5.0.0.7938 dotnet -Radarr.Common 5.0.0.7938 dotnet -Radarr.Core 5.0.0.7938 dotnet -Radarr.Host 5.0.0.7938 dotnet -Radarr.Http 5.0.0.7938 dotnet -Radarr.Mono 5.0.0.7938 dotnet -Radarr.SignalR 5.0.0.7938 dotnet +Radarr 5.0.0.7944 dotnet +Radarr.Api.V3 5.0.0.7944 dotnet +Radarr.Common 5.0.0.7944 dotnet +Radarr.Core 5.0.0.7944 dotnet +Radarr.Host 5.0.0.7944 dotnet +Radarr.Http 5.0.0.7944 dotnet +Radarr.Mono 5.0.0.7944 dotnet +Radarr.SignalR 5.0.0.7944 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 850cace93386e84fa07665c1ff8d02ea0bb54fb3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Aug 2023 02:53:10 +0000 Subject: [PATCH 0324/1009] 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 4a845b8..2951ef4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7944 dotnet -Radarr.Api.V3 5.0.0.7944 dotnet -Radarr.Common 5.0.0.7944 dotnet -Radarr.Core 5.0.0.7944 dotnet -Radarr.Host 5.0.0.7944 dotnet -Radarr.Http 5.0.0.7944 dotnet -Radarr.Mono 5.0.0.7944 dotnet -Radarr.SignalR 5.0.0.7944 dotnet +Radarr 5.0.0.7947 dotnet +Radarr.Api.V3 5.0.0.7947 dotnet +Radarr.Common 5.0.0.7947 dotnet +Radarr.Core 5.0.0.7947 dotnet +Radarr.Host 5.0.0.7947 dotnet +Radarr.Http 5.0.0.7947 dotnet +Radarr.Mono 5.0.0.7947 dotnet +Radarr.SignalR 5.0.0.7947 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 4f3a3e45c565e221116b6e3e727bd59d5cffde68 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Aug 2023 13:07:02 +0000 Subject: [PATCH 0325/1009] 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 2951ef4..dfd6650 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7947 dotnet -Radarr.Api.V3 5.0.0.7947 dotnet -Radarr.Common 5.0.0.7947 dotnet -Radarr.Core 5.0.0.7947 dotnet -Radarr.Host 5.0.0.7947 dotnet -Radarr.Http 5.0.0.7947 dotnet -Radarr.Mono 5.0.0.7947 dotnet -Radarr.SignalR 5.0.0.7947 dotnet +Radarr 5.0.0.7949 dotnet +Radarr.Api.V3 5.0.0.7949 dotnet +Radarr.Common 5.0.0.7949 dotnet +Radarr.Core 5.0.0.7949 dotnet +Radarr.Host 5.0.0.7949 dotnet +Radarr.Http 5.0.0.7949 dotnet +Radarr.Mono 5.0.0.7949 dotnet +Radarr.SignalR 5.0.0.7949 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 8febacac29de46e76ad1f87a996c02f4ff4eca1c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Aug 2023 18:01:03 +0000 Subject: [PATCH 0326/1009] 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 dfd6650..3c210d7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7949 dotnet -Radarr.Api.V3 5.0.0.7949 dotnet -Radarr.Common 5.0.0.7949 dotnet -Radarr.Core 5.0.0.7949 dotnet -Radarr.Host 5.0.0.7949 dotnet -Radarr.Http 5.0.0.7949 dotnet -Radarr.Mono 5.0.0.7949 dotnet -Radarr.SignalR 5.0.0.7949 dotnet +Radarr 5.0.0.7950 dotnet +Radarr.Api.V3 5.0.0.7950 dotnet +Radarr.Common 5.0.0.7950 dotnet +Radarr.Core 5.0.0.7950 dotnet +Radarr.Host 5.0.0.7950 dotnet +Radarr.Http 5.0.0.7950 dotnet +Radarr.Mono 5.0.0.7950 dotnet +Radarr.SignalR 5.0.0.7950 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From d6b754b5406e10df6fcd2800fbbfa445a7213399 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Aug 2023 18:13:32 +0000 Subject: [PATCH 0327/1009] 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 3c210d7..8bcb0a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7950 dotnet -Radarr.Api.V3 5.0.0.7950 dotnet -Radarr.Common 5.0.0.7950 dotnet -Radarr.Core 5.0.0.7950 dotnet -Radarr.Host 5.0.0.7950 dotnet -Radarr.Http 5.0.0.7950 dotnet -Radarr.Mono 5.0.0.7950 dotnet -Radarr.SignalR 5.0.0.7950 dotnet +Radarr 5.0.0.7952 dotnet +Radarr.Api.V3 5.0.0.7952 dotnet +Radarr.Common 5.0.0.7952 dotnet +Radarr.Core 5.0.0.7952 dotnet +Radarr.Host 5.0.0.7952 dotnet +Radarr.Http 5.0.0.7952 dotnet +Radarr.Mono 5.0.0.7952 dotnet +Radarr.SignalR 5.0.0.7952 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 9a92fe345da6a595b0b2bf0befc765f2a1dc0209 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Aug 2023 06:33:34 +0000 Subject: [PATCH 0328/1009] 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 8bcb0a9..f9d15a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.0.7952 dotnet -Radarr.Api.V3 5.0.0.7952 dotnet -Radarr.Common 5.0.0.7952 dotnet -Radarr.Core 5.0.0.7952 dotnet -Radarr.Host 5.0.0.7952 dotnet -Radarr.Http 5.0.0.7952 dotnet -Radarr.Mono 5.0.0.7952 dotnet -Radarr.SignalR 5.0.0.7952 dotnet +Radarr 5.0.1.7953 dotnet +Radarr.Api.V3 5.0.1.7953 dotnet +Radarr.Common 5.0.1.7953 dotnet +Radarr.Core 5.0.1.7953 dotnet +Radarr.Host 5.0.1.7953 dotnet +Radarr.Http 5.0.1.7953 dotnet +Radarr.Mono 5.0.1.7953 dotnet +Radarr.SignalR 5.0.1.7953 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 8a48b3edebc7f3db33770a672cb15e77af919ba0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Aug 2023 16:48:38 +0000 Subject: [PATCH 0329/1009] 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 f9d15a9..0635d87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7953 dotnet -Radarr.Api.V3 5.0.1.7953 dotnet -Radarr.Common 5.0.1.7953 dotnet -Radarr.Core 5.0.1.7953 dotnet -Radarr.Host 5.0.1.7953 dotnet -Radarr.Http 5.0.1.7953 dotnet -Radarr.Mono 5.0.1.7953 dotnet -Radarr.SignalR 5.0.1.7953 dotnet +Radarr 5.0.1.7954 dotnet +Radarr.Api.V3 5.0.1.7954 dotnet +Radarr.Common 5.0.1.7954 dotnet +Radarr.Core 5.0.1.7954 dotnet +Radarr.Host 5.0.1.7954 dotnet +Radarr.Http 5.0.1.7954 dotnet +Radarr.Mono 5.0.1.7954 dotnet +Radarr.SignalR 5.0.1.7954 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 32f21c96447450e5953e707215d9588c0098a125 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Aug 2023 01:05:20 +0000 Subject: [PATCH 0330/1009] 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 0635d87..334d51d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7954 dotnet -Radarr.Api.V3 5.0.1.7954 dotnet -Radarr.Common 5.0.1.7954 dotnet -Radarr.Core 5.0.1.7954 dotnet -Radarr.Host 5.0.1.7954 dotnet -Radarr.Http 5.0.1.7954 dotnet -Radarr.Mono 5.0.1.7954 dotnet -Radarr.SignalR 5.0.1.7954 dotnet +Radarr 5.0.1.7955 dotnet +Radarr.Api.V3 5.0.1.7955 dotnet +Radarr.Common 5.0.1.7955 dotnet +Radarr.Core 5.0.1.7955 dotnet +Radarr.Host 5.0.1.7955 dotnet +Radarr.Http 5.0.1.7955 dotnet +Radarr.Mono 5.0.1.7955 dotnet +Radarr.SignalR 5.0.1.7955 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 46738f002e7e95098117b1158131111dee3ce547 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Aug 2023 23:19:33 +0000 Subject: [PATCH 0331/1009] 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 334d51d..a5aa597 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7955 dotnet -Radarr.Api.V3 5.0.1.7955 dotnet -Radarr.Common 5.0.1.7955 dotnet -Radarr.Core 5.0.1.7955 dotnet -Radarr.Host 5.0.1.7955 dotnet -Radarr.Http 5.0.1.7955 dotnet -Radarr.Mono 5.0.1.7955 dotnet -Radarr.SignalR 5.0.1.7955 dotnet +Radarr 5.0.1.7960 dotnet +Radarr.Api.V3 5.0.1.7960 dotnet +Radarr.Common 5.0.1.7960 dotnet +Radarr.Core 5.0.1.7960 dotnet +Radarr.Host 5.0.1.7960 dotnet +Radarr.Http 5.0.1.7960 dotnet +Radarr.Mono 5.0.1.7960 dotnet +Radarr.SignalR 5.0.1.7960 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From b1bdf63556443c1b886bcee81437e17f266303ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 00:59:28 +0000 Subject: [PATCH 0332/1009] 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 a5aa597..b95e0ff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7960 dotnet -Radarr.Api.V3 5.0.1.7960 dotnet -Radarr.Common 5.0.1.7960 dotnet -Radarr.Core 5.0.1.7960 dotnet -Radarr.Host 5.0.1.7960 dotnet -Radarr.Http 5.0.1.7960 dotnet -Radarr.Mono 5.0.1.7960 dotnet -Radarr.SignalR 5.0.1.7960 dotnet +Radarr 5.0.1.7961 dotnet +Radarr.Api.V3 5.0.1.7961 dotnet +Radarr.Common 5.0.1.7961 dotnet +Radarr.Core 5.0.1.7961 dotnet +Radarr.Host 5.0.1.7961 dotnet +Radarr.Http 5.0.1.7961 dotnet +Radarr.Mono 5.0.1.7961 dotnet +Radarr.SignalR 5.0.1.7961 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 9d076578fe51a5e489dd09b12d1be1da90d36949 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 03:14:19 +0000 Subject: [PATCH 0333/1009] 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 b95e0ff..a560276 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7961 dotnet -Radarr.Api.V3 5.0.1.7961 dotnet -Radarr.Common 5.0.1.7961 dotnet -Radarr.Core 5.0.1.7961 dotnet -Radarr.Host 5.0.1.7961 dotnet -Radarr.Http 5.0.1.7961 dotnet -Radarr.Mono 5.0.1.7961 dotnet -Radarr.SignalR 5.0.1.7961 dotnet +Radarr 5.0.1.7962 dotnet +Radarr.Api.V3 5.0.1.7962 dotnet +Radarr.Common 5.0.1.7962 dotnet +Radarr.Core 5.0.1.7962 dotnet +Radarr.Host 5.0.1.7962 dotnet +Radarr.Http 5.0.1.7962 dotnet +Radarr.Mono 5.0.1.7962 dotnet +Radarr.SignalR 5.0.1.7962 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 24c2e77edba7e157324b79a19efbf398578cf00b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 06:00:26 +0000 Subject: [PATCH 0334/1009] 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 a560276..46a7258 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7962 dotnet -Radarr.Api.V3 5.0.1.7962 dotnet -Radarr.Common 5.0.1.7962 dotnet -Radarr.Core 5.0.1.7962 dotnet -Radarr.Host 5.0.1.7962 dotnet -Radarr.Http 5.0.1.7962 dotnet -Radarr.Mono 5.0.1.7962 dotnet -Radarr.SignalR 5.0.1.7962 dotnet +Radarr 5.0.1.7965 dotnet +Radarr.Api.V3 5.0.1.7965 dotnet +Radarr.Common 5.0.1.7965 dotnet +Radarr.Core 5.0.1.7965 dotnet +Radarr.Host 5.0.1.7965 dotnet +Radarr.Http 5.0.1.7965 dotnet +Radarr.Mono 5.0.1.7965 dotnet +Radarr.SignalR 5.0.1.7965 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 90eb4126c3f33af74a729c1e7ddd18b2785fd616 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 16:36:14 +0000 Subject: [PATCH 0335/1009] 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 46a7258..41068e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7965 dotnet -Radarr.Api.V3 5.0.1.7965 dotnet -Radarr.Common 5.0.1.7965 dotnet -Radarr.Core 5.0.1.7965 dotnet -Radarr.Host 5.0.1.7965 dotnet -Radarr.Http 5.0.1.7965 dotnet -Radarr.Mono 5.0.1.7965 dotnet -Radarr.SignalR 5.0.1.7965 dotnet +Radarr 5.0.1.7969 dotnet +Radarr.Api.V3 5.0.1.7969 dotnet +Radarr.Common 5.0.1.7969 dotnet +Radarr.Core 5.0.1.7969 dotnet +Radarr.Host 5.0.1.7969 dotnet +Radarr.Http 5.0.1.7969 dotnet +Radarr.Mono 5.0.1.7969 dotnet +Radarr.SignalR 5.0.1.7969 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From c18cd506c7ecc9c3fc63b95773505c862e8a68ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 17:32:42 +0000 Subject: [PATCH 0336/1009] 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 41068e8..1995eb4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7969 dotnet -Radarr.Api.V3 5.0.1.7969 dotnet -Radarr.Common 5.0.1.7969 dotnet -Radarr.Core 5.0.1.7969 dotnet -Radarr.Host 5.0.1.7969 dotnet -Radarr.Http 5.0.1.7969 dotnet -Radarr.Mono 5.0.1.7969 dotnet -Radarr.SignalR 5.0.1.7969 dotnet +Radarr 5.0.1.7972 dotnet +Radarr.Api.V3 5.0.1.7972 dotnet +Radarr.Common 5.0.1.7972 dotnet +Radarr.Core 5.0.1.7972 dotnet +Radarr.Host 5.0.1.7972 dotnet +Radarr.Http 5.0.1.7972 dotnet +Radarr.Mono 5.0.1.7972 dotnet +Radarr.SignalR 5.0.1.7972 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From e6adf94c0ed4e46cfbd1e3698dcdace096784572 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 20:11:37 +0000 Subject: [PATCH 0337/1009] 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 1995eb4..2cbf494 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7972 dotnet -Radarr.Api.V3 5.0.1.7972 dotnet -Radarr.Common 5.0.1.7972 dotnet -Radarr.Core 5.0.1.7972 dotnet -Radarr.Host 5.0.1.7972 dotnet -Radarr.Http 5.0.1.7972 dotnet -Radarr.Mono 5.0.1.7972 dotnet -Radarr.SignalR 5.0.1.7972 dotnet +Radarr 5.0.1.7974 dotnet +Radarr.Api.V3 5.0.1.7974 dotnet +Radarr.Common 5.0.1.7974 dotnet +Radarr.Core 5.0.1.7974 dotnet +Radarr.Host 5.0.1.7974 dotnet +Radarr.Http 5.0.1.7974 dotnet +Radarr.Mono 5.0.1.7974 dotnet +Radarr.SignalR 5.0.1.7974 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 93830ba7b9fa5c241ca41a1985fc2a6b5baabe74 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 1 Sep 2023 02:38:16 +0000 Subject: [PATCH 0338/1009] 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 2cbf494..fbc0d64 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7974 dotnet -Radarr.Api.V3 5.0.1.7974 dotnet -Radarr.Common 5.0.1.7974 dotnet -Radarr.Core 5.0.1.7974 dotnet -Radarr.Host 5.0.1.7974 dotnet -Radarr.Http 5.0.1.7974 dotnet -Radarr.Mono 5.0.1.7974 dotnet -Radarr.SignalR 5.0.1.7974 dotnet +Radarr 5.0.1.7978 dotnet +Radarr.Api.V3 5.0.1.7978 dotnet +Radarr.Common 5.0.1.7978 dotnet +Radarr.Core 5.0.1.7978 dotnet +Radarr.Host 5.0.1.7978 dotnet +Radarr.Http 5.0.1.7978 dotnet +Radarr.Mono 5.0.1.7978 dotnet +Radarr.SignalR 5.0.1.7978 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 06c93ea35ea9acd1d2a5dc0679d795610040ad45 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 2 Sep 2023 03:18:33 +0000 Subject: [PATCH 0339/1009] 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 fbc0d64..a9d3f07 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7978 dotnet -Radarr.Api.V3 5.0.1.7978 dotnet -Radarr.Common 5.0.1.7978 dotnet -Radarr.Core 5.0.1.7978 dotnet -Radarr.Host 5.0.1.7978 dotnet -Radarr.Http 5.0.1.7978 dotnet -Radarr.Mono 5.0.1.7978 dotnet -Radarr.SignalR 5.0.1.7978 dotnet +Radarr 5.0.1.7984 dotnet +Radarr.Api.V3 5.0.1.7984 dotnet +Radarr.Common 5.0.1.7984 dotnet +Radarr.Core 5.0.1.7984 dotnet +Radarr.Host 5.0.1.7984 dotnet +Radarr.Http 5.0.1.7984 dotnet +Radarr.Mono 5.0.1.7984 dotnet +Radarr.SignalR 5.0.1.7984 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From ec4166c43ef0ba07a030985bef3788524a6a2424 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 2 Sep 2023 20:50:43 +0000 Subject: [PATCH 0340/1009] 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 a9d3f07..ba561da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7984 dotnet -Radarr.Api.V3 5.0.1.7984 dotnet -Radarr.Common 5.0.1.7984 dotnet -Radarr.Core 5.0.1.7984 dotnet -Radarr.Host 5.0.1.7984 dotnet -Radarr.Http 5.0.1.7984 dotnet -Radarr.Mono 5.0.1.7984 dotnet -Radarr.SignalR 5.0.1.7984 dotnet +Radarr 5.0.1.7985 dotnet +Radarr.Api.V3 5.0.1.7985 dotnet +Radarr.Common 5.0.1.7985 dotnet +Radarr.Core 5.0.1.7985 dotnet +Radarr.Host 5.0.1.7985 dotnet +Radarr.Http 5.0.1.7985 dotnet +Radarr.Mono 5.0.1.7985 dotnet +Radarr.SignalR 5.0.1.7985 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet @@ -396,7 +396,7 @@ libidn2 2.3.4-r1 libintl 0.21.1-r7 apk libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk -libproc2 4.0.3-r1 apk +libproc2 4.0.4-r0 apk libssl3 3.1.2-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk @@ -411,7 +411,7 @@ netcat-openbsd 1.219-r1 netstandard 6.0.1623.17311 dotnet nghttp2-libs 1.55.1-r0 apk oniguruma 6.9.8-r1 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 d1d780e4c1bf9da8d15fe77c3bad051db1722af0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Sep 2023 02:00:12 +0000 Subject: [PATCH 0341/1009] 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 ba561da..6da39de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7985 dotnet -Radarr.Api.V3 5.0.1.7985 dotnet -Radarr.Common 5.0.1.7985 dotnet -Radarr.Core 5.0.1.7985 dotnet -Radarr.Host 5.0.1.7985 dotnet -Radarr.Http 5.0.1.7985 dotnet -Radarr.Mono 5.0.1.7985 dotnet -Radarr.SignalR 5.0.1.7985 dotnet +Radarr 5.0.1.7991 dotnet +Radarr.Api.V3 5.0.1.7991 dotnet +Radarr.Common 5.0.1.7991 dotnet +Radarr.Core 5.0.1.7991 dotnet +Radarr.Host 5.0.1.7991 dotnet +Radarr.Http 5.0.1.7991 dotnet +Radarr.Mono 5.0.1.7991 dotnet +Radarr.SignalR 5.0.1.7991 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From a89d23c707a9115c204c76bc19c2c19ee4aa38e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Sep 2023 02:34:14 +0000 Subject: [PATCH 0342/1009] 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 6da39de..5c9f55e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7991 dotnet -Radarr.Api.V3 5.0.1.7991 dotnet -Radarr.Common 5.0.1.7991 dotnet -Radarr.Core 5.0.1.7991 dotnet -Radarr.Host 5.0.1.7991 dotnet -Radarr.Http 5.0.1.7991 dotnet -Radarr.Mono 5.0.1.7991 dotnet -Radarr.SignalR 5.0.1.7991 dotnet +Radarr 5.0.1.7993 dotnet +Radarr.Api.V3 5.0.1.7993 dotnet +Radarr.Common 5.0.1.7993 dotnet +Radarr.Core 5.0.1.7993 dotnet +Radarr.Host 5.0.1.7993 dotnet +Radarr.Http 5.0.1.7993 dotnet +Radarr.Mono 5.0.1.7993 dotnet +Radarr.SignalR 5.0.1.7993 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From fdf71a0308d60b900b66960bef6742ef7fd34405 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Sep 2023 23:33:30 +0000 Subject: [PATCH 0343/1009] Bot Updating Package Versions --- package_versions.txt | 534 +++++++++++++++++++++---------------------- 1 file changed, 267 insertions(+), 267 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5c9f55e..3fb637d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -32,87 +32,87 @@ ImpromptuInterface 7.0.1.0 Instances 1.0.0.0 dotnet Json.NET .NET 6.0 13.0.3.27908 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 @@ -124,54 +124,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 7.0.22.51805 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.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.1823.26907 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 @@ -183,190 +183,190 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.1.7993 dotnet -Radarr.Api.V3 5.0.1.7993 dotnet -Radarr.Common 5.0.1.7993 dotnet -Radarr.Core 5.0.1.7993 dotnet -Radarr.Host 5.0.1.7993 dotnet -Radarr.Http 5.0.1.7993 dotnet -Radarr.Mono 5.0.1.7993 dotnet -Radarr.SignalR 5.0.1.7993 dotnet +Radarr 5.0.2.7997 dotnet +Radarr.Api.V3 5.0.2.7997 dotnet +Radarr.Common 5.0.2.7997 dotnet +Radarr.Core 5.0.2.7997 dotnet +Radarr.Host 5.0.2.7997 dotnet +Radarr.Http 5.0.2.7997 dotnet +Radarr.Mono 5.0.2.7997 dotnet +Radarr.SignalR 5.0.2.7997 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.1.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.118.0 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.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.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.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.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.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.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 -WindowsBase 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 +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 @@ -403,12 +403,12 @@ libunistring 1.1-r1 libxml2 2.11.4-r0 apk libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 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 nghttp2-libs 1.55.1-r0 apk oniguruma 6.9.8-r1 apk procps-ng 4.0.4-r0 apk From 062af8447add15041c3306f3d72d51efb17ae978 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Sep 2023 05:41:30 +0000 Subject: [PATCH 0344/1009] 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 3fb637d..efa89be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,17 +183,17 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.7997 dotnet -Radarr.Api.V3 5.0.2.7997 dotnet -Radarr.Common 5.0.2.7997 dotnet -Radarr.Core 5.0.2.7997 dotnet -Radarr.Host 5.0.2.7997 dotnet -Radarr.Http 5.0.2.7997 dotnet -Radarr.Mono 5.0.2.7997 dotnet -Radarr.SignalR 5.0.2.7997 dotnet +Radarr 5.0.2.7998 dotnet +Radarr.Api.V3 5.0.2.7998 dotnet +Radarr.Common 5.0.2.7998 dotnet +Radarr.Core 5.0.2.7998 dotnet +Radarr.Host 5.0.2.7998 dotnet +Radarr.Http 5.0.2.7998 dotnet +Radarr.Mono 5.0.2.7998 dotnet +Radarr.SignalR 5.0.2.7998 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet -SixLabors.ImageSharp 3.0.1.0 dotnet +SixLabors.ImageSharp 3.0.2.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet System 6.0.2123.36311 dotnet From 4fc01b1dd121f35ee44fb22d730b8731d1f6a884 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Sep 2023 07:31:24 +0000 Subject: [PATCH 0345/1009] 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 efa89be..75a0c1a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.7998 dotnet -Radarr.Api.V3 5.0.2.7998 dotnet -Radarr.Common 5.0.2.7998 dotnet -Radarr.Core 5.0.2.7998 dotnet -Radarr.Host 5.0.2.7998 dotnet -Radarr.Http 5.0.2.7998 dotnet -Radarr.Mono 5.0.2.7998 dotnet -Radarr.SignalR 5.0.2.7998 dotnet +Radarr 5.0.2.8001 dotnet +Radarr.Api.V3 5.0.2.8001 dotnet +Radarr.Common 5.0.2.8001 dotnet +Radarr.Core 5.0.2.8001 dotnet +Radarr.Host 5.0.2.8001 dotnet +Radarr.Http 5.0.2.8001 dotnet +Radarr.Mono 5.0.2.8001 dotnet +Radarr.SignalR 5.0.2.8001 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2ee7bbcbb6da0c3b55531a5f0fd8e2e176f746cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Sep 2023 05:31:27 +0000 Subject: [PATCH 0346/1009] 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 75a0c1a..11a9683 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8001 dotnet -Radarr.Api.V3 5.0.2.8001 dotnet -Radarr.Common 5.0.2.8001 dotnet -Radarr.Core 5.0.2.8001 dotnet -Radarr.Host 5.0.2.8001 dotnet -Radarr.Http 5.0.2.8001 dotnet -Radarr.Mono 5.0.2.8001 dotnet -Radarr.SignalR 5.0.2.8001 dotnet +Radarr 5.0.2.8014 dotnet +Radarr.Api.V3 5.0.2.8014 dotnet +Radarr.Common 5.0.2.8014 dotnet +Radarr.Core 5.0.2.8014 dotnet +Radarr.Host 5.0.2.8014 dotnet +Radarr.Http 5.0.2.8014 dotnet +Radarr.Mono 5.0.2.8014 dotnet +Radarr.SignalR 5.0.2.8014 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 05c2645aff08c8e5f6b1a53da622abc1026ad126 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 9 Sep 2023 06:14:01 +0000 Subject: [PATCH 0347/1009] 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 11a9683..6f0911c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8014 dotnet -Radarr.Api.V3 5.0.2.8014 dotnet -Radarr.Common 5.0.2.8014 dotnet -Radarr.Core 5.0.2.8014 dotnet -Radarr.Host 5.0.2.8014 dotnet -Radarr.Http 5.0.2.8014 dotnet -Radarr.Mono 5.0.2.8014 dotnet -Radarr.SignalR 5.0.2.8014 dotnet +Radarr 5.0.2.8029 dotnet +Radarr.Api.V3 5.0.2.8029 dotnet +Radarr.Common 5.0.2.8029 dotnet +Radarr.Core 5.0.2.8029 dotnet +Radarr.Host 5.0.2.8029 dotnet +Radarr.Http 5.0.2.8029 dotnet +Radarr.Mono 5.0.2.8029 dotnet +Radarr.SignalR 5.0.2.8029 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 259972cff38768495d7ddc7937973ff3b7d30875 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 9 Sep 2023 11:31:28 +0000 Subject: [PATCH 0348/1009] 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 6f0911c..4c9d57e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8029 dotnet -Radarr.Api.V3 5.0.2.8029 dotnet -Radarr.Common 5.0.2.8029 dotnet -Radarr.Core 5.0.2.8029 dotnet -Radarr.Host 5.0.2.8029 dotnet -Radarr.Http 5.0.2.8029 dotnet -Radarr.Mono 5.0.2.8029 dotnet -Radarr.SignalR 5.0.2.8029 dotnet +Radarr 5.0.2.8031 dotnet +Radarr.Api.V3 5.0.2.8031 dotnet +Radarr.Common 5.0.2.8031 dotnet +Radarr.Core 5.0.2.8031 dotnet +Radarr.Host 5.0.2.8031 dotnet +Radarr.Http 5.0.2.8031 dotnet +Radarr.Mono 5.0.2.8031 dotnet +Radarr.SignalR 5.0.2.8031 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 06931c9f8a445a18317565dba9454da574e3c550 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Sep 2023 18:22:51 +0000 Subject: [PATCH 0349/1009] 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 4c9d57e..7bae5ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8031 dotnet -Radarr.Api.V3 5.0.2.8031 dotnet -Radarr.Common 5.0.2.8031 dotnet -Radarr.Core 5.0.2.8031 dotnet -Radarr.Host 5.0.2.8031 dotnet -Radarr.Http 5.0.2.8031 dotnet -Radarr.Mono 5.0.2.8031 dotnet -Radarr.SignalR 5.0.2.8031 dotnet +Radarr 5.0.2.8041 dotnet +Radarr.Api.V3 5.0.2.8041 dotnet +Radarr.Common 5.0.2.8041 dotnet +Radarr.Core 5.0.2.8041 dotnet +Radarr.Host 5.0.2.8041 dotnet +Radarr.Http 5.0.2.8041 dotnet +Radarr.Mono 5.0.2.8041 dotnet +Radarr.SignalR 5.0.2.8041 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7f80a5cb4fc9ff534be38b0ddaa8bffcca0be24b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Sep 2023 20:17:41 +0000 Subject: [PATCH 0350/1009] 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 7bae5ac..3b64743 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8041 dotnet -Radarr.Api.V3 5.0.2.8041 dotnet -Radarr.Common 5.0.2.8041 dotnet -Radarr.Core 5.0.2.8041 dotnet -Radarr.Host 5.0.2.8041 dotnet -Radarr.Http 5.0.2.8041 dotnet -Radarr.Mono 5.0.2.8041 dotnet -Radarr.SignalR 5.0.2.8041 dotnet +Radarr 5.0.2.8042 dotnet +Radarr.Api.V3 5.0.2.8042 dotnet +Radarr.Common 5.0.2.8042 dotnet +Radarr.Core 5.0.2.8042 dotnet +Radarr.Host 5.0.2.8042 dotnet +Radarr.Http 5.0.2.8042 dotnet +Radarr.Mono 5.0.2.8042 dotnet +Radarr.SignalR 5.0.2.8042 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2f678e894cd22c68df9f1676eca28286775bf68d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Sep 2023 21:03:50 +0000 Subject: [PATCH 0351/1009] 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 3b64743..213033f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8042 dotnet -Radarr.Api.V3 5.0.2.8042 dotnet -Radarr.Common 5.0.2.8042 dotnet -Radarr.Core 5.0.2.8042 dotnet -Radarr.Host 5.0.2.8042 dotnet -Radarr.Http 5.0.2.8042 dotnet -Radarr.Mono 5.0.2.8042 dotnet -Radarr.SignalR 5.0.2.8042 dotnet +Radarr 5.0.2.8044 dotnet +Radarr.Api.V3 5.0.2.8044 dotnet +Radarr.Common 5.0.2.8044 dotnet +Radarr.Core 5.0.2.8044 dotnet +Radarr.Host 5.0.2.8044 dotnet +Radarr.Http 5.0.2.8044 dotnet +Radarr.Mono 5.0.2.8044 dotnet +Radarr.SignalR 5.0.2.8044 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 82fab91db225f6743c6e1e90755f78ba30785b50 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 02:37:27 +0000 Subject: [PATCH 0352/1009] 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 213033f..922ab82 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8044 dotnet -Radarr.Api.V3 5.0.2.8044 dotnet -Radarr.Common 5.0.2.8044 dotnet -Radarr.Core 5.0.2.8044 dotnet -Radarr.Host 5.0.2.8044 dotnet -Radarr.Http 5.0.2.8044 dotnet -Radarr.Mono 5.0.2.8044 dotnet -Radarr.SignalR 5.0.2.8044 dotnet +Radarr 5.0.2.8045 dotnet +Radarr.Api.V3 5.0.2.8045 dotnet +Radarr.Common 5.0.2.8045 dotnet +Radarr.Core 5.0.2.8045 dotnet +Radarr.Host 5.0.2.8045 dotnet +Radarr.Http 5.0.2.8045 dotnet +Radarr.Mono 5.0.2.8045 dotnet +Radarr.SignalR 5.0.2.8045 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From a2e2d118ec339cc7cea02b473d1479866c0c73a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 08:30:57 +0000 Subject: [PATCH 0353/1009] 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 922ab82..25a2a49 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8045 dotnet -Radarr.Api.V3 5.0.2.8045 dotnet -Radarr.Common 5.0.2.8045 dotnet -Radarr.Core 5.0.2.8045 dotnet -Radarr.Host 5.0.2.8045 dotnet -Radarr.Http 5.0.2.8045 dotnet -Radarr.Mono 5.0.2.8045 dotnet -Radarr.SignalR 5.0.2.8045 dotnet +Radarr 5.0.2.8047 dotnet +Radarr.Api.V3 5.0.2.8047 dotnet +Radarr.Common 5.0.2.8047 dotnet +Radarr.Core 5.0.2.8047 dotnet +Radarr.Host 5.0.2.8047 dotnet +Radarr.Http 5.0.2.8047 dotnet +Radarr.Mono 5.0.2.8047 dotnet +Radarr.SignalR 5.0.2.8047 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 66d6c056a7aa42f5cbea32e3847fbd1a558fe267 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 08:54:09 +0000 Subject: [PATCH 0354/1009] 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 25a2a49..1cf0985 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8047 dotnet -Radarr.Api.V3 5.0.2.8047 dotnet -Radarr.Common 5.0.2.8047 dotnet -Radarr.Core 5.0.2.8047 dotnet -Radarr.Host 5.0.2.8047 dotnet -Radarr.Http 5.0.2.8047 dotnet -Radarr.Mono 5.0.2.8047 dotnet -Radarr.SignalR 5.0.2.8047 dotnet +Radarr 5.0.2.8048 dotnet +Radarr.Api.V3 5.0.2.8048 dotnet +Radarr.Common 5.0.2.8048 dotnet +Radarr.Core 5.0.2.8048 dotnet +Radarr.Host 5.0.2.8048 dotnet +Radarr.Http 5.0.2.8048 dotnet +Radarr.Mono 5.0.2.8048 dotnet +Radarr.SignalR 5.0.2.8048 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 34ef18f4a4b891860f65d881ad1b92b0759892a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 15:57:34 +0000 Subject: [PATCH 0355/1009] 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 1cf0985..7287ae0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8048 dotnet -Radarr.Api.V3 5.0.2.8048 dotnet -Radarr.Common 5.0.2.8048 dotnet -Radarr.Core 5.0.2.8048 dotnet -Radarr.Host 5.0.2.8048 dotnet -Radarr.Http 5.0.2.8048 dotnet -Radarr.Mono 5.0.2.8048 dotnet -Radarr.SignalR 5.0.2.8048 dotnet +Radarr 5.0.2.8051 dotnet +Radarr.Api.V3 5.0.2.8051 dotnet +Radarr.Common 5.0.2.8051 dotnet +Radarr.Core 5.0.2.8051 dotnet +Radarr.Host 5.0.2.8051 dotnet +Radarr.Http 5.0.2.8051 dotnet +Radarr.Mono 5.0.2.8051 dotnet +Radarr.SignalR 5.0.2.8051 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 10392624788764eca33fca232214609b198e5316 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 18:34:27 +0000 Subject: [PATCH 0356/1009] 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 7287ae0..c98c748 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8051 dotnet -Radarr.Api.V3 5.0.2.8051 dotnet -Radarr.Common 5.0.2.8051 dotnet -Radarr.Core 5.0.2.8051 dotnet -Radarr.Host 5.0.2.8051 dotnet -Radarr.Http 5.0.2.8051 dotnet -Radarr.Mono 5.0.2.8051 dotnet -Radarr.SignalR 5.0.2.8051 dotnet +Radarr 5.0.2.8052 dotnet +Radarr.Api.V3 5.0.2.8052 dotnet +Radarr.Common 5.0.2.8052 dotnet +Radarr.Core 5.0.2.8052 dotnet +Radarr.Host 5.0.2.8052 dotnet +Radarr.Http 5.0.2.8052 dotnet +Radarr.Mono 5.0.2.8052 dotnet +Radarr.SignalR 5.0.2.8052 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From fea33889a4fd8a1807b8bd46fbf1cd72286df7af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 20:27:11 +0000 Subject: [PATCH 0357/1009] 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 c98c748..9f01285 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8052 dotnet -Radarr.Api.V3 5.0.2.8052 dotnet -Radarr.Common 5.0.2.8052 dotnet -Radarr.Core 5.0.2.8052 dotnet -Radarr.Host 5.0.2.8052 dotnet -Radarr.Http 5.0.2.8052 dotnet -Radarr.Mono 5.0.2.8052 dotnet -Radarr.SignalR 5.0.2.8052 dotnet +Radarr 5.0.2.8054 dotnet +Radarr.Api.V3 5.0.2.8054 dotnet +Radarr.Common 5.0.2.8054 dotnet +Radarr.Core 5.0.2.8054 dotnet +Radarr.Host 5.0.2.8054 dotnet +Radarr.Http 5.0.2.8054 dotnet +Radarr.Mono 5.0.2.8054 dotnet +Radarr.SignalR 5.0.2.8054 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 070e56b1abfae56cde685d9f30964ecb860a698f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Sep 2023 10:13:24 +0000 Subject: [PATCH 0358/1009] 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 9f01285..9961b2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8054 dotnet -Radarr.Api.V3 5.0.2.8054 dotnet -Radarr.Common 5.0.2.8054 dotnet -Radarr.Core 5.0.2.8054 dotnet -Radarr.Host 5.0.2.8054 dotnet -Radarr.Http 5.0.2.8054 dotnet -Radarr.Mono 5.0.2.8054 dotnet -Radarr.SignalR 5.0.2.8054 dotnet +Radarr 5.0.2.8055 dotnet +Radarr.Api.V3 5.0.2.8055 dotnet +Radarr.Common 5.0.2.8055 dotnet +Radarr.Core 5.0.2.8055 dotnet +Radarr.Host 5.0.2.8055 dotnet +Radarr.Http 5.0.2.8055 dotnet +Radarr.Mono 5.0.2.8055 dotnet +Radarr.SignalR 5.0.2.8055 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 099417692548c114cbdf6dba533deb6f6e76b214 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Sep 2023 17:07:30 +0000 Subject: [PATCH 0359/1009] 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 9961b2a..5a3544f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8055 dotnet -Radarr.Api.V3 5.0.2.8055 dotnet -Radarr.Common 5.0.2.8055 dotnet -Radarr.Core 5.0.2.8055 dotnet -Radarr.Host 5.0.2.8055 dotnet -Radarr.Http 5.0.2.8055 dotnet -Radarr.Mono 5.0.2.8055 dotnet -Radarr.SignalR 5.0.2.8055 dotnet +Radarr 5.0.2.8061 dotnet +Radarr.Api.V3 5.0.2.8061 dotnet +Radarr.Common 5.0.2.8061 dotnet +Radarr.Core 5.0.2.8061 dotnet +Radarr.Host 5.0.2.8061 dotnet +Radarr.Http 5.0.2.8061 dotnet +Radarr.Mono 5.0.2.8061 dotnet +Radarr.SignalR 5.0.2.8061 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 71e0701c8a28806cfb9da60e7aebda3240498250 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Sep 2023 17:48:12 +0000 Subject: [PATCH 0360/1009] 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 5a3544f..fc13689 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8061 dotnet -Radarr.Api.V3 5.0.2.8061 dotnet -Radarr.Common 5.0.2.8061 dotnet -Radarr.Core 5.0.2.8061 dotnet -Radarr.Host 5.0.2.8061 dotnet -Radarr.Http 5.0.2.8061 dotnet -Radarr.Mono 5.0.2.8061 dotnet -Radarr.SignalR 5.0.2.8061 dotnet +Radarr 5.0.2.8062 dotnet +Radarr.Api.V3 5.0.2.8062 dotnet +Radarr.Common 5.0.2.8062 dotnet +Radarr.Core 5.0.2.8062 dotnet +Radarr.Host 5.0.2.8062 dotnet +Radarr.Http 5.0.2.8062 dotnet +Radarr.Mono 5.0.2.8062 dotnet +Radarr.SignalR 5.0.2.8062 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4dcf6490a67690f4deeb24ae58155b27eb754c27 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Sep 2023 19:56:45 +0000 Subject: [PATCH 0361/1009] 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 fc13689..68a4ae6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8062 dotnet -Radarr.Api.V3 5.0.2.8062 dotnet -Radarr.Common 5.0.2.8062 dotnet -Radarr.Core 5.0.2.8062 dotnet -Radarr.Host 5.0.2.8062 dotnet -Radarr.Http 5.0.2.8062 dotnet -Radarr.Mono 5.0.2.8062 dotnet -Radarr.SignalR 5.0.2.8062 dotnet +Radarr 5.0.2.8065 dotnet +Radarr.Api.V3 5.0.2.8065 dotnet +Radarr.Common 5.0.2.8065 dotnet +Radarr.Core 5.0.2.8065 dotnet +Radarr.Host 5.0.2.8065 dotnet +Radarr.Http 5.0.2.8065 dotnet +Radarr.Mono 5.0.2.8065 dotnet +Radarr.SignalR 5.0.2.8065 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 8acd221aa54ce0f866c99e7fb280fe1fc26d9ba4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Sep 2023 21:50:25 +0000 Subject: [PATCH 0362/1009] 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 68a4ae6..7bdeced 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8065 dotnet -Radarr.Api.V3 5.0.2.8065 dotnet -Radarr.Common 5.0.2.8065 dotnet -Radarr.Core 5.0.2.8065 dotnet -Radarr.Host 5.0.2.8065 dotnet -Radarr.Http 5.0.2.8065 dotnet -Radarr.Mono 5.0.2.8065 dotnet -Radarr.SignalR 5.0.2.8065 dotnet +Radarr 5.0.2.8075 dotnet +Radarr.Api.V3 5.0.2.8075 dotnet +Radarr.Common 5.0.2.8075 dotnet +Radarr.Core 5.0.2.8075 dotnet +Radarr.Host 5.0.2.8075 dotnet +Radarr.Http 5.0.2.8075 dotnet +Radarr.Mono 5.0.2.8075 dotnet +Radarr.SignalR 5.0.2.8075 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 958b77e14c427d16ee2334450b07bfaf2b792e86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Sep 2023 13:49:29 +0000 Subject: [PATCH 0363/1009] 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 7bdeced..b6551c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8075 dotnet -Radarr.Api.V3 5.0.2.8075 dotnet -Radarr.Common 5.0.2.8075 dotnet -Radarr.Core 5.0.2.8075 dotnet -Radarr.Host 5.0.2.8075 dotnet -Radarr.Http 5.0.2.8075 dotnet -Radarr.Mono 5.0.2.8075 dotnet -Radarr.SignalR 5.0.2.8075 dotnet +Radarr 5.0.2.8076 dotnet +Radarr.Api.V3 5.0.2.8076 dotnet +Radarr.Common 5.0.2.8076 dotnet +Radarr.Core 5.0.2.8076 dotnet +Radarr.Host 5.0.2.8076 dotnet +Radarr.Http 5.0.2.8076 dotnet +Radarr.Mono 5.0.2.8076 dotnet +Radarr.SignalR 5.0.2.8076 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c0ee5a20607e8d5e441a430341925298e4bdb9bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Sep 2023 09:06:46 +0000 Subject: [PATCH 0364/1009] 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 b6551c2..fcea8fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8076 dotnet -Radarr.Api.V3 5.0.2.8076 dotnet -Radarr.Common 5.0.2.8076 dotnet -Radarr.Core 5.0.2.8076 dotnet -Radarr.Host 5.0.2.8076 dotnet -Radarr.Http 5.0.2.8076 dotnet -Radarr.Mono 5.0.2.8076 dotnet -Radarr.SignalR 5.0.2.8076 dotnet +Radarr 5.0.2.8081 dotnet +Radarr.Api.V3 5.0.2.8081 dotnet +Radarr.Common 5.0.2.8081 dotnet +Radarr.Core 5.0.2.8081 dotnet +Radarr.Host 5.0.2.8081 dotnet +Radarr.Http 5.0.2.8081 dotnet +Radarr.Mono 5.0.2.8081 dotnet +Radarr.SignalR 5.0.2.8081 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c56cd2aea5f6f8c6804efd0de813a38cf1b872f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 01:16:23 +0000 Subject: [PATCH 0365/1009] 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 fcea8fd..3b9fd3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8081 dotnet -Radarr.Api.V3 5.0.2.8081 dotnet -Radarr.Common 5.0.2.8081 dotnet -Radarr.Core 5.0.2.8081 dotnet -Radarr.Host 5.0.2.8081 dotnet -Radarr.Http 5.0.2.8081 dotnet -Radarr.Mono 5.0.2.8081 dotnet -Radarr.SignalR 5.0.2.8081 dotnet +Radarr 5.0.2.8086 dotnet +Radarr.Api.V3 5.0.2.8086 dotnet +Radarr.Common 5.0.2.8086 dotnet +Radarr.Core 5.0.2.8086 dotnet +Radarr.Host 5.0.2.8086 dotnet +Radarr.Http 5.0.2.8086 dotnet +Radarr.Mono 5.0.2.8086 dotnet +Radarr.SignalR 5.0.2.8086 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From fd7af85b38cbc7f81a5930b5b93025b4210a1ef3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 01:39:28 +0000 Subject: [PATCH 0366/1009] 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 3b9fd3d..e95be9a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8086 dotnet -Radarr.Api.V3 5.0.2.8086 dotnet -Radarr.Common 5.0.2.8086 dotnet -Radarr.Core 5.0.2.8086 dotnet -Radarr.Host 5.0.2.8086 dotnet -Radarr.Http 5.0.2.8086 dotnet -Radarr.Mono 5.0.2.8086 dotnet -Radarr.SignalR 5.0.2.8086 dotnet +Radarr 5.0.2.8088 dotnet +Radarr.Api.V3 5.0.2.8088 dotnet +Radarr.Common 5.0.2.8088 dotnet +Radarr.Core 5.0.2.8088 dotnet +Radarr.Host 5.0.2.8088 dotnet +Radarr.Http 5.0.2.8088 dotnet +Radarr.Mono 5.0.2.8088 dotnet +Radarr.SignalR 5.0.2.8088 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From d801fb4a95e5daf3c180583e45130f395ca75f81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 12:33:04 +0000 Subject: [PATCH 0367/1009] 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 e95be9a..0bd7c78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8088 dotnet -Radarr.Api.V3 5.0.2.8088 dotnet -Radarr.Common 5.0.2.8088 dotnet -Radarr.Core 5.0.2.8088 dotnet -Radarr.Host 5.0.2.8088 dotnet -Radarr.Http 5.0.2.8088 dotnet -Radarr.Mono 5.0.2.8088 dotnet -Radarr.SignalR 5.0.2.8088 dotnet +Radarr 5.0.2.8092 dotnet +Radarr.Api.V3 5.0.2.8092 dotnet +Radarr.Common 5.0.2.8092 dotnet +Radarr.Core 5.0.2.8092 dotnet +Radarr.Host 5.0.2.8092 dotnet +Radarr.Http 5.0.2.8092 dotnet +Radarr.Mono 5.0.2.8092 dotnet +Radarr.SignalR 5.0.2.8092 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 19711f92eea25d878b47c10a46f5632339d3d53b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 12:50:24 +0000 Subject: [PATCH 0368/1009] 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 0bd7c78..da8b840 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8092 dotnet -Radarr.Api.V3 5.0.2.8092 dotnet -Radarr.Common 5.0.2.8092 dotnet -Radarr.Core 5.0.2.8092 dotnet -Radarr.Host 5.0.2.8092 dotnet -Radarr.Http 5.0.2.8092 dotnet -Radarr.Mono 5.0.2.8092 dotnet -Radarr.SignalR 5.0.2.8092 dotnet +Radarr 5.0.2.8093 dotnet +Radarr.Api.V3 5.0.2.8093 dotnet +Radarr.Common 5.0.2.8093 dotnet +Radarr.Core 5.0.2.8093 dotnet +Radarr.Host 5.0.2.8093 dotnet +Radarr.Http 5.0.2.8093 dotnet +Radarr.Mono 5.0.2.8093 dotnet +Radarr.SignalR 5.0.2.8093 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 462bc82ad076fbcfd357b5944f9efdba91863268 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 20:28:38 +0000 Subject: [PATCH 0369/1009] 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 da8b840..106a4b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8093 dotnet -Radarr.Api.V3 5.0.2.8093 dotnet -Radarr.Common 5.0.2.8093 dotnet -Radarr.Core 5.0.2.8093 dotnet -Radarr.Host 5.0.2.8093 dotnet -Radarr.Http 5.0.2.8093 dotnet -Radarr.Mono 5.0.2.8093 dotnet -Radarr.SignalR 5.0.2.8093 dotnet +Radarr 5.0.2.8095 dotnet +Radarr.Api.V3 5.0.2.8095 dotnet +Radarr.Common 5.0.2.8095 dotnet +Radarr.Core 5.0.2.8095 dotnet +Radarr.Host 5.0.2.8095 dotnet +Radarr.Http 5.0.2.8095 dotnet +Radarr.Mono 5.0.2.8095 dotnet +Radarr.SignalR 5.0.2.8095 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 02d3db3dff8f8e9a7453a8a3cf7fc15d9442eea3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 01:59:34 +0000 Subject: [PATCH 0370/1009] 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 106a4b2..c9c9137 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8095 dotnet -Radarr.Api.V3 5.0.2.8095 dotnet -Radarr.Common 5.0.2.8095 dotnet -Radarr.Core 5.0.2.8095 dotnet -Radarr.Host 5.0.2.8095 dotnet -Radarr.Http 5.0.2.8095 dotnet -Radarr.Mono 5.0.2.8095 dotnet -Radarr.SignalR 5.0.2.8095 dotnet +Radarr 5.0.2.8096 dotnet +Radarr.Api.V3 5.0.2.8096 dotnet +Radarr.Common 5.0.2.8096 dotnet +Radarr.Core 5.0.2.8096 dotnet +Radarr.Host 5.0.2.8096 dotnet +Radarr.Http 5.0.2.8096 dotnet +Radarr.Mono 5.0.2.8096 dotnet +Radarr.SignalR 5.0.2.8096 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4e4675fb69be9ce5cfc3ce5e232b879efb8f6afe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 11:42:33 +0000 Subject: [PATCH 0371/1009] 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 c9c9137..c8fc309 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8096 dotnet -Radarr.Api.V3 5.0.2.8096 dotnet -Radarr.Common 5.0.2.8096 dotnet -Radarr.Core 5.0.2.8096 dotnet -Radarr.Host 5.0.2.8096 dotnet -Radarr.Http 5.0.2.8096 dotnet -Radarr.Mono 5.0.2.8096 dotnet -Radarr.SignalR 5.0.2.8096 dotnet +Radarr 5.0.2.8099 dotnet +Radarr.Api.V3 5.0.2.8099 dotnet +Radarr.Common 5.0.2.8099 dotnet +Radarr.Core 5.0.2.8099 dotnet +Radarr.Host 5.0.2.8099 dotnet +Radarr.Http 5.0.2.8099 dotnet +Radarr.Mono 5.0.2.8099 dotnet +Radarr.SignalR 5.0.2.8099 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From dff897efafdf759fccab270047fe5f0d507174e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 19:32:24 +0000 Subject: [PATCH 0372/1009] 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 c8fc309..bfab6b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8099 dotnet -Radarr.Api.V3 5.0.2.8099 dotnet -Radarr.Common 5.0.2.8099 dotnet -Radarr.Core 5.0.2.8099 dotnet -Radarr.Host 5.0.2.8099 dotnet -Radarr.Http 5.0.2.8099 dotnet -Radarr.Mono 5.0.2.8099 dotnet -Radarr.SignalR 5.0.2.8099 dotnet +Radarr 5.0.2.8101 dotnet +Radarr.Api.V3 5.0.2.8101 dotnet +Radarr.Common 5.0.2.8101 dotnet +Radarr.Core 5.0.2.8101 dotnet +Radarr.Host 5.0.2.8101 dotnet +Radarr.Http 5.0.2.8101 dotnet +Radarr.Mono 5.0.2.8101 dotnet +Radarr.SignalR 5.0.2.8101 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 930861f50305a6ff9e43b8c14397a727be49f2fc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Sep 2023 18:59:42 +0000 Subject: [PATCH 0373/1009] 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 bfab6b8..9c8c934 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8101 dotnet -Radarr.Api.V3 5.0.2.8101 dotnet -Radarr.Common 5.0.2.8101 dotnet -Radarr.Core 5.0.2.8101 dotnet -Radarr.Host 5.0.2.8101 dotnet -Radarr.Http 5.0.2.8101 dotnet -Radarr.Mono 5.0.2.8101 dotnet -Radarr.SignalR 5.0.2.8101 dotnet +Radarr 5.0.2.8103 dotnet +Radarr.Api.V3 5.0.2.8103 dotnet +Radarr.Common 5.0.2.8103 dotnet +Radarr.Core 5.0.2.8103 dotnet +Radarr.Host 5.0.2.8103 dotnet +Radarr.Http 5.0.2.8103 dotnet +Radarr.Mono 5.0.2.8103 dotnet +Radarr.SignalR 5.0.2.8103 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From bf61cd61f7b51d35bb5d956986ac139b8abddb3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Sep 2023 13:58:45 +0000 Subject: [PATCH 0374/1009] 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 9c8c934..a5486f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.2.8103 dotnet -Radarr.Api.V3 5.0.2.8103 dotnet -Radarr.Common 5.0.2.8103 dotnet -Radarr.Core 5.0.2.8103 dotnet -Radarr.Host 5.0.2.8103 dotnet -Radarr.Http 5.0.2.8103 dotnet -Radarr.Mono 5.0.2.8103 dotnet -Radarr.SignalR 5.0.2.8103 dotnet +Radarr 5.0.3.8104 dotnet +Radarr.Api.V3 5.0.3.8104 dotnet +Radarr.Common 5.0.3.8104 dotnet +Radarr.Core 5.0.3.8104 dotnet +Radarr.Host 5.0.3.8104 dotnet +Radarr.Http 5.0.3.8104 dotnet +Radarr.Mono 5.0.3.8104 dotnet +Radarr.SignalR 5.0.3.8104 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -379,7 +379,7 @@ busybox-binsh 1.36.1-r2 ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk coreutils 9.3-r1 apk -curl 8.2.1-r0 apk +curl 8.3.0-r0 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk jq 1.6-r3 apk @@ -387,8 +387,8 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.2-r0 apk -libcurl 8.2.1-r0 apk +libcrypto3 3.1.3-r0 apk +libcurl 8.3.0-r0 apk libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk libgpg-error 1.47-r1 apk @@ -397,7 +397,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.2-r0 apk +libssl3 3.1.3-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.4-r0 apk From 8d423a3c2e35d1f3a69f6ff8f4f5919a9418f8e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 17:21:59 +0000 Subject: [PATCH 0375/1009] 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 a5486f4..f80c57f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8104 dotnet -Radarr.Api.V3 5.0.3.8104 dotnet -Radarr.Common 5.0.3.8104 dotnet -Radarr.Core 5.0.3.8104 dotnet -Radarr.Host 5.0.3.8104 dotnet -Radarr.Http 5.0.3.8104 dotnet -Radarr.Mono 5.0.3.8104 dotnet -Radarr.SignalR 5.0.3.8104 dotnet +Radarr 5.0.3.8106 dotnet +Radarr.Api.V3 5.0.3.8106 dotnet +Radarr.Common 5.0.3.8106 dotnet +Radarr.Core 5.0.3.8106 dotnet +Radarr.Host 5.0.3.8106 dotnet +Radarr.Http 5.0.3.8106 dotnet +Radarr.Mono 5.0.3.8106 dotnet +Radarr.SignalR 5.0.3.8106 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 0571dfb89a885bb1ec5de42063167df746df553e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 20:51:00 +0000 Subject: [PATCH 0376/1009] 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 f80c57f..9bac3c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8106 dotnet -Radarr.Api.V3 5.0.3.8106 dotnet -Radarr.Common 5.0.3.8106 dotnet -Radarr.Core 5.0.3.8106 dotnet -Radarr.Host 5.0.3.8106 dotnet -Radarr.Http 5.0.3.8106 dotnet -Radarr.Mono 5.0.3.8106 dotnet -Radarr.SignalR 5.0.3.8106 dotnet +Radarr 5.0.3.8107 dotnet +Radarr.Api.V3 5.0.3.8107 dotnet +Radarr.Common 5.0.3.8107 dotnet +Radarr.Core 5.0.3.8107 dotnet +Radarr.Host 5.0.3.8107 dotnet +Radarr.Http 5.0.3.8107 dotnet +Radarr.Mono 5.0.3.8107 dotnet +Radarr.SignalR 5.0.3.8107 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 882d4cfefa870461156857b41f8762c89a960da6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Oct 2023 15:07:32 +0000 Subject: [PATCH 0377/1009] 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 9bac3c3..48ad7f6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8107 dotnet -Radarr.Api.V3 5.0.3.8107 dotnet -Radarr.Common 5.0.3.8107 dotnet -Radarr.Core 5.0.3.8107 dotnet -Radarr.Host 5.0.3.8107 dotnet -Radarr.Http 5.0.3.8107 dotnet -Radarr.Mono 5.0.3.8107 dotnet -Radarr.SignalR 5.0.3.8107 dotnet +Radarr 5.0.3.8109 dotnet +Radarr.Api.V3 5.0.3.8109 dotnet +Radarr.Common 5.0.3.8109 dotnet +Radarr.Core 5.0.3.8109 dotnet +Radarr.Host 5.0.3.8109 dotnet +Radarr.Http 5.0.3.8109 dotnet +Radarr.Mono 5.0.3.8109 dotnet +Radarr.SignalR 5.0.3.8109 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -370,7 +370,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 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk From e3017cc7dca5af2aa458b33b3679637fafb1b2d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Oct 2023 19:45:33 +0000 Subject: [PATCH 0378/1009] 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 48ad7f6..c7bfeb8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8109 dotnet -Radarr.Api.V3 5.0.3.8109 dotnet -Radarr.Common 5.0.3.8109 dotnet -Radarr.Core 5.0.3.8109 dotnet -Radarr.Host 5.0.3.8109 dotnet -Radarr.Http 5.0.3.8109 dotnet -Radarr.Mono 5.0.3.8109 dotnet -Radarr.SignalR 5.0.3.8109 dotnet +Radarr 5.0.3.8112 dotnet +Radarr.Api.V3 5.0.3.8112 dotnet +Radarr.Common 5.0.3.8112 dotnet +Radarr.Core 5.0.3.8112 dotnet +Radarr.Host 5.0.3.8112 dotnet +Radarr.Http 5.0.3.8112 dotnet +Radarr.Mono 5.0.3.8112 dotnet +Radarr.SignalR 5.0.3.8112 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4a14f915d23f140978e66f4ccf671a517a876fcf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 21:41:53 +0000 Subject: [PATCH 0379/1009] 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 c7bfeb8..fbda13b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8112 dotnet -Radarr.Api.V3 5.0.3.8112 dotnet -Radarr.Common 5.0.3.8112 dotnet -Radarr.Core 5.0.3.8112 dotnet -Radarr.Host 5.0.3.8112 dotnet -Radarr.Http 5.0.3.8112 dotnet -Radarr.Mono 5.0.3.8112 dotnet -Radarr.SignalR 5.0.3.8112 dotnet +Radarr 5.0.3.8115 dotnet +Radarr.Api.V3 5.0.3.8115 dotnet +Radarr.Common 5.0.3.8115 dotnet +Radarr.Core 5.0.3.8115 dotnet +Radarr.Host 5.0.3.8115 dotnet +Radarr.Http 5.0.3.8115 dotnet +Radarr.Mono 5.0.3.8115 dotnet +Radarr.SignalR 5.0.3.8115 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f8ecd5a020effef0fa7b4069279656e9b6358d17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Oct 2023 00:18:01 +0000 Subject: [PATCH 0380/1009] 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 fbda13b..d98b52e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8115 dotnet -Radarr.Api.V3 5.0.3.8115 dotnet -Radarr.Common 5.0.3.8115 dotnet -Radarr.Core 5.0.3.8115 dotnet -Radarr.Host 5.0.3.8115 dotnet -Radarr.Http 5.0.3.8115 dotnet -Radarr.Mono 5.0.3.8115 dotnet -Radarr.SignalR 5.0.3.8115 dotnet +Radarr 5.0.3.8121 dotnet +Radarr.Api.V3 5.0.3.8121 dotnet +Radarr.Common 5.0.3.8121 dotnet +Radarr.Core 5.0.3.8121 dotnet +Radarr.Host 5.0.3.8121 dotnet +Radarr.Http 5.0.3.8121 dotnet +Radarr.Mono 5.0.3.8121 dotnet +Radarr.SignalR 5.0.3.8121 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b1d0fb753f4b10a1923baa79b355207fe80e46f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 21:18:22 +0000 Subject: [PATCH 0381/1009] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 36 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fe6dda7..05d2cc6 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 = 'RADARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-radarr' @@ -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/radarr") | .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/radarr",\ - "shortDescription":"example description",\ - "libraryType":"docker",\ - "website":"https://github.com/linuxserver/docker-radarr",\ - "backendUrl":"https://ghcr.io/linuxserver/radarr",\ - "publicUrl":"https://lscr.io/linuxserver/radarr"}' || : - 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 4fe071d3815daf19bdc3a7d7512f43c61e9d1d5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 21:20:02 +0000 Subject: [PATCH 0382/1009] Bot Updating Templated Files --- README.md | 136 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 101 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 6c9bb75..c2132f7 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-radarr/blob/nightly/.github/CONTRIBUTING.md --> - +<!-- DO NOT EDIT THIS FILE MANUALLY --> +<!-- Please read https://github.com/linuxserver/docker-radarr/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 Radarr releases | | develop | ✅ | Radarr releases from their develop branch | | nightly | ✅ | Nightly Radarr releases | + ## Application Setup Access the webui at `<your-ip>:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr). @@ -81,7 +81,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)) @@ -119,12 +119,11 @@ docker run -d \ -v /path/to/downloadclient-downloads:/downloads `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/radarr: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 | | :----: | --- | @@ -143,10 +142,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 @@ -155,15 +154,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 @@ -174,12 +178,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 radarr /bin/bash` -* To monitor the logs of the container in realtime: `docker logs -f radarr` -* container version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr` -* image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/radarr:nightly` +* Shell access whilst the container is running: + + ```bash + docker exec -it radarr /bin/bash + ``` + +* To monitor the logs of the container in realtime: + + ```bash + docker logs -f radarr + ``` + +* Container version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr + ``` + +* Image version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/radarr:nightly + ``` ## Updating Info @@ -189,38 +210,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 radarr` -* Let compose update all containers as necessary: `docker-compose up -d` - * or update a single container: `docker-compose up -d radarr` -* 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 radarr + ``` + +* Update containers: + * All containers: + + ```bash + docker-compose up -d + ``` + + * Single container: + + ```bash + docker-compose up -d radarr + ``` + +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/radarr:nightly` -* Stop the running container: `docker stop radarr` -* Delete the container: `docker rm radarr` +* Update the image: + + ```bash + docker pull lscr.io/linuxserver/radarr:nightly + ``` + +* Stop the running container: + + ```bash + docker stop radarr + ``` + +* Delete the container: + + ```bash + docker rm radarr + ``` + * 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 radarr - ``` + ```bash + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once radarr + ``` * 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 8dcc6e6cfdd3bb4f4d80e76e9a836be8e7a5b0ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 21:23:39 +0000 Subject: [PATCH 0383/1009] 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 d98b52e..da48ce6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8121 dotnet -Radarr.Api.V3 5.0.3.8121 dotnet -Radarr.Common 5.0.3.8121 dotnet -Radarr.Core 5.0.3.8121 dotnet -Radarr.Host 5.0.3.8121 dotnet -Radarr.Http 5.0.3.8121 dotnet -Radarr.Mono 5.0.3.8121 dotnet -Radarr.SignalR 5.0.3.8121 dotnet +Radarr 5.0.3.8125 dotnet +Radarr.Api.V3 5.0.3.8125 dotnet +Radarr.Common 5.0.3.8125 dotnet +Radarr.Core 5.0.3.8125 dotnet +Radarr.Host 5.0.3.8125 dotnet +Radarr.Http 5.0.3.8125 dotnet +Radarr.Mono 5.0.3.8125 dotnet +Radarr.SignalR 5.0.3.8125 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -404,8 +404,8 @@ libxml2 2.11.4-r0 libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 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 9b5410b826e39de67ec675723efd40579bdc5896 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 22:39:52 +0000 Subject: [PATCH 0384/1009] 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 da48ce6..93e064e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8125 dotnet -Radarr.Api.V3 5.0.3.8125 dotnet -Radarr.Common 5.0.3.8125 dotnet -Radarr.Core 5.0.3.8125 dotnet -Radarr.Host 5.0.3.8125 dotnet -Radarr.Http 5.0.3.8125 dotnet -Radarr.Mono 5.0.3.8125 dotnet -Radarr.SignalR 5.0.3.8125 dotnet +Radarr 5.0.3.8126 dotnet +Radarr.Api.V3 5.0.3.8126 dotnet +Radarr.Common 5.0.3.8126 dotnet +Radarr.Core 5.0.3.8126 dotnet +Radarr.Host 5.0.3.8126 dotnet +Radarr.Http 5.0.3.8126 dotnet +Radarr.Mono 5.0.3.8126 dotnet +Radarr.SignalR 5.0.3.8126 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 005387c8342570a51d01756f435294a6a7cdb0a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 23:19:16 +0000 Subject: [PATCH 0385/1009] 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 93e064e..dbcf9ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8126 dotnet -Radarr.Api.V3 5.0.3.8126 dotnet -Radarr.Common 5.0.3.8126 dotnet -Radarr.Core 5.0.3.8126 dotnet -Radarr.Host 5.0.3.8126 dotnet -Radarr.Http 5.0.3.8126 dotnet -Radarr.Mono 5.0.3.8126 dotnet -Radarr.SignalR 5.0.3.8126 dotnet +Radarr 5.0.3.8128 dotnet +Radarr.Api.V3 5.0.3.8128 dotnet +Radarr.Common 5.0.3.8128 dotnet +Radarr.Core 5.0.3.8128 dotnet +Radarr.Host 5.0.3.8128 dotnet +Radarr.Http 5.0.3.8128 dotnet +Radarr.Mono 5.0.3.8128 dotnet +Radarr.SignalR 5.0.3.8128 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 0218d2834da4f0b6c74af3a498ebe85b77e66b4c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Oct 2023 09:32:38 +0000 Subject: [PATCH 0386/1009] 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 dbcf9ee..7242a2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.0.3.8128 dotnet -Radarr.Api.V3 5.0.3.8128 dotnet -Radarr.Common 5.0.3.8128 dotnet -Radarr.Core 5.0.3.8128 dotnet -Radarr.Host 5.0.3.8128 dotnet -Radarr.Http 5.0.3.8128 dotnet -Radarr.Mono 5.0.3.8128 dotnet -Radarr.SignalR 5.0.3.8128 dotnet +Radarr 5.1.0.8132 dotnet +Radarr.Api.V3 5.1.0.8132 dotnet +Radarr.Common 5.1.0.8132 dotnet +Radarr.Core 5.1.0.8132 dotnet +Radarr.Host 5.1.0.8132 dotnet +Radarr.Http 5.1.0.8132 dotnet +Radarr.Mono 5.1.0.8132 dotnet +Radarr.SignalR 5.1.0.8132 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b0f81f6313ebc3b4317995b73d58ffdd6a6d5527 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Oct 2023 23:44:25 +0000 Subject: [PATCH 0387/1009] 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 7242a2e..ed1b9da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8132 dotnet -Radarr.Api.V3 5.1.0.8132 dotnet -Radarr.Common 5.1.0.8132 dotnet -Radarr.Core 5.1.0.8132 dotnet -Radarr.Host 5.1.0.8132 dotnet -Radarr.Http 5.1.0.8132 dotnet -Radarr.Mono 5.1.0.8132 dotnet -Radarr.SignalR 5.1.0.8132 dotnet +Radarr 5.1.0.8138 dotnet +Radarr.Api.V3 5.1.0.8138 dotnet +Radarr.Common 5.1.0.8138 dotnet +Radarr.Core 5.1.0.8138 dotnet +Radarr.Host 5.1.0.8138 dotnet +Radarr.Http 5.1.0.8138 dotnet +Radarr.Mono 5.1.0.8138 dotnet +Radarr.SignalR 5.1.0.8138 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 9c4c46016fe2d93674708570e0396c777b06e313 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 05:42:52 +0000 Subject: [PATCH 0388/1009] 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 ed1b9da..35c3e7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8138 dotnet -Radarr.Api.V3 5.1.0.8138 dotnet -Radarr.Common 5.1.0.8138 dotnet -Radarr.Core 5.1.0.8138 dotnet -Radarr.Host 5.1.0.8138 dotnet -Radarr.Http 5.1.0.8138 dotnet -Radarr.Mono 5.1.0.8138 dotnet -Radarr.SignalR 5.1.0.8138 dotnet +Radarr 5.1.0.8147 dotnet +Radarr.Api.V3 5.1.0.8147 dotnet +Radarr.Common 5.1.0.8147 dotnet +Radarr.Core 5.1.0.8147 dotnet +Radarr.Host 5.1.0.8147 dotnet +Radarr.Http 5.1.0.8147 dotnet +Radarr.Mono 5.1.0.8147 dotnet +Radarr.SignalR 5.1.0.8147 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 38f17fdfea3a6f4dc3274e3541bc57fece062c98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 00:18:35 +0000 Subject: [PATCH 0389/1009] 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 35c3e7e..1886884 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8147 dotnet -Radarr.Api.V3 5.1.0.8147 dotnet -Radarr.Common 5.1.0.8147 dotnet -Radarr.Core 5.1.0.8147 dotnet -Radarr.Host 5.1.0.8147 dotnet -Radarr.Http 5.1.0.8147 dotnet -Radarr.Mono 5.1.0.8147 dotnet -Radarr.SignalR 5.1.0.8147 dotnet +Radarr 5.1.0.8151 dotnet +Radarr.Api.V3 5.1.0.8151 dotnet +Radarr.Common 5.1.0.8151 dotnet +Radarr.Core 5.1.0.8151 dotnet +Radarr.Host 5.1.0.8151 dotnet +Radarr.Http 5.1.0.8151 dotnet +Radarr.Mono 5.1.0.8151 dotnet +Radarr.SignalR 5.1.0.8151 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From bd964639c4416bea0acbd74af761e86e8f2b49f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 01:22:36 +0000 Subject: [PATCH 0390/1009] 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 1886884..9fa1395 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8151 dotnet -Radarr.Api.V3 5.1.0.8151 dotnet -Radarr.Common 5.1.0.8151 dotnet -Radarr.Core 5.1.0.8151 dotnet -Radarr.Host 5.1.0.8151 dotnet -Radarr.Http 5.1.0.8151 dotnet -Radarr.Mono 5.1.0.8151 dotnet -Radarr.SignalR 5.1.0.8151 dotnet +Radarr 5.1.0.8152 dotnet +Radarr.Api.V3 5.1.0.8152 dotnet +Radarr.Common 5.1.0.8152 dotnet +Radarr.Core 5.1.0.8152 dotnet +Radarr.Host 5.1.0.8152 dotnet +Radarr.Http 5.1.0.8152 dotnet +Radarr.Mono 5.1.0.8152 dotnet +Radarr.SignalR 5.1.0.8152 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5db097117e0a5725e47e0e6b1a2800302c2ed1f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 02:10:13 +0000 Subject: [PATCH 0391/1009] 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 9fa1395..a517d8d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8152 dotnet -Radarr.Api.V3 5.1.0.8152 dotnet -Radarr.Common 5.1.0.8152 dotnet -Radarr.Core 5.1.0.8152 dotnet -Radarr.Host 5.1.0.8152 dotnet -Radarr.Http 5.1.0.8152 dotnet -Radarr.Mono 5.1.0.8152 dotnet -Radarr.SignalR 5.1.0.8152 dotnet +Radarr 5.1.0.8153 dotnet +Radarr.Api.V3 5.1.0.8153 dotnet +Radarr.Common 5.1.0.8153 dotnet +Radarr.Core 5.1.0.8153 dotnet +Radarr.Host 5.1.0.8153 dotnet +Radarr.Http 5.1.0.8153 dotnet +Radarr.Mono 5.1.0.8153 dotnet +Radarr.SignalR 5.1.0.8153 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 134bb6a8203a4e4ee7d5776c77e9642480402900 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 03:01:29 +0000 Subject: [PATCH 0392/1009] 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 a517d8d..960f7a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8153 dotnet -Radarr.Api.V3 5.1.0.8153 dotnet -Radarr.Common 5.1.0.8153 dotnet -Radarr.Core 5.1.0.8153 dotnet -Radarr.Host 5.1.0.8153 dotnet -Radarr.Http 5.1.0.8153 dotnet -Radarr.Mono 5.1.0.8153 dotnet -Radarr.SignalR 5.1.0.8153 dotnet +Radarr 5.1.0.8154 dotnet +Radarr.Api.V3 5.1.0.8154 dotnet +Radarr.Common 5.1.0.8154 dotnet +Radarr.Core 5.1.0.8154 dotnet +Radarr.Host 5.1.0.8154 dotnet +Radarr.Http 5.1.0.8154 dotnet +Radarr.Mono 5.1.0.8154 dotnet +Radarr.SignalR 5.1.0.8154 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 3934106318b75df8d16d24afc35a1164b0e3a142 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 10:55:17 +0000 Subject: [PATCH 0393/1009] 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 960f7a7..4586ff8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8154 dotnet -Radarr.Api.V3 5.1.0.8154 dotnet -Radarr.Common 5.1.0.8154 dotnet -Radarr.Core 5.1.0.8154 dotnet -Radarr.Host 5.1.0.8154 dotnet -Radarr.Http 5.1.0.8154 dotnet -Radarr.Mono 5.1.0.8154 dotnet -Radarr.SignalR 5.1.0.8154 dotnet +Radarr 5.1.0.8156 dotnet +Radarr.Api.V3 5.1.0.8156 dotnet +Radarr.Common 5.1.0.8156 dotnet +Radarr.Core 5.1.0.8156 dotnet +Radarr.Host 5.1.0.8156 dotnet +Radarr.Http 5.1.0.8156 dotnet +Radarr.Mono 5.1.0.8156 dotnet +Radarr.SignalR 5.1.0.8156 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 082c52539736358d44ba5d14a2f7f355c999d768 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 12:38:14 +0000 Subject: [PATCH 0394/1009] 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 4586ff8..5f4f498 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8156 dotnet -Radarr.Api.V3 5.1.0.8156 dotnet -Radarr.Common 5.1.0.8156 dotnet -Radarr.Core 5.1.0.8156 dotnet -Radarr.Host 5.1.0.8156 dotnet -Radarr.Http 5.1.0.8156 dotnet -Radarr.Mono 5.1.0.8156 dotnet -Radarr.SignalR 5.1.0.8156 dotnet +Radarr 5.1.0.8157 dotnet +Radarr.Api.V3 5.1.0.8157 dotnet +Radarr.Common 5.1.0.8157 dotnet +Radarr.Core 5.1.0.8157 dotnet +Radarr.Host 5.1.0.8157 dotnet +Radarr.Http 5.1.0.8157 dotnet +Radarr.Mono 5.1.0.8157 dotnet +Radarr.SignalR 5.1.0.8157 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f30100ad04b77f68cedef9c2a533df7a3bf80185 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Oct 2023 02:41:28 +0000 Subject: [PATCH 0395/1009] 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 5f4f498..341167b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8157 dotnet -Radarr.Api.V3 5.1.0.8157 dotnet -Radarr.Common 5.1.0.8157 dotnet -Radarr.Core 5.1.0.8157 dotnet -Radarr.Host 5.1.0.8157 dotnet -Radarr.Http 5.1.0.8157 dotnet -Radarr.Mono 5.1.0.8157 dotnet -Radarr.SignalR 5.1.0.8157 dotnet +Radarr 5.1.0.8158 dotnet +Radarr.Api.V3 5.1.0.8158 dotnet +Radarr.Common 5.1.0.8158 dotnet +Radarr.Core 5.1.0.8158 dotnet +Radarr.Host 5.1.0.8158 dotnet +Radarr.Http 5.1.0.8158 dotnet +Radarr.Mono 5.1.0.8158 dotnet +Radarr.SignalR 5.1.0.8158 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From fa86952a89abd4cbbaba25d0becebb273294c5f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Oct 2023 08:31:26 +0000 Subject: [PATCH 0396/1009] 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 341167b..a55ea54 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8158 dotnet -Radarr.Api.V3 5.1.0.8158 dotnet -Radarr.Common 5.1.0.8158 dotnet -Radarr.Core 5.1.0.8158 dotnet -Radarr.Host 5.1.0.8158 dotnet -Radarr.Http 5.1.0.8158 dotnet -Radarr.Mono 5.1.0.8158 dotnet -Radarr.SignalR 5.1.0.8158 dotnet +Radarr 5.1.0.8165 dotnet +Radarr.Api.V3 5.1.0.8165 dotnet +Radarr.Common 5.1.0.8165 dotnet +Radarr.Core 5.1.0.8165 dotnet +Radarr.Host 5.1.0.8165 dotnet +Radarr.Http 5.1.0.8165 dotnet +Radarr.Mono 5.1.0.8165 dotnet +Radarr.SignalR 5.1.0.8165 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c360a6bc994d03c4bedf9820146b615833a4ae1d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Oct 2023 18:19:53 +0000 Subject: [PATCH 0397/1009] 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 a55ea54..6100d97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8165 dotnet -Radarr.Api.V3 5.1.0.8165 dotnet -Radarr.Common 5.1.0.8165 dotnet -Radarr.Core 5.1.0.8165 dotnet -Radarr.Host 5.1.0.8165 dotnet -Radarr.Http 5.1.0.8165 dotnet -Radarr.Mono 5.1.0.8165 dotnet -Radarr.SignalR 5.1.0.8165 dotnet +Radarr 5.1.0.8168 dotnet +Radarr.Api.V3 5.1.0.8168 dotnet +Radarr.Common 5.1.0.8168 dotnet +Radarr.Core 5.1.0.8168 dotnet +Radarr.Host 5.1.0.8168 dotnet +Radarr.Http 5.1.0.8168 dotnet +Radarr.Mono 5.1.0.8168 dotnet +Radarr.SignalR 5.1.0.8168 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -374,12 +374,12 @@ alpine-release 3.18.4-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 coreutils 9.3-r1 apk -curl 8.3.0-r0 apk +curl 8.4.0-r0 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk jq 1.6-r3 apk @@ -388,7 +388,7 @@ libattr 2.5.1-r4 libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk libgpg-error 1.47-r1 apk @@ -409,7 +409,7 @@ musl-utils 1.2.4-r2 ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk netstandard 6.0.2123.36311 dotnet -nghttp2-libs 1.55.1-r0 apk +nghttp2-libs 1.57.0-r0 apk oniguruma 6.9.8-r1 apk procps-ng 4.0.4-r0 apk readline 8.2.1-r1 apk @@ -417,7 +417,7 @@ scanelf 1.3.7-r1 shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r2 apk +ssl_client 1.36.1-r4 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk xmlstarlet 1.6.1-r2 apk From ccc99575edfef466230b4a7a3cd9c1bd6721fdf4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Oct 2023 02:37:18 +0000 Subject: [PATCH 0398/1009] 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 6100d97..e48715a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8168 dotnet -Radarr.Api.V3 5.1.0.8168 dotnet -Radarr.Common 5.1.0.8168 dotnet -Radarr.Core 5.1.0.8168 dotnet -Radarr.Host 5.1.0.8168 dotnet -Radarr.Http 5.1.0.8168 dotnet -Radarr.Mono 5.1.0.8168 dotnet -Radarr.SignalR 5.1.0.8168 dotnet +Radarr 5.1.0.8172 dotnet +Radarr.Api.V3 5.1.0.8172 dotnet +Radarr.Common 5.1.0.8172 dotnet +Radarr.Core 5.1.0.8172 dotnet +Radarr.Host 5.1.0.8172 dotnet +Radarr.Http 5.1.0.8172 dotnet +Radarr.Mono 5.1.0.8172 dotnet +Radarr.SignalR 5.1.0.8172 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e1c87b62da5d2eae7aa71ce917d0100771a27d50 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Oct 2023 05:58:58 +0000 Subject: [PATCH 0399/1009] 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 e48715a..ad887db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.0.8172 dotnet -Radarr.Api.V3 5.1.0.8172 dotnet -Radarr.Common 5.1.0.8172 dotnet -Radarr.Core 5.1.0.8172 dotnet -Radarr.Host 5.1.0.8172 dotnet -Radarr.Http 5.1.0.8172 dotnet -Radarr.Mono 5.1.0.8172 dotnet -Radarr.SignalR 5.1.0.8172 dotnet +Radarr 5.1.1.8174 dotnet +Radarr.Api.V3 5.1.1.8174 dotnet +Radarr.Common 5.1.1.8174 dotnet +Radarr.Core 5.1.1.8174 dotnet +Radarr.Host 5.1.1.8174 dotnet +Radarr.Http 5.1.1.8174 dotnet +Radarr.Mono 5.1.1.8174 dotnet +Radarr.SignalR 5.1.1.8174 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 329462358858da81ffab54dcb859e7dfcf0ad7f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Oct 2023 03:55:53 +0000 Subject: [PATCH 0400/1009] 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 ad887db..f5d0d56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8174 dotnet -Radarr.Api.V3 5.1.1.8174 dotnet -Radarr.Common 5.1.1.8174 dotnet -Radarr.Core 5.1.1.8174 dotnet -Radarr.Host 5.1.1.8174 dotnet -Radarr.Http 5.1.1.8174 dotnet -Radarr.Mono 5.1.1.8174 dotnet -Radarr.SignalR 5.1.1.8174 dotnet +Radarr 5.1.1.8178 dotnet +Radarr.Api.V3 5.1.1.8178 dotnet +Radarr.Common 5.1.1.8178 dotnet +Radarr.Core 5.1.1.8178 dotnet +Radarr.Host 5.1.1.8178 dotnet +Radarr.Http 5.1.1.8178 dotnet +Radarr.Mono 5.1.1.8178 dotnet +Radarr.SignalR 5.1.1.8178 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7a76608fefa22e6fe82e35902cd3023f498d7b06 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Oct 2023 12:14:08 +0000 Subject: [PATCH 0401/1009] 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 f5d0d56..381ec93 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8178 dotnet -Radarr.Api.V3 5.1.1.8178 dotnet -Radarr.Common 5.1.1.8178 dotnet -Radarr.Core 5.1.1.8178 dotnet -Radarr.Host 5.1.1.8178 dotnet -Radarr.Http 5.1.1.8178 dotnet -Radarr.Mono 5.1.1.8178 dotnet -Radarr.SignalR 5.1.1.8178 dotnet +Radarr 5.1.1.8181 dotnet +Radarr.Api.V3 5.1.1.8181 dotnet +Radarr.Common 5.1.1.8181 dotnet +Radarr.Core 5.1.1.8181 dotnet +Radarr.Host 5.1.1.8181 dotnet +Radarr.Http 5.1.1.8181 dotnet +Radarr.Mono 5.1.1.8181 dotnet +Radarr.SignalR 5.1.1.8181 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ba728378db007f2d198d33a680599c484ec891c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Oct 2023 16:36:06 +0000 Subject: [PATCH 0402/1009] 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 381ec93..c68dd83 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8181 dotnet -Radarr.Api.V3 5.1.1.8181 dotnet -Radarr.Common 5.1.1.8181 dotnet -Radarr.Core 5.1.1.8181 dotnet -Radarr.Host 5.1.1.8181 dotnet -Radarr.Http 5.1.1.8181 dotnet -Radarr.Mono 5.1.1.8181 dotnet -Radarr.SignalR 5.1.1.8181 dotnet +Radarr 5.1.1.8183 dotnet +Radarr.Api.V3 5.1.1.8183 dotnet +Radarr.Common 5.1.1.8183 dotnet +Radarr.Core 5.1.1.8183 dotnet +Radarr.Host 5.1.1.8183 dotnet +Radarr.Http 5.1.1.8183 dotnet +Radarr.Mono 5.1.1.8183 dotnet +Radarr.SignalR 5.1.1.8183 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From fa880ecf182137cf8cf337e303088ce690494e76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Oct 2023 20:06:40 +0000 Subject: [PATCH 0403/1009] 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 c68dd83..fc9204c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8183 dotnet -Radarr.Api.V3 5.1.1.8183 dotnet -Radarr.Common 5.1.1.8183 dotnet -Radarr.Core 5.1.1.8183 dotnet -Radarr.Host 5.1.1.8183 dotnet -Radarr.Http 5.1.1.8183 dotnet -Radarr.Mono 5.1.1.8183 dotnet -Radarr.SignalR 5.1.1.8183 dotnet +Radarr 5.1.1.8192 dotnet +Radarr.Api.V3 5.1.1.8192 dotnet +Radarr.Common 5.1.1.8192 dotnet +Radarr.Core 5.1.1.8192 dotnet +Radarr.Host 5.1.1.8192 dotnet +Radarr.Http 5.1.1.8192 dotnet +Radarr.Mono 5.1.1.8192 dotnet +Radarr.SignalR 5.1.1.8192 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 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 251710b1f1aeea5e2f192eea97cca8a645c9144b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Oct 2023 20:29:31 +0000 Subject: [PATCH 0404/1009] 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 fc9204c..7f41e4c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8192 dotnet -Radarr.Api.V3 5.1.1.8192 dotnet -Radarr.Common 5.1.1.8192 dotnet -Radarr.Core 5.1.1.8192 dotnet -Radarr.Host 5.1.1.8192 dotnet -Radarr.Http 5.1.1.8192 dotnet -Radarr.Mono 5.1.1.8192 dotnet -Radarr.SignalR 5.1.1.8192 dotnet +Radarr 5.1.1.8194 dotnet +Radarr.Api.V3 5.1.1.8194 dotnet +Radarr.Common 5.1.1.8194 dotnet +Radarr.Core 5.1.1.8194 dotnet +Radarr.Host 5.1.1.8194 dotnet +Radarr.Http 5.1.1.8194 dotnet +Radarr.Mono 5.1.1.8194 dotnet +Radarr.SignalR 5.1.1.8194 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f70bbafc76c305708cac97e7e14d520ac35a6d02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Oct 2023 02:21:51 +0000 Subject: [PATCH 0405/1009] 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 7f41e4c..bdac2b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8194 dotnet -Radarr.Api.V3 5.1.1.8194 dotnet -Radarr.Common 5.1.1.8194 dotnet -Radarr.Core 5.1.1.8194 dotnet -Radarr.Host 5.1.1.8194 dotnet -Radarr.Http 5.1.1.8194 dotnet -Radarr.Mono 5.1.1.8194 dotnet -Radarr.SignalR 5.1.1.8194 dotnet +Radarr 5.1.1.8195 dotnet +Radarr.Api.V3 5.1.1.8195 dotnet +Radarr.Common 5.1.1.8195 dotnet +Radarr.Core 5.1.1.8195 dotnet +Radarr.Host 5.1.1.8195 dotnet +Radarr.Http 5.1.1.8195 dotnet +Radarr.Mono 5.1.1.8195 dotnet +Radarr.SignalR 5.1.1.8195 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 33809c2eac92454deb74122090c52d457c770647 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Oct 2023 08:38:17 +0000 Subject: [PATCH 0406/1009] 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 bdac2b4..0b174e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.1.8195 dotnet -Radarr.Api.V3 5.1.1.8195 dotnet -Radarr.Common 5.1.1.8195 dotnet -Radarr.Core 5.1.1.8195 dotnet -Radarr.Host 5.1.1.8195 dotnet -Radarr.Http 5.1.1.8195 dotnet -Radarr.Mono 5.1.1.8195 dotnet -Radarr.SignalR 5.1.1.8195 dotnet +Radarr 5.1.2.8198 dotnet +Radarr.Api.V3 5.1.2.8198 dotnet +Radarr.Common 5.1.2.8198 dotnet +Radarr.Core 5.1.2.8198 dotnet +Radarr.Host 5.1.2.8198 dotnet +Radarr.Http 5.1.2.8198 dotnet +Radarr.Mono 5.1.2.8198 dotnet +Radarr.SignalR 5.1.2.8198 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 1e6b3fd4e93325be2441a149d92c4492d312009e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Oct 2023 08:37:39 +0000 Subject: [PATCH 0407/1009] 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 0b174e8..d4acf41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.2.8198 dotnet -Radarr.Api.V3 5.1.2.8198 dotnet -Radarr.Common 5.1.2.8198 dotnet -Radarr.Core 5.1.2.8198 dotnet -Radarr.Host 5.1.2.8198 dotnet -Radarr.Http 5.1.2.8198 dotnet -Radarr.Mono 5.1.2.8198 dotnet -Radarr.SignalR 5.1.2.8198 dotnet +Radarr 5.1.2.8219 dotnet +Radarr.Api.V3 5.1.2.8219 dotnet +Radarr.Common 5.1.2.8219 dotnet +Radarr.Core 5.1.2.8219 dotnet +Radarr.Host 5.1.2.8219 dotnet +Radarr.Http 5.1.2.8219 dotnet +Radarr.Mono 5.1.2.8219 dotnet +Radarr.SignalR 5.1.2.8219 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -387,7 +387,7 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk @@ -397,7 +397,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.3-r0 apk +libssl3 3.1.4-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.4-r0 apk From 401206711fdf996a15e0d35e99da3cd115416e15 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Oct 2023 09:31:41 +0000 Subject: [PATCH 0408/1009] 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 d4acf41..b095dbb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.2.8219 dotnet -Radarr.Api.V3 5.1.2.8219 dotnet -Radarr.Common 5.1.2.8219 dotnet -Radarr.Core 5.1.2.8219 dotnet -Radarr.Host 5.1.2.8219 dotnet -Radarr.Http 5.1.2.8219 dotnet -Radarr.Mono 5.1.2.8219 dotnet -Radarr.SignalR 5.1.2.8219 dotnet +Radarr 5.1.3.8220 dotnet +Radarr.Api.V3 5.1.3.8220 dotnet +Radarr.Common 5.1.3.8220 dotnet +Radarr.Core 5.1.3.8220 dotnet +Radarr.Host 5.1.3.8220 dotnet +Radarr.Http 5.1.3.8220 dotnet +Radarr.Mono 5.1.3.8220 dotnet +Radarr.SignalR 5.1.3.8220 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ddac920b572774356f9e8419f1f477db8cbde893 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Oct 2023 12:33:13 +0000 Subject: [PATCH 0409/1009] 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 b095dbb..8603b1f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8220 dotnet -Radarr.Api.V3 5.1.3.8220 dotnet -Radarr.Common 5.1.3.8220 dotnet -Radarr.Core 5.1.3.8220 dotnet -Radarr.Host 5.1.3.8220 dotnet -Radarr.Http 5.1.3.8220 dotnet -Radarr.Mono 5.1.3.8220 dotnet -Radarr.SignalR 5.1.3.8220 dotnet +Radarr 5.1.3.8223 dotnet +Radarr.Api.V3 5.1.3.8223 dotnet +Radarr.Common 5.1.3.8223 dotnet +Radarr.Core 5.1.3.8223 dotnet +Radarr.Host 5.1.3.8223 dotnet +Radarr.Http 5.1.3.8223 dotnet +Radarr.Mono 5.1.3.8223 dotnet +Radarr.SignalR 5.1.3.8223 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 8e80a88da4a5ebebfa12d4a9a508e30f1f40fd76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Oct 2023 13:02:18 +0000 Subject: [PATCH 0410/1009] 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 8603b1f..fe63f53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,14 +183,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8223 dotnet -Radarr.Api.V3 5.1.3.8223 dotnet -Radarr.Common 5.1.3.8223 dotnet -Radarr.Core 5.1.3.8223 dotnet -Radarr.Host 5.1.3.8223 dotnet -Radarr.Http 5.1.3.8223 dotnet -Radarr.Mono 5.1.3.8223 dotnet -Radarr.SignalR 5.1.3.8223 dotnet +Radarr 5.1.3.8224 dotnet +Radarr.Api.V3 5.1.3.8224 dotnet +Radarr.Common 5.1.3.8224 dotnet +Radarr.Core 5.1.3.8224 dotnet +Radarr.Host 5.1.3.8224 dotnet +Radarr.Http 5.1.3.8224 dotnet +Radarr.Mono 5.1.3.8224 dotnet +Radarr.SignalR 5.1.3.8224 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f4fc27139c1232c09487f81dd9cee04613b8c563 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Nov 2023 12:05:48 +0000 Subject: [PATCH 0411/1009] 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 fe63f53..48d8cda 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.143.55328 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 @@ -183,14 +184,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8224 dotnet -Radarr.Api.V3 5.1.3.8224 dotnet -Radarr.Common 5.1.3.8224 dotnet -Radarr.Core 5.1.3.8224 dotnet -Radarr.Host 5.1.3.8224 dotnet -Radarr.Http 5.1.3.8224 dotnet -Radarr.Mono 5.1.3.8224 dotnet -Radarr.SignalR 5.1.3.8224 dotnet +Radarr 5.1.3.8225 dotnet +Radarr.Api.V3 5.1.3.8225 dotnet +Radarr.Common 5.1.3.8225 dotnet +Radarr.Core 5.1.3.8225 dotnet +Radarr.Host 5.1.3.8225 dotnet +Radarr.Http 5.1.3.8225 dotnet +Radarr.Mono 5.1.3.8225 dotnet +Radarr.SignalR 5.1.3.8225 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 6889a7866288a722846c11905cb24a33c7557edf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Nov 2023 12:33:31 +0000 Subject: [PATCH 0412/1009] 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 48d8cda..30fbb13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLog.Extensions.Logging for .NET 6 5.3.3.381 Noda Time 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8225 dotnet -Radarr.Api.V3 5.1.3.8225 dotnet -Radarr.Common 5.1.3.8225 dotnet -Radarr.Core 5.1.3.8225 dotnet -Radarr.Host 5.1.3.8225 dotnet -Radarr.Http 5.1.3.8225 dotnet -Radarr.Mono 5.1.3.8225 dotnet -Radarr.SignalR 5.1.3.8225 dotnet +Radarr 5.1.3.8226 dotnet +Radarr.Api.V3 5.1.3.8226 dotnet +Radarr.Common 5.1.3.8226 dotnet +Radarr.Core 5.1.3.8226 dotnet +Radarr.Host 5.1.3.8226 dotnet +Radarr.Http 5.1.3.8226 dotnet +Radarr.Mono 5.1.3.8226 dotnet +Radarr.SignalR 5.1.3.8226 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 23e2c97c0866e558a0895f4be525319025c2f635 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Nov 2023 16:21:06 +0000 Subject: [PATCH 0413/1009] 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 30fbb13..41069a4 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.143.55328 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 FFMpegCore 4.0.0.0 dotnet @@ -31,7 +31,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Instances 1.0.0.0 dotnet -Json.NET .NET 6.0 13.0.3.27908 dotnet +Json.NET.NET6.0 13.0.3.27908 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -178,20 +178,20 @@ 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.3.1999 dotnet -NLog.Extensions.Logging for .NET 6 5.3.3.381 dotnet -Noda Time 3.0.0.0 dotnet +NLog.Extensions.Loggingfor.NET6 5.3.3.381 dotnet +NLogSyslogtarget 7.0.0.0 dotnet +NLogforNetStandard2.0 5.2.3.1999 dotnet +NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8226 dotnet -Radarr.Api.V3 5.1.3.8226 dotnet -Radarr.Common 5.1.3.8226 dotnet -Radarr.Core 5.1.3.8226 dotnet -Radarr.Host 5.1.3.8226 dotnet -Radarr.Http 5.1.3.8226 dotnet -Radarr.Mono 5.1.3.8226 dotnet -Radarr.SignalR 5.1.3.8226 dotnet +Radarr 5.1.3.8235 dotnet +Radarr.Api.V3 5.1.3.8235 dotnet +Radarr.Common 5.1.3.8235 dotnet +Radarr.Core 5.1.3.8235 dotnet +Radarr.Host 5.1.3.8235 dotnet +Radarr.Http 5.1.3.8235 dotnet +Radarr.Mono 5.1.3.8235 dotnet +Radarr.SignalR 5.1.3.8235 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.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 1e64bc36fe44653366b4145e23825a678b42a8be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Nov 2023 19:10:11 +0000 Subject: [PATCH 0414/1009] 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 41069a4..ebae1f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8235 dotnet -Radarr.Api.V3 5.1.3.8235 dotnet -Radarr.Common 5.1.3.8235 dotnet -Radarr.Core 5.1.3.8235 dotnet -Radarr.Host 5.1.3.8235 dotnet -Radarr.Http 5.1.3.8235 dotnet -Radarr.Mono 5.1.3.8235 dotnet -Radarr.SignalR 5.1.3.8235 dotnet +Radarr 5.1.3.8237 dotnet +Radarr.Api.V3 5.1.3.8237 dotnet +Radarr.Common 5.1.3.8237 dotnet +Radarr.Core 5.1.3.8237 dotnet +Radarr.Host 5.1.3.8237 dotnet +Radarr.Http 5.1.3.8237 dotnet +Radarr.Mono 5.1.3.8237 dotnet +Radarr.SignalR 5.1.3.8237 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 36164e72d6990e70ddba39fc3b01a75674ab7081 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Nov 2023 19:30:50 +0000 Subject: [PATCH 0415/1009] 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 ebae1f8..792d43f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8237 dotnet -Radarr.Api.V3 5.1.3.8237 dotnet -Radarr.Common 5.1.3.8237 dotnet -Radarr.Core 5.1.3.8237 dotnet -Radarr.Host 5.1.3.8237 dotnet -Radarr.Http 5.1.3.8237 dotnet -Radarr.Mono 5.1.3.8237 dotnet -Radarr.SignalR 5.1.3.8237 dotnet +Radarr 5.1.3.8240 dotnet +Radarr.Api.V3 5.1.3.8240 dotnet +Radarr.Common 5.1.3.8240 dotnet +Radarr.Core 5.1.3.8240 dotnet +Radarr.Host 5.1.3.8240 dotnet +Radarr.Http 5.1.3.8240 dotnet +Radarr.Mono 5.1.3.8240 dotnet +Radarr.SignalR 5.1.3.8240 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 45219f5bc9ec7b53cc27873d5f03eefc52409dec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Nov 2023 02:20:32 +0000 Subject: [PATCH 0416/1009] 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 792d43f..a8a745e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8240 dotnet -Radarr.Api.V3 5.1.3.8240 dotnet -Radarr.Common 5.1.3.8240 dotnet -Radarr.Core 5.1.3.8240 dotnet -Radarr.Host 5.1.3.8240 dotnet -Radarr.Http 5.1.3.8240 dotnet -Radarr.Mono 5.1.3.8240 dotnet -Radarr.SignalR 5.1.3.8240 dotnet +Radarr 5.1.3.8244 dotnet +Radarr.Api.V3 5.1.3.8244 dotnet +Radarr.Common 5.1.3.8244 dotnet +Radarr.Core 5.1.3.8244 dotnet +Radarr.Host 5.1.3.8244 dotnet +Radarr.Http 5.1.3.8244 dotnet +Radarr.Mono 5.1.3.8244 dotnet +Radarr.SignalR 5.1.3.8244 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 61e8cd0511f775c10a0a1779f3e8b52d03211906 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Nov 2023 04:59:47 +0000 Subject: [PATCH 0417/1009] 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 a8a745e..c911501 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.1.3.8244 dotnet -Radarr.Api.V3 5.1.3.8244 dotnet -Radarr.Common 5.1.3.8244 dotnet -Radarr.Core 5.1.3.8244 dotnet -Radarr.Host 5.1.3.8244 dotnet -Radarr.Http 5.1.3.8244 dotnet -Radarr.Mono 5.1.3.8244 dotnet -Radarr.SignalR 5.1.3.8244 dotnet +Radarr 5.2.0.8247 dotnet +Radarr.Api.V3 5.2.0.8247 dotnet +Radarr.Common 5.2.0.8247 dotnet +Radarr.Core 5.2.0.8247 dotnet +Radarr.Host 5.2.0.8247 dotnet +Radarr.Http 5.2.0.8247 dotnet +Radarr.Mono 5.2.0.8247 dotnet +Radarr.SignalR 5.2.0.8247 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e13b0e823e7ab6d21c900d543682273dffd804f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Nov 2023 19:21:51 +0000 Subject: [PATCH 0418/1009] Bot Updating Package Versions --- package_versions.txt | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c911501..6c5b6f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.0.8247 dotnet -Radarr.Api.V3 5.2.0.8247 dotnet -Radarr.Common 5.2.0.8247 dotnet -Radarr.Core 5.2.0.8247 dotnet -Radarr.Host 5.2.0.8247 dotnet -Radarr.Http 5.2.0.8247 dotnet -Radarr.Mono 5.2.0.8247 dotnet -Radarr.SignalR 5.2.0.8247 dotnet +Radarr 5.2.0.8250 dotnet +Radarr.Api.V3 5.2.0.8250 dotnet +Radarr.Common 5.2.0.8250 dotnet +Radarr.Core 5.2.0.8250 dotnet +Radarr.Host 5.2.0.8250 dotnet +Radarr.Http 5.2.0.8250 dotnet +Radarr.Mono 5.2.0.8250 dotnet +Radarr.SignalR 5.2.0.8250 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -375,8 +375,8 @@ alpine-release 3.18.4-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 coreutils 9.3-r1 apk @@ -388,7 +388,7 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk @@ -398,7 +398,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.4-r0 apk +libssl3 3.1.4-r1 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.4-r0 apk @@ -418,7 +418,7 @@ scanelf 1.3.7-r1 shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r4 apk +ssl_client 1.36.1-r5 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk xmlstarlet 1.6.1-r2 apk From add9889d98cc28b382105e6f8ceeaa6fb425e298 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 13:46:33 +0000 Subject: [PATCH 0419/1009] 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 6c5b6f2..0cff13d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.0.8250 dotnet -Radarr.Api.V3 5.2.0.8250 dotnet -Radarr.Common 5.2.0.8250 dotnet -Radarr.Core 5.2.0.8250 dotnet -Radarr.Host 5.2.0.8250 dotnet -Radarr.Http 5.2.0.8250 dotnet -Radarr.Mono 5.2.0.8250 dotnet -Radarr.SignalR 5.2.0.8250 dotnet +Radarr 5.2.1.8256 dotnet +Radarr.Api.V3 5.2.1.8256 dotnet +Radarr.Common 5.2.1.8256 dotnet +Radarr.Core 5.2.1.8256 dotnet +Radarr.Host 5.2.1.8256 dotnet +Radarr.Http 5.2.1.8256 dotnet +Radarr.Mono 5.2.1.8256 dotnet +Radarr.SignalR 5.2.1.8256 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 020153d896b1bc204fbe70e324fc8a3ab966e3d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 17:31:37 +0000 Subject: [PATCH 0420/1009] 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 0cff13d..1a2318b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8256 dotnet -Radarr.Api.V3 5.2.1.8256 dotnet -Radarr.Common 5.2.1.8256 dotnet -Radarr.Core 5.2.1.8256 dotnet -Radarr.Host 5.2.1.8256 dotnet -Radarr.Http 5.2.1.8256 dotnet -Radarr.Mono 5.2.1.8256 dotnet -Radarr.SignalR 5.2.1.8256 dotnet +Radarr 5.2.1.8257 dotnet +Radarr.Api.V3 5.2.1.8257 dotnet +Radarr.Common 5.2.1.8257 dotnet +Radarr.Core 5.2.1.8257 dotnet +Radarr.Host 5.2.1.8257 dotnet +Radarr.Http 5.2.1.8257 dotnet +Radarr.Mono 5.2.1.8257 dotnet +Radarr.SignalR 5.2.1.8257 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 85939e003a76ae331f9297c0dcc2abe30e0bd380 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 19:21:35 +0000 Subject: [PATCH 0421/1009] 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 1a2318b..91d435e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8257 dotnet -Radarr.Api.V3 5.2.1.8257 dotnet -Radarr.Common 5.2.1.8257 dotnet -Radarr.Core 5.2.1.8257 dotnet -Radarr.Host 5.2.1.8257 dotnet -Radarr.Http 5.2.1.8257 dotnet -Radarr.Mono 5.2.1.8257 dotnet -Radarr.SignalR 5.2.1.8257 dotnet +Radarr 5.2.1.8258 dotnet +Radarr.Api.V3 5.2.1.8258 dotnet +Radarr.Common 5.2.1.8258 dotnet +Radarr.Core 5.2.1.8258 dotnet +Radarr.Host 5.2.1.8258 dotnet +Radarr.Http 5.2.1.8258 dotnet +Radarr.Mono 5.2.1.8258 dotnet +Radarr.SignalR 5.2.1.8258 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7f73d005b9f4fa289d6b3d8c663664e30b45c3f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Nov 2023 18:16:02 +0000 Subject: [PATCH 0422/1009] 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 91d435e..0f9f020 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8258 dotnet -Radarr.Api.V3 5.2.1.8258 dotnet -Radarr.Common 5.2.1.8258 dotnet -Radarr.Core 5.2.1.8258 dotnet -Radarr.Host 5.2.1.8258 dotnet -Radarr.Http 5.2.1.8258 dotnet -Radarr.Mono 5.2.1.8258 dotnet -Radarr.SignalR 5.2.1.8258 dotnet +Radarr 5.2.1.8261 dotnet +Radarr.Api.V3 5.2.1.8261 dotnet +Radarr.Common 5.2.1.8261 dotnet +Radarr.Core 5.2.1.8261 dotnet +Radarr.Host 5.2.1.8261 dotnet +Radarr.Http 5.2.1.8261 dotnet +Radarr.Mono 5.2.1.8261 dotnet +Radarr.SignalR 5.2.1.8261 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f5bcafa8669722483e17cb71b88cf1f68d2f230d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Nov 2023 04:15:15 +0000 Subject: [PATCH 0423/1009] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2132f7..33c171d 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/radarr:nightly` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From af2d5bce42020881b71faacfa1358a2962c332aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Nov 2023 04:18:51 +0000 Subject: [PATCH 0424/1009] 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 0f9f020..4ab8a98 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8261 dotnet -Radarr.Api.V3 5.2.1.8261 dotnet -Radarr.Common 5.2.1.8261 dotnet -Radarr.Core 5.2.1.8261 dotnet -Radarr.Host 5.2.1.8261 dotnet -Radarr.Http 5.2.1.8261 dotnet -Radarr.Mono 5.2.1.8261 dotnet -Radarr.SignalR 5.2.1.8261 dotnet +Radarr 5.2.1.8265 dotnet +Radarr.Api.V3 5.2.1.8265 dotnet +Radarr.Common 5.2.1.8265 dotnet +Radarr.Core 5.2.1.8265 dotnet +Radarr.Host 5.2.1.8265 dotnet +Radarr.Http 5.2.1.8265 dotnet +Radarr.Mono 5.2.1.8265 dotnet +Radarr.SignalR 5.2.1.8265 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7dc7ca3e3c80a89954b99ae203dff435928dad7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Nov 2023 15:25:46 +0000 Subject: [PATCH 0425/1009] 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 4ab8a98..788f2bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8265 dotnet -Radarr.Api.V3 5.2.1.8265 dotnet -Radarr.Common 5.2.1.8265 dotnet -Radarr.Core 5.2.1.8265 dotnet -Radarr.Host 5.2.1.8265 dotnet -Radarr.Http 5.2.1.8265 dotnet -Radarr.Mono 5.2.1.8265 dotnet -Radarr.SignalR 5.2.1.8265 dotnet +Radarr 5.2.1.8266 dotnet +Radarr.Api.V3 5.2.1.8266 dotnet +Radarr.Common 5.2.1.8266 dotnet +Radarr.Core 5.2.1.8266 dotnet +Radarr.Host 5.2.1.8266 dotnet +Radarr.Http 5.2.1.8266 dotnet +Radarr.Mono 5.2.1.8266 dotnet +Radarr.SignalR 5.2.1.8266 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 36c2ea8059ca8de75d5c51bf58af13b6eca6d0f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Nov 2023 01:12:19 +0000 Subject: [PATCH 0426/1009] 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 788f2bd..7a4d37a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8266 dotnet -Radarr.Api.V3 5.2.1.8266 dotnet -Radarr.Common 5.2.1.8266 dotnet -Radarr.Core 5.2.1.8266 dotnet -Radarr.Host 5.2.1.8266 dotnet -Radarr.Http 5.2.1.8266 dotnet -Radarr.Mono 5.2.1.8266 dotnet -Radarr.SignalR 5.2.1.8266 dotnet +Radarr 5.2.1.8270 dotnet +Radarr.Api.V3 5.2.1.8270 dotnet +Radarr.Common 5.2.1.8270 dotnet +Radarr.Core 5.2.1.8270 dotnet +Radarr.Host 5.2.1.8270 dotnet +Radarr.Http 5.2.1.8270 dotnet +Radarr.Mono 5.2.1.8270 dotnet +Radarr.SignalR 5.2.1.8270 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 07501cf9544a27ba81f03362252410a03c6f9294 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Nov 2023 01:36:02 +0000 Subject: [PATCH 0427/1009] 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 7a4d37a..97a2719 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8270 dotnet -Radarr.Api.V3 5.2.1.8270 dotnet -Radarr.Common 5.2.1.8270 dotnet -Radarr.Core 5.2.1.8270 dotnet -Radarr.Host 5.2.1.8270 dotnet -Radarr.Http 5.2.1.8270 dotnet -Radarr.Mono 5.2.1.8270 dotnet -Radarr.SignalR 5.2.1.8270 dotnet +Radarr 5.2.1.8271 dotnet +Radarr.Api.V3 5.2.1.8271 dotnet +Radarr.Common 5.2.1.8271 dotnet +Radarr.Core 5.2.1.8271 dotnet +Radarr.Host 5.2.1.8271 dotnet +Radarr.Http 5.2.1.8271 dotnet +Radarr.Mono 5.2.1.8271 dotnet +Radarr.SignalR 5.2.1.8271 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 8a8a8f7c5637076a41dab1008f2dd4d35b592bf5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Nov 2023 01:58:53 +0000 Subject: [PATCH 0428/1009] 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 97a2719..def70e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8271 dotnet -Radarr.Api.V3 5.2.1.8271 dotnet -Radarr.Common 5.2.1.8271 dotnet -Radarr.Core 5.2.1.8271 dotnet -Radarr.Host 5.2.1.8271 dotnet -Radarr.Http 5.2.1.8271 dotnet -Radarr.Mono 5.2.1.8271 dotnet -Radarr.SignalR 5.2.1.8271 dotnet +Radarr 5.2.1.8272 dotnet +Radarr.Api.V3 5.2.1.8272 dotnet +Radarr.Common 5.2.1.8272 dotnet +Radarr.Core 5.2.1.8272 dotnet +Radarr.Host 5.2.1.8272 dotnet +Radarr.Http 5.2.1.8272 dotnet +Radarr.Mono 5.2.1.8272 dotnet +Radarr.SignalR 5.2.1.8272 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From a5d89864a0525a69a9b7037060fe80ed7d156fc9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Nov 2023 22:39:06 +0000 Subject: [PATCH 0429/1009] 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 def70e0..7adf741 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8272 dotnet -Radarr.Api.V3 5.2.1.8272 dotnet -Radarr.Common 5.2.1.8272 dotnet -Radarr.Core 5.2.1.8272 dotnet -Radarr.Host 5.2.1.8272 dotnet -Radarr.Http 5.2.1.8272 dotnet -Radarr.Mono 5.2.1.8272 dotnet -Radarr.SignalR 5.2.1.8272 dotnet +Radarr 5.2.1.8276 dotnet +Radarr.Api.V3 5.2.1.8276 dotnet +Radarr.Common 5.2.1.8276 dotnet +Radarr.Core 5.2.1.8276 dotnet +Radarr.Host 5.2.1.8276 dotnet +Radarr.Http 5.2.1.8276 dotnet +Radarr.Mono 5.2.1.8276 dotnet +Radarr.SignalR 5.2.1.8276 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 32ef59eb6e3cf0870e33cfff39ca643170dedbcf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Nov 2023 16:57:24 +0000 Subject: [PATCH 0430/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7adf741..b61d385 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -401,7 +401,7 @@ libproc2 4.0.4-r0 libssl3 3.1.4-r1 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk -libxml2 2.11.4-r0 apk +libxml2 2.11.6-r0 apk libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 apk mscorlib 6.0.2123.36311 dotnet From 008a0f973a8dff6c32ac74c0216fba4fd61bda3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Nov 2023 21:26:22 +0000 Subject: [PATCH 0431/1009] 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 b61d385..95b05f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.1.8276 dotnet -Radarr.Api.V3 5.2.1.8276 dotnet -Radarr.Common 5.2.1.8276 dotnet -Radarr.Core 5.2.1.8276 dotnet -Radarr.Host 5.2.1.8276 dotnet -Radarr.Http 5.2.1.8276 dotnet -Radarr.Mono 5.2.1.8276 dotnet -Radarr.SignalR 5.2.1.8276 dotnet +Radarr 5.2.2.8285 dotnet +Radarr.Api.V3 5.2.2.8285 dotnet +Radarr.Common 5.2.2.8285 dotnet +Radarr.Core 5.2.2.8285 dotnet +Radarr.Host 5.2.2.8285 dotnet +Radarr.Http 5.2.2.8285 dotnet +Radarr.Mono 5.2.2.8285 dotnet +Radarr.SignalR 5.2.2.8285 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 65c606be6fe0f928a9397c4f420261381e2ddb7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 00:13:12 +0000 Subject: [PATCH 0432/1009] 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 95b05f7..7967783 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.2.8285 dotnet -Radarr.Api.V3 5.2.2.8285 dotnet -Radarr.Common 5.2.2.8285 dotnet -Radarr.Core 5.2.2.8285 dotnet -Radarr.Host 5.2.2.8285 dotnet -Radarr.Http 5.2.2.8285 dotnet -Radarr.Mono 5.2.2.8285 dotnet -Radarr.SignalR 5.2.2.8285 dotnet +Radarr 5.2.2.8288 dotnet +Radarr.Api.V3 5.2.2.8288 dotnet +Radarr.Common 5.2.2.8288 dotnet +Radarr.Core 5.2.2.8288 dotnet +Radarr.Host 5.2.2.8288 dotnet +Radarr.Http 5.2.2.8288 dotnet +Radarr.Mono 5.2.2.8288 dotnet +Radarr.SignalR 5.2.2.8288 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 9c2c41fd85ba4759d8f1059d1fcd9e9ed282c538 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 03:45:25 +0000 Subject: [PATCH 0433/1009] 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 7967783..46afa45 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.2.8288 dotnet -Radarr.Api.V3 5.2.2.8288 dotnet -Radarr.Common 5.2.2.8288 dotnet -Radarr.Core 5.2.2.8288 dotnet -Radarr.Host 5.2.2.8288 dotnet -Radarr.Http 5.2.2.8288 dotnet -Radarr.Mono 5.2.2.8288 dotnet -Radarr.SignalR 5.2.2.8288 dotnet +Radarr 5.2.3.8290 dotnet +Radarr.Api.V3 5.2.3.8290 dotnet +Radarr.Common 5.2.3.8290 dotnet +Radarr.Core 5.2.3.8290 dotnet +Radarr.Host 5.2.3.8290 dotnet +Radarr.Http 5.2.3.8290 dotnet +Radarr.Mono 5.2.3.8290 dotnet +Radarr.SignalR 5.2.3.8290 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b9f855eaaabb436c34ae036669c606480f322434 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 04:23:42 +0000 Subject: [PATCH 0434/1009] 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 46afa45..d7c2b4d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8290 dotnet -Radarr.Api.V3 5.2.3.8290 dotnet -Radarr.Common 5.2.3.8290 dotnet -Radarr.Core 5.2.3.8290 dotnet -Radarr.Host 5.2.3.8290 dotnet -Radarr.Http 5.2.3.8290 dotnet -Radarr.Mono 5.2.3.8290 dotnet -Radarr.SignalR 5.2.3.8290 dotnet +Radarr 5.2.3.8291 dotnet +Radarr.Api.V3 5.2.3.8291 dotnet +Radarr.Common 5.2.3.8291 dotnet +Radarr.Core 5.2.3.8291 dotnet +Radarr.Host 5.2.3.8291 dotnet +Radarr.Http 5.2.3.8291 dotnet +Radarr.Mono 5.2.3.8291 dotnet +Radarr.SignalR 5.2.3.8291 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 96e22d53cdaa940d15f62b4fbf54574b321c1c02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 05:43:03 +0000 Subject: [PATCH 0435/1009] 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 d7c2b4d..b25f3e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8291 dotnet -Radarr.Api.V3 5.2.3.8291 dotnet -Radarr.Common 5.2.3.8291 dotnet -Radarr.Core 5.2.3.8291 dotnet -Radarr.Host 5.2.3.8291 dotnet -Radarr.Http 5.2.3.8291 dotnet -Radarr.Mono 5.2.3.8291 dotnet -Radarr.SignalR 5.2.3.8291 dotnet +Radarr 5.2.3.8293 dotnet +Radarr.Api.V3 5.2.3.8293 dotnet +Radarr.Common 5.2.3.8293 dotnet +Radarr.Core 5.2.3.8293 dotnet +Radarr.Host 5.2.3.8293 dotnet +Radarr.Http 5.2.3.8293 dotnet +Radarr.Mono 5.2.3.8293 dotnet +Radarr.SignalR 5.2.3.8293 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 18fc35901caca2d3b905d5772365caf48e8cf037 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 06:55:53 +0000 Subject: [PATCH 0436/1009] 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 b25f3e3..7802f29 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8293 dotnet -Radarr.Api.V3 5.2.3.8293 dotnet -Radarr.Common 5.2.3.8293 dotnet -Radarr.Core 5.2.3.8293 dotnet -Radarr.Host 5.2.3.8293 dotnet -Radarr.Http 5.2.3.8293 dotnet -Radarr.Mono 5.2.3.8293 dotnet -Radarr.SignalR 5.2.3.8293 dotnet +Radarr 5.2.3.8296 dotnet +Radarr.Api.V3 5.2.3.8296 dotnet +Radarr.Common 5.2.3.8296 dotnet +Radarr.Core 5.2.3.8296 dotnet +Radarr.Host 5.2.3.8296 dotnet +Radarr.Http 5.2.3.8296 dotnet +Radarr.Mono 5.2.3.8296 dotnet +Radarr.SignalR 5.2.3.8296 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 0d0ddc27cec5d0703f69e951cd2c764b6b6d19d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 20:55:39 +0000 Subject: [PATCH 0437/1009] 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 7802f29..aaff076 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8296 dotnet -Radarr.Api.V3 5.2.3.8296 dotnet -Radarr.Common 5.2.3.8296 dotnet -Radarr.Core 5.2.3.8296 dotnet -Radarr.Host 5.2.3.8296 dotnet -Radarr.Http 5.2.3.8296 dotnet -Radarr.Mono 5.2.3.8296 dotnet -Radarr.SignalR 5.2.3.8296 dotnet +Radarr 5.2.3.8297 dotnet +Radarr.Api.V3 5.2.3.8297 dotnet +Radarr.Common 5.2.3.8297 dotnet +Radarr.Core 5.2.3.8297 dotnet +Radarr.Host 5.2.3.8297 dotnet +Radarr.Http 5.2.3.8297 dotnet +Radarr.Mono 5.2.3.8297 dotnet +Radarr.SignalR 5.2.3.8297 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f735fc73938e38e035e9a21449a7fa661b017b78 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 03:17:35 +0000 Subject: [PATCH 0438/1009] 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 aaff076..aa15528 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8297 dotnet -Radarr.Api.V3 5.2.3.8297 dotnet -Radarr.Common 5.2.3.8297 dotnet -Radarr.Core 5.2.3.8297 dotnet -Radarr.Host 5.2.3.8297 dotnet -Radarr.Http 5.2.3.8297 dotnet -Radarr.Mono 5.2.3.8297 dotnet -Radarr.SignalR 5.2.3.8297 dotnet +Radarr 5.2.3.8298 dotnet +Radarr.Api.V3 5.2.3.8298 dotnet +Radarr.Common 5.2.3.8298 dotnet +Radarr.Core 5.2.3.8298 dotnet +Radarr.Host 5.2.3.8298 dotnet +Radarr.Http 5.2.3.8298 dotnet +Radarr.Mono 5.2.3.8298 dotnet +Radarr.SignalR 5.2.3.8298 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b04a4da0622e83eee8a7df4360f3f327169e09d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 22:01:06 +0000 Subject: [PATCH 0439/1009] 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 aa15528..d187e21 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8298 dotnet -Radarr.Api.V3 5.2.3.8298 dotnet -Radarr.Common 5.2.3.8298 dotnet -Radarr.Core 5.2.3.8298 dotnet -Radarr.Host 5.2.3.8298 dotnet -Radarr.Http 5.2.3.8298 dotnet -Radarr.Mono 5.2.3.8298 dotnet -Radarr.SignalR 5.2.3.8298 dotnet +Radarr 5.2.3.8299 dotnet +Radarr.Api.V3 5.2.3.8299 dotnet +Radarr.Common 5.2.3.8299 dotnet +Radarr.Core 5.2.3.8299 dotnet +Radarr.Host 5.2.3.8299 dotnet +Radarr.Http 5.2.3.8299 dotnet +Radarr.Mono 5.2.3.8299 dotnet +Radarr.SignalR 5.2.3.8299 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e19d97145eb1faafe64649762600f2e2106b6ca6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Nov 2023 20:44:19 +0000 Subject: [PATCH 0440/1009] 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 d187e21..18ad92e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8299 dotnet -Radarr.Api.V3 5.2.3.8299 dotnet -Radarr.Common 5.2.3.8299 dotnet -Radarr.Core 5.2.3.8299 dotnet -Radarr.Host 5.2.3.8299 dotnet -Radarr.Http 5.2.3.8299 dotnet -Radarr.Mono 5.2.3.8299 dotnet -Radarr.SignalR 5.2.3.8299 dotnet +Radarr 5.2.3.8301 dotnet +Radarr.Api.V3 5.2.3.8301 dotnet +Radarr.Common 5.2.3.8301 dotnet +Radarr.Core 5.2.3.8301 dotnet +Radarr.Host 5.2.3.8301 dotnet +Radarr.Http 5.2.3.8301 dotnet +Radarr.Mono 5.2.3.8301 dotnet +Radarr.SignalR 5.2.3.8301 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 511bc6abfa1f4d66cba26e4a71bd510f0cf4e8c8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Nov 2023 21:06:16 +0000 Subject: [PATCH 0441/1009] 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 18ad92e..484d06a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8301 dotnet -Radarr.Api.V3 5.2.3.8301 dotnet -Radarr.Common 5.2.3.8301 dotnet -Radarr.Core 5.2.3.8301 dotnet -Radarr.Host 5.2.3.8301 dotnet -Radarr.Http 5.2.3.8301 dotnet -Radarr.Mono 5.2.3.8301 dotnet -Radarr.SignalR 5.2.3.8301 dotnet +Radarr 5.2.3.8303 dotnet +Radarr.Api.V3 5.2.3.8303 dotnet +Radarr.Common 5.2.3.8303 dotnet +Radarr.Core 5.2.3.8303 dotnet +Radarr.Host 5.2.3.8303 dotnet +Radarr.Http 5.2.3.8303 dotnet +Radarr.Mono 5.2.3.8303 dotnet +Radarr.SignalR 5.2.3.8303 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 177948ee4c2811dc0f12e3040623433e9f4d3b14 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Nov 2023 05:43:39 +0000 Subject: [PATCH 0442/1009] 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 484d06a..f1ca9b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.3.8303 dotnet -Radarr.Api.V3 5.2.3.8303 dotnet -Radarr.Common 5.2.3.8303 dotnet -Radarr.Core 5.2.3.8303 dotnet -Radarr.Host 5.2.3.8303 dotnet -Radarr.Http 5.2.3.8303 dotnet -Radarr.Mono 5.2.3.8303 dotnet -Radarr.SignalR 5.2.3.8303 dotnet +Radarr 5.2.4.8304 dotnet +Radarr.Api.V3 5.2.4.8304 dotnet +Radarr.Common 5.2.4.8304 dotnet +Radarr.Core 5.2.4.8304 dotnet +Radarr.Host 5.2.4.8304 dotnet +Radarr.Http 5.2.4.8304 dotnet +Radarr.Mono 5.2.4.8304 dotnet +Radarr.SignalR 5.2.4.8304 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e31877abf0c08327b0f23b447a2d35d9cb63f0c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Nov 2023 07:09:42 +0000 Subject: [PATCH 0443/1009] 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 f1ca9b3..01d97e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8304 dotnet -Radarr.Api.V3 5.2.4.8304 dotnet -Radarr.Common 5.2.4.8304 dotnet -Radarr.Core 5.2.4.8304 dotnet -Radarr.Host 5.2.4.8304 dotnet -Radarr.Http 5.2.4.8304 dotnet -Radarr.Mono 5.2.4.8304 dotnet -Radarr.SignalR 5.2.4.8304 dotnet +Radarr 5.2.4.8306 dotnet +Radarr.Api.V3 5.2.4.8306 dotnet +Radarr.Common 5.2.4.8306 dotnet +Radarr.Core 5.2.4.8306 dotnet +Radarr.Host 5.2.4.8306 dotnet +Radarr.Http 5.2.4.8306 dotnet +Radarr.Mono 5.2.4.8306 dotnet +Radarr.SignalR 5.2.4.8306 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From da27aaa9bdf7836e26855830141bccfb14936ec5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Nov 2023 08:32:43 +0000 Subject: [PATCH 0444/1009] 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 01d97e0..0f96f1f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8306 dotnet -Radarr.Api.V3 5.2.4.8306 dotnet -Radarr.Common 5.2.4.8306 dotnet -Radarr.Core 5.2.4.8306 dotnet -Radarr.Host 5.2.4.8306 dotnet -Radarr.Http 5.2.4.8306 dotnet -Radarr.Mono 5.2.4.8306 dotnet -Radarr.SignalR 5.2.4.8306 dotnet +Radarr 5.2.4.8307 dotnet +Radarr.Api.V3 5.2.4.8307 dotnet +Radarr.Common 5.2.4.8307 dotnet +Radarr.Core 5.2.4.8307 dotnet +Radarr.Host 5.2.4.8307 dotnet +Radarr.Http 5.2.4.8307 dotnet +Radarr.Mono 5.2.4.8307 dotnet +Radarr.SignalR 5.2.4.8307 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5b0609bc048d26eee0e07f8b38c2ba15817fd7da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 1 Dec 2023 11:21:28 +0000 Subject: [PATCH 0445/1009] 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 0f96f1f..cd32f2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8307 dotnet -Radarr.Api.V3 5.2.4.8307 dotnet -Radarr.Common 5.2.4.8307 dotnet -Radarr.Core 5.2.4.8307 dotnet -Radarr.Host 5.2.4.8307 dotnet -Radarr.Http 5.2.4.8307 dotnet -Radarr.Mono 5.2.4.8307 dotnet -Radarr.SignalR 5.2.4.8307 dotnet +Radarr 5.2.4.8309 dotnet +Radarr.Api.V3 5.2.4.8309 dotnet +Radarr.Common 5.2.4.8309 dotnet +Radarr.Core 5.2.4.8309 dotnet +Radarr.Host 5.2.4.8309 dotnet +Radarr.Http 5.2.4.8309 dotnet +Radarr.Mono 5.2.4.8309 dotnet +Radarr.SignalR 5.2.4.8309 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c2e1e2013a6303bf3b87ca5b6dab6a62ade6073e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Dec 2023 16:58:24 +0000 Subject: [PATCH 0446/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cd32f2b..59886b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -371,7 +371,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.4-r0 apk +alpine-release 3.18.5-r0 apk apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk From 45aa24111f4933d25ba927be89f63d27223c1417 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Dec 2023 21:32:53 +0000 Subject: [PATCH 0447/1009] 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 59886b5..03b8f20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8309 dotnet -Radarr.Api.V3 5.2.4.8309 dotnet -Radarr.Common 5.2.4.8309 dotnet -Radarr.Core 5.2.4.8309 dotnet -Radarr.Host 5.2.4.8309 dotnet -Radarr.Http 5.2.4.8309 dotnet -Radarr.Mono 5.2.4.8309 dotnet -Radarr.SignalR 5.2.4.8309 dotnet +Radarr 5.2.4.8317 dotnet +Radarr.Api.V3 5.2.4.8317 dotnet +Radarr.Common 5.2.4.8317 dotnet +Radarr.Core 5.2.4.8317 dotnet +Radarr.Host 5.2.4.8317 dotnet +Radarr.Http 5.2.4.8317 dotnet +Radarr.Mono 5.2.4.8317 dotnet +Radarr.SignalR 5.2.4.8317 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 85aee38dba87438c65f1cbd42cc0affe728833ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Dec 2023 11:52:45 +0000 Subject: [PATCH 0448/1009] 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 03b8f20..ae01d97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8317 dotnet -Radarr.Api.V3 5.2.4.8317 dotnet -Radarr.Common 5.2.4.8317 dotnet -Radarr.Core 5.2.4.8317 dotnet -Radarr.Host 5.2.4.8317 dotnet -Radarr.Http 5.2.4.8317 dotnet -Radarr.Mono 5.2.4.8317 dotnet -Radarr.SignalR 5.2.4.8317 dotnet +Radarr 5.2.4.8319 dotnet +Radarr.Api.V3 5.2.4.8319 dotnet +Radarr.Common 5.2.4.8319 dotnet +Radarr.Core 5.2.4.8319 dotnet +Radarr.Host 5.2.4.8319 dotnet +Radarr.Http 5.2.4.8319 dotnet +Radarr.Mono 5.2.4.8319 dotnet +Radarr.SignalR 5.2.4.8319 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4a0e16aeabea0c3dd51e46fe01ecb8fee58c88c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Dec 2023 10:37:42 +0000 Subject: [PATCH 0449/1009] 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 ae01d97..58f641b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8319 dotnet -Radarr.Api.V3 5.2.4.8319 dotnet -Radarr.Common 5.2.4.8319 dotnet -Radarr.Core 5.2.4.8319 dotnet -Radarr.Host 5.2.4.8319 dotnet -Radarr.Http 5.2.4.8319 dotnet -Radarr.Mono 5.2.4.8319 dotnet -Radarr.SignalR 5.2.4.8319 dotnet +Radarr 5.2.4.8320 dotnet +Radarr.Api.V3 5.2.4.8320 dotnet +Radarr.Common 5.2.4.8320 dotnet +Radarr.Core 5.2.4.8320 dotnet +Radarr.Host 5.2.4.8320 dotnet +Radarr.Http 5.2.4.8320 dotnet +Radarr.Mono 5.2.4.8320 dotnet +Radarr.SignalR 5.2.4.8320 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 12e4278205d13189e3d105d74aac4b31eaffbdb0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Dec 2023 13:20:02 +0000 Subject: [PATCH 0450/1009] 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 58f641b..2f4f7a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8320 dotnet -Radarr.Api.V3 5.2.4.8320 dotnet -Radarr.Common 5.2.4.8320 dotnet -Radarr.Core 5.2.4.8320 dotnet -Radarr.Host 5.2.4.8320 dotnet -Radarr.Http 5.2.4.8320 dotnet -Radarr.Mono 5.2.4.8320 dotnet -Radarr.SignalR 5.2.4.8320 dotnet +Radarr 5.2.4.8322 dotnet +Radarr.Api.V3 5.2.4.8322 dotnet +Radarr.Common 5.2.4.8322 dotnet +Radarr.Core 5.2.4.8322 dotnet +Radarr.Host 5.2.4.8322 dotnet +Radarr.Http 5.2.4.8322 dotnet +Radarr.Mono 5.2.4.8322 dotnet +Radarr.SignalR 5.2.4.8322 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f2d3c288e5f6aa6a6bf56b1e1634e4a63069a6df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Dec 2023 14:58:49 +0000 Subject: [PATCH 0451/1009] 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 2f4f7a0..6a61051 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8322 dotnet -Radarr.Api.V3 5.2.4.8322 dotnet -Radarr.Common 5.2.4.8322 dotnet -Radarr.Core 5.2.4.8322 dotnet -Radarr.Host 5.2.4.8322 dotnet -Radarr.Http 5.2.4.8322 dotnet -Radarr.Mono 5.2.4.8322 dotnet -Radarr.SignalR 5.2.4.8322 dotnet +Radarr 5.2.4.8323 dotnet +Radarr.Api.V3 5.2.4.8323 dotnet +Radarr.Common 5.2.4.8323 dotnet +Radarr.Core 5.2.4.8323 dotnet +Radarr.Host 5.2.4.8323 dotnet +Radarr.Http 5.2.4.8323 dotnet +Radarr.Mono 5.2.4.8323 dotnet +Radarr.SignalR 5.2.4.8323 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From cde9a2dba18f06ca2d82a66064c34e3cd4c70494 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Dec 2023 14:41:48 +0000 Subject: [PATCH 0452/1009] 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 6a61051..05a8711 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8323 dotnet -Radarr.Api.V3 5.2.4.8323 dotnet -Radarr.Common 5.2.4.8323 dotnet -Radarr.Core 5.2.4.8323 dotnet -Radarr.Host 5.2.4.8323 dotnet -Radarr.Http 5.2.4.8323 dotnet -Radarr.Mono 5.2.4.8323 dotnet -Radarr.SignalR 5.2.4.8323 dotnet +Radarr 5.2.4.8327 dotnet +Radarr.Api.V3 5.2.4.8327 dotnet +Radarr.Common 5.2.4.8327 dotnet +Radarr.Core 5.2.4.8327 dotnet +Radarr.Host 5.2.4.8327 dotnet +Radarr.Http 5.2.4.8327 dotnet +Radarr.Mono 5.2.4.8327 dotnet +Radarr.SignalR 5.2.4.8327 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c39f63339109e2cdabd5e558c444fa9ed6e2e0ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Dec 2023 12:26:25 +0000 Subject: [PATCH 0453/1009] 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 05a8711..88d0571 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.4.8327 dotnet -Radarr.Api.V3 5.2.4.8327 dotnet -Radarr.Common 5.2.4.8327 dotnet -Radarr.Core 5.2.4.8327 dotnet -Radarr.Host 5.2.4.8327 dotnet -Radarr.Http 5.2.4.8327 dotnet -Radarr.Mono 5.2.4.8327 dotnet -Radarr.SignalR 5.2.4.8327 dotnet +Radarr 5.2.5.8330 dotnet +Radarr.Api.V3 5.2.5.8330 dotnet +Radarr.Common 5.2.5.8330 dotnet +Radarr.Core 5.2.5.8330 dotnet +Radarr.Host 5.2.5.8330 dotnet +Radarr.Http 5.2.5.8330 dotnet +Radarr.Mono 5.2.5.8330 dotnet +Radarr.SignalR 5.2.5.8330 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -380,16 +380,16 @@ busybox-binsh 1.36.1-r5 ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk coreutils 9.3-r1 apk -curl 8.4.0-r0 apk +curl 8.5.0-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 libacl 2.3.1-r3 apk libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk libgpg-error 1.47-r1 apk From 97e779a792c1545095aa9ee3d0c5d40632d55715 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Dec 2023 16:30:59 +0000 Subject: [PATCH 0454/1009] Bot Updating Package Versions --- package_versions.txt | 534 +++++++++++++++++++++---------------------- 1 file changed, 267 insertions(+), 267 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 88d0571..bb01123 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,7 @@ BouncyCastle.Crypto 1.9.0.1 Dapper 2.0.143.55328 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 FFMpegCore 4.0.0.0 dotnet @@ -33,87 +33,87 @@ ImpromptuInterface 7.0.1.0 Instances 1.0.0.0 dotnet Json.NET.NET6.0 13.0.3.27908 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 @@ -125,27 +125,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.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 @@ -154,25 +154,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 @@ -182,192 +182,192 @@ NLog.Extensions.Loggingfor.NET6 5.3.3.381 NLogSyslogtarget 7.0.0.0 dotnet NLogforNetStandard2.0 5.2.3.1999 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 -Radarr 5.2.5.8330 dotnet -Radarr.Api.V3 5.2.5.8330 dotnet -Radarr.Common 5.2.5.8330 dotnet -Radarr.Core 5.2.5.8330 dotnet -Radarr.Host 5.2.5.8330 dotnet -Radarr.Http 5.2.5.8330 dotnet -Radarr.Mono 5.2.5.8330 dotnet -Radarr.SignalR 5.2.5.8330 dotnet +Radarr 5.2.5.8335 dotnet +Radarr.Api.V3 5.2.5.8335 dotnet +Radarr.Common 5.2.5.8335 dotnet +Radarr.Core 5.2.5.8335 dotnet +Radarr.Host 5.2.5.8335 dotnet +Radarr.Http 5.2.5.8335 dotnet +Radarr.Mono 5.2.5.8335 dotnet +Radarr.SignalR 5.2.5.8335 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.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.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.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.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 -WindowsBase 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 +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 @@ -404,12 +404,12 @@ libunistring 1.1-r1 libxml2 2.11.6-r0 apk libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 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 nghttp2-libs 1.57.0-r0 apk oniguruma 6.9.8-r1 apk procps-ng 4.0.4-r0 apk From 27cbe058a65321bac80f391b158aa74768de22f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Dec 2023 18:07:08 +0000 Subject: [PATCH 0455/1009] 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 bb01123..a73a807 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8335 dotnet -Radarr.Api.V3 5.2.5.8335 dotnet -Radarr.Common 5.2.5.8335 dotnet -Radarr.Core 5.2.5.8335 dotnet -Radarr.Host 5.2.5.8335 dotnet -Radarr.Http 5.2.5.8335 dotnet -Radarr.Mono 5.2.5.8335 dotnet -Radarr.SignalR 5.2.5.8335 dotnet +Radarr 5.2.5.8336 dotnet +Radarr.Api.V3 5.2.5.8336 dotnet +Radarr.Common 5.2.5.8336 dotnet +Radarr.Core 5.2.5.8336 dotnet +Radarr.Host 5.2.5.8336 dotnet +Radarr.Http 5.2.5.8336 dotnet +Radarr.Mono 5.2.5.8336 dotnet +Radarr.SignalR 5.2.5.8336 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c18e880c4db1995a00c6c5822e10fb5b60c2f007 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Dec 2023 15:01:10 +0000 Subject: [PATCH 0456/1009] 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 a73a807..513c6d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8336 dotnet -Radarr.Api.V3 5.2.5.8336 dotnet -Radarr.Common 5.2.5.8336 dotnet -Radarr.Core 5.2.5.8336 dotnet -Radarr.Host 5.2.5.8336 dotnet -Radarr.Http 5.2.5.8336 dotnet -Radarr.Mono 5.2.5.8336 dotnet -Radarr.SignalR 5.2.5.8336 dotnet +Radarr 5.2.5.8346 dotnet +Radarr.Api.V3 5.2.5.8346 dotnet +Radarr.Common 5.2.5.8346 dotnet +Radarr.Core 5.2.5.8346 dotnet +Radarr.Host 5.2.5.8346 dotnet +Radarr.Http 5.2.5.8346 dotnet +Radarr.Mono 5.2.5.8346 dotnet +Radarr.SignalR 5.2.5.8346 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b279976019de6d7a40118d89cb354703d7808682 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Dec 2023 21:00:44 +0000 Subject: [PATCH 0457/1009] 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 513c6d3..fabcf46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8346 dotnet -Radarr.Api.V3 5.2.5.8346 dotnet -Radarr.Common 5.2.5.8346 dotnet -Radarr.Core 5.2.5.8346 dotnet -Radarr.Host 5.2.5.8346 dotnet -Radarr.Http 5.2.5.8346 dotnet -Radarr.Mono 5.2.5.8346 dotnet -Radarr.SignalR 5.2.5.8346 dotnet +Radarr 5.2.5.8347 dotnet +Radarr.Api.V3 5.2.5.8347 dotnet +Radarr.Common 5.2.5.8347 dotnet +Radarr.Core 5.2.5.8347 dotnet +Radarr.Host 5.2.5.8347 dotnet +Radarr.Http 5.2.5.8347 dotnet +Radarr.Mono 5.2.5.8347 dotnet +Radarr.SignalR 5.2.5.8347 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5c0008e1b2a7172891666551262817d293bb3f85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Dec 2023 03:31:22 +0000 Subject: [PATCH 0458/1009] 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 fabcf46..a68ddd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8347 dotnet -Radarr.Api.V3 5.2.5.8347 dotnet -Radarr.Common 5.2.5.8347 dotnet -Radarr.Core 5.2.5.8347 dotnet -Radarr.Host 5.2.5.8347 dotnet -Radarr.Http 5.2.5.8347 dotnet -Radarr.Mono 5.2.5.8347 dotnet -Radarr.SignalR 5.2.5.8347 dotnet +Radarr 5.2.5.8353 dotnet +Radarr.Api.V3 5.2.5.8353 dotnet +Radarr.Common 5.2.5.8353 dotnet +Radarr.Core 5.2.5.8353 dotnet +Radarr.Host 5.2.5.8353 dotnet +Radarr.Http 5.2.5.8353 dotnet +Radarr.Mono 5.2.5.8353 dotnet +Radarr.SignalR 5.2.5.8353 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 892391ebe071dab52812354ca0366f5fc155019a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Dec 2023 15:31:13 +0000 Subject: [PATCH 0459/1009] 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 a68ddd7..4179246 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8353 dotnet -Radarr.Api.V3 5.2.5.8353 dotnet -Radarr.Common 5.2.5.8353 dotnet -Radarr.Core 5.2.5.8353 dotnet -Radarr.Host 5.2.5.8353 dotnet -Radarr.Http 5.2.5.8353 dotnet -Radarr.Mono 5.2.5.8353 dotnet -Radarr.SignalR 5.2.5.8353 dotnet +Radarr 5.2.5.8355 dotnet +Radarr.Api.V3 5.2.5.8355 dotnet +Radarr.Common 5.2.5.8355 dotnet +Radarr.Core 5.2.5.8355 dotnet +Radarr.Host 5.2.5.8355 dotnet +Radarr.Http 5.2.5.8355 dotnet +Radarr.Mono 5.2.5.8355 dotnet +Radarr.SignalR 5.2.5.8355 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 43145b98719aee4e7dc4f6829f59f0658759c549 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Dec 2023 16:39:40 +0000 Subject: [PATCH 0460/1009] 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 4179246..a3f1372 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8355 dotnet -Radarr.Api.V3 5.2.5.8355 dotnet -Radarr.Common 5.2.5.8355 dotnet -Radarr.Core 5.2.5.8355 dotnet -Radarr.Host 5.2.5.8355 dotnet -Radarr.Http 5.2.5.8355 dotnet -Radarr.Mono 5.2.5.8355 dotnet -Radarr.SignalR 5.2.5.8355 dotnet +Radarr 5.2.5.8356 dotnet +Radarr.Api.V3 5.2.5.8356 dotnet +Radarr.Common 5.2.5.8356 dotnet +Radarr.Core 5.2.5.8356 dotnet +Radarr.Host 5.2.5.8356 dotnet +Radarr.Http 5.2.5.8356 dotnet +Radarr.Mono 5.2.5.8356 dotnet +Radarr.SignalR 5.2.5.8356 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7036684465afd3073c5b9929a60b4298738a13c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Dec 2023 23:27:13 +0000 Subject: [PATCH 0461/1009] 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 a3f1372..c44e1bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8356 dotnet -Radarr.Api.V3 5.2.5.8356 dotnet -Radarr.Common 5.2.5.8356 dotnet -Radarr.Core 5.2.5.8356 dotnet -Radarr.Host 5.2.5.8356 dotnet -Radarr.Http 5.2.5.8356 dotnet -Radarr.Mono 5.2.5.8356 dotnet -Radarr.SignalR 5.2.5.8356 dotnet +Radarr 5.2.5.8360 dotnet +Radarr.Api.V3 5.2.5.8360 dotnet +Radarr.Common 5.2.5.8360 dotnet +Radarr.Core 5.2.5.8360 dotnet +Radarr.Host 5.2.5.8360 dotnet +Radarr.Http 5.2.5.8360 dotnet +Radarr.Mono 5.2.5.8360 dotnet +Radarr.SignalR 5.2.5.8360 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From db262d490e8150cfeffff15055e2604826285a80 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 16 Dec 2023 01:23:48 +0000 Subject: [PATCH 0462/1009] 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 c44e1bd..3fda10c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8360 dotnet -Radarr.Api.V3 5.2.5.8360 dotnet -Radarr.Common 5.2.5.8360 dotnet -Radarr.Core 5.2.5.8360 dotnet -Radarr.Host 5.2.5.8360 dotnet -Radarr.Http 5.2.5.8360 dotnet -Radarr.Mono 5.2.5.8360 dotnet -Radarr.SignalR 5.2.5.8360 dotnet +Radarr 5.2.5.8362 dotnet +Radarr.Api.V3 5.2.5.8362 dotnet +Radarr.Common 5.2.5.8362 dotnet +Radarr.Core 5.2.5.8362 dotnet +Radarr.Host 5.2.5.8362 dotnet +Radarr.Http 5.2.5.8362 dotnet +Radarr.Mono 5.2.5.8362 dotnet +Radarr.SignalR 5.2.5.8362 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From cd7114a309f0aef451a68a8d78a4277ec759ccf3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Dec 2023 18:51:32 +0000 Subject: [PATCH 0463/1009] 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 3fda10c..458db5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.5.8362 dotnet -Radarr.Api.V3 5.2.5.8362 dotnet -Radarr.Common 5.2.5.8362 dotnet -Radarr.Core 5.2.5.8362 dotnet -Radarr.Host 5.2.5.8362 dotnet -Radarr.Http 5.2.5.8362 dotnet -Radarr.Mono 5.2.5.8362 dotnet -Radarr.SignalR 5.2.5.8362 dotnet +Radarr 5.2.6.8364 dotnet +Radarr.Api.V3 5.2.6.8364 dotnet +Radarr.Common 5.2.6.8364 dotnet +Radarr.Core 5.2.6.8364 dotnet +Radarr.Host 5.2.6.8364 dotnet +Radarr.Http 5.2.6.8364 dotnet +Radarr.Mono 5.2.6.8364 dotnet +Radarr.SignalR 5.2.6.8364 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 1862bf5bb0c8b8d2793ed2b162148d8b002368dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Dec 2023 20:45:17 +0000 Subject: [PATCH 0464/1009] 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 458db5b..258051d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.6.8364 dotnet -Radarr.Api.V3 5.2.6.8364 dotnet -Radarr.Common 5.2.6.8364 dotnet -Radarr.Core 5.2.6.8364 dotnet -Radarr.Host 5.2.6.8364 dotnet -Radarr.Http 5.2.6.8364 dotnet -Radarr.Mono 5.2.6.8364 dotnet -Radarr.SignalR 5.2.6.8364 dotnet +Radarr 5.2.6.8365 dotnet +Radarr.Api.V3 5.2.6.8365 dotnet +Radarr.Common 5.2.6.8365 dotnet +Radarr.Core 5.2.6.8365 dotnet +Radarr.Host 5.2.6.8365 dotnet +Radarr.Http 5.2.6.8365 dotnet +Radarr.Mono 5.2.6.8365 dotnet +Radarr.SignalR 5.2.6.8365 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2b86ea27f7ef3741e1514fd2483c5223b52235af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Dec 2023 23:30:49 +0000 Subject: [PATCH 0465/1009] 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 258051d..350d72f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.6.8365 dotnet -Radarr.Api.V3 5.2.6.8365 dotnet -Radarr.Common 5.2.6.8365 dotnet -Radarr.Core 5.2.6.8365 dotnet -Radarr.Host 5.2.6.8365 dotnet -Radarr.Http 5.2.6.8365 dotnet -Radarr.Mono 5.2.6.8365 dotnet -Radarr.SignalR 5.2.6.8365 dotnet +Radarr 5.2.6.8369 dotnet +Radarr.Api.V3 5.2.6.8369 dotnet +Radarr.Common 5.2.6.8369 dotnet +Radarr.Core 5.2.6.8369 dotnet +Radarr.Host 5.2.6.8369 dotnet +Radarr.Http 5.2.6.8369 dotnet +Radarr.Mono 5.2.6.8369 dotnet +Radarr.SignalR 5.2.6.8369 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 078e1e7aec08c66b1f8ca5b1ef6d9d3ced671aed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Dec 2023 18:58:18 +0000 Subject: [PATCH 0466/1009] 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 350d72f..f28b373 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -184,14 +184,14 @@ NLogforNetStandard2.0 5.2.3.1999 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.6.8369 dotnet -Radarr.Api.V3 5.2.6.8369 dotnet -Radarr.Common 5.2.6.8369 dotnet -Radarr.Core 5.2.6.8369 dotnet -Radarr.Host 5.2.6.8369 dotnet -Radarr.Http 5.2.6.8369 dotnet -Radarr.Mono 5.2.6.8369 dotnet -Radarr.SignalR 5.2.6.8369 dotnet +Radarr 5.2.6.8371 dotnet +Radarr.Api.V3 5.2.6.8371 dotnet +Radarr.Common 5.2.6.8371 dotnet +Radarr.Core 5.2.6.8371 dotnet +Radarr.Host 5.2.6.8371 dotnet +Radarr.Http 5.2.6.8371 dotnet +Radarr.Mono 5.2.6.8371 dotnet +Radarr.SignalR 5.2.6.8371 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 75140c4f4cab90aaf3cfc88cb27df9b9beb7327a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 23 Dec 2023 22:03:24 +0000 Subject: [PATCH 0467/1009] Bot Updating Package Versions --- package_versions.txt | 827 +++++++++++++++++++++---------------------- 1 file changed, 401 insertions(+), 426 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f28b373..c2e75ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,426 +1,401 @@ -NAME VERSION TYPE -BouncyCastle.Crypto 1.9.0.1 dotnet -Dapper 2.0.143.55328 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 -FFMpegCore 4.0.0.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 -Instances 1.0.0.0 dotnet -Json.NET.NET6.0 13.0.3.27908 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.NET6 5.3.3.381 dotnet -NLogSyslogtarget 7.0.0.0 dotnet -NLogforNetStandard2.0 5.2.3.1999 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.6.0 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -Radarr 5.2.6.8371 dotnet -Radarr.Api.V3 5.2.6.8371 dotnet -Radarr.Common 5.2.6.8371 dotnet -Radarr.Core 5.2.6.8371 dotnet -Radarr.Host 5.2.6.8371 dotnet -Radarr.Http 5.2.6.8371 dotnet -Radarr.Mono 5.2.6.8371 dotnet -Radarr.SignalR 5.2.6.8371 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.23.1.0 dotnet -SixLabors.ImageSharp 3.0.2.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.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 -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 -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 -coreutils 9.3-r1 apk -curl 8.5.0-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbsd 0.11.7-r1 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r1 apk -libcurl 8.5.0-r0 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgpg-error 1.47-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libproc2 4.0.4-r0 apk -libssl3 3.1.4-r1 apk -libstdc++ 12.2.1_git20220924-r10 apk -libunistring 1.1-r1 apk -libxml2 2.11.6-r0 apk -libxslt 1.1.38-r0 apk -linux-pam 1.5.2-r10 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 -nghttp2-libs 1.57.0-r0 apk -oniguruma 6.9.8-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 -skalibs 2.13.1.1-r1 apk -sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r5 apk -tzdata 2023c-r1 apk -utmps-libs 0.1.2.1-r1 apk -xmlstarlet 1.6.1-r2 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.143.55328 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 +FFMpegCore 4.0.0.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 +Instances 1.0.0.0 dotnet +Json.NET 13.0.3.27908 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.3 5.2.3.1999 dotnet +NLog.Extensions.Logging v5.3.3 5.3.3.381 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 +Radarr 5.2.6.8374 dotnet +ReusableTasks 2.0.0-master+2aa9a10 dotnet +Sentry 3.23.1.0 dotnet +SixLabors.ImageSharp 3.0.2.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.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 +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 +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 +coreutils 9.3-r1 apk +curl 8.5.0-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r4 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbsd 0.11.7-r1 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r1 apk +libcurl 8.5.0-r0 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgpg-error 1.47-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libproc2 4.0.4-r0 apk +libssl3 3.1.4-r1 apk +libstdc++ 12.2.1_git20220924-r10 apk +libunistring 1.1-r1 apk +libxml2 2.11.6-r0 apk +libxslt 1.1.38-r0 apk +linux-pam 1.5.2-r10 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 +nghttp2-libs 1.57.0-r0 apk +oniguruma 6.9.8-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 +skalibs 2.13.1.1-r1 apk +sqlite-libs 3.41.2-r2 apk +ssl_client 1.36.1-r5 apk +tzdata 2023c-r1 apk +utmps-libs 0.1.2.1-r1 apk +xmlstarlet 1.6.1-r2 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From c07d3816d4fe86e7a61e5d8167b9a03246059418 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Dec 2023 05:31:14 +0000 Subject: [PATCH 0468/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c2e75ee..8e55dab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -166,7 +166,7 @@ NLog.Targets.Syslog 7.0.0.0 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Radarr 5.2.6.8374 dotnet +Radarr 5.2.6.8375 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 3dafa84f672933d6006ccc7a9484c0e261e7bd16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Dec 2023 21:41:41 +0000 Subject: [PATCH 0469/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8e55dab..cf4c2c8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -166,7 +166,7 @@ NLog.Targets.Syslog 7.0.0.0 NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Radarr 5.2.6.8375 dotnet +Radarr 5.2.6.8378 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2e008c99ad90a2b1846375bcc959628454f508cf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Dec 2023 09:32:48 +0000 Subject: [PATCH 0470/1009] Bot Updating Package Versions --- package_versions.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cf4c2c8..fcc5637 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -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,8 +167,10 @@ NLog.Extensions.Logging v5.3.3 5.3.3.381 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 -Radarr 5.2.6.8378 dotnet +Polly.Core 8.2.0.2702 dotnet +Radarr 5.3.0.8387 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -394,7 +398,7 @@ shadow 4.13-r4 skalibs 2.13.1.1-r1 apk sqlite-libs 3.41.2-r2 apk ssl_client 1.36.1-r5 apk -tzdata 2023c-r1 apk +tzdata 2023d-r0 apk utmps-libs 0.1.2.1-r1 apk xmlstarlet 1.6.1-r2 apk xz-libs 5.4.3-r0 apk From 895451e624b15cc3752206dcc18c78289805c3c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Dec 2023 17:31:37 +0000 Subject: [PATCH 0471/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fcc5637..4a2be87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8387 dotnet +Radarr 5.3.0.8390 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2f0dc6df53a07c96668a6a34a7045f0cda24b953 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Dec 2023 18:16:27 +0000 Subject: [PATCH 0472/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4a2be87..37a946f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8390 dotnet +Radarr 5.3.0.8394 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From a915401d2cf9d81f9b5521c372be10492f09c7cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jan 2024 01:12:06 +0000 Subject: [PATCH 0473/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 37a946f..9141405 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8394 dotnet +Radarr 5.3.0.8398 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ca51e67e3d3518efb4d1f16b3481064fe8d3c998 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jan 2024 06:52:23 +0000 Subject: [PATCH 0474/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9141405..c16d5ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8398 dotnet +Radarr 5.3.0.8399 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b1281bbee06d287ee45fbf152b620fd7e473f165 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jan 2024 16:06:54 +0000 Subject: [PATCH 0475/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c16d5ed..4c1f90a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8399 dotnet +Radarr 5.3.0.8404 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5c73de1a4be32210085e86e18dddfb1867732d35 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jan 2024 21:59:04 +0000 Subject: [PATCH 0476/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4c1f90a..10a5635 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8404 dotnet +Radarr 5.3.0.8405 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 8d0775fad9a5ca808185e36c18361902a9162ded Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 Jan 2024 09:29:28 +0000 Subject: [PATCH 0477/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 10a5635..0d70a06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8405 dotnet +Radarr 5.3.0.8408 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 969abe2366d1f3a79004290d77fab38e459eaefd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 4 Jan 2024 12:59:17 +0000 Subject: [PATCH 0478/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0d70a06..ab6fcc9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8408 dotnet +Radarr 5.3.0.8410 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b34cd071773df32e477b3a774762bc56c55f0a87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 Jan 2024 14:48:12 +0000 Subject: [PATCH 0479/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ab6fcc9..7e38739 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.0.8410 dotnet +Radarr 5.3.1.8415 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2787123ed73c1e4beb46d55f76c3b1ac0c5314af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Jan 2024 14:58:12 +0000 Subject: [PATCH 0480/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7e38739..c0f15e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8415 dotnet +Radarr 5.3.1.8417 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 47d51602fabfd040ce770c4b4b88c4194e74488a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Jan 2024 23:13:57 +0000 Subject: [PATCH 0481/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c0f15e6..e148389 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8417 dotnet +Radarr 5.3.1.8421 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 3f0583d444f8b63fa9aec11a4689f28804349248 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 00:13:10 +0000 Subject: [PATCH 0482/1009] Bot Updating Templated Files --- Jenkinsfile | 295 +++++++++++++++++++++++++++------------------------- 1 file changed, 152 insertions(+), 143 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 05d2cc6..c61b75c 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 = 'RADARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-radarr' @@ -58,11 +59,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 +126,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 +144,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 +262,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}" - 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 - 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 - 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 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' || : + 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 - 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 "Jenkinsfile is up to date." 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() + # 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 + 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} + 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 + 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}/.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} || : + 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() + } } } } @@ -558,7 +599,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 +896,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 6ad8ce3f907a33d3bf47c38c14321922f1e2b951 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 00:16:48 +0000 Subject: [PATCH 0483/1009] Bot Updating Templated Files --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 33c171d..37992b0 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,6 @@ To help you get started creating a container from this image you can either use ```yaml --- -version: "2.1" services: radarr: image: lscr.io/linuxserver/radarr:nightly @@ -204,7 +203,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: @@ -269,21 +268,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 radarr - ``` - -* 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 dbcbbdff003ca4396b59df4a7b3786d0fac04ed7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 00:20:01 +0000 Subject: [PATCH 0484/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e148389..b6cef64 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8421 dotnet +Radarr 5.3.1.8423 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e7a508c2529e69a9035f2274d3957d20db6f0596 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 19:12:32 +0000 Subject: [PATCH 0485/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b6cef64..8dc0e81 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8423 dotnet +Radarr 5.3.1.8424 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4db66d01b34d928dc792d096efb8833d422a9536 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 20:36:49 +0000 Subject: [PATCH 0486/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8dc0e81..b829c6a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8424 dotnet +Radarr 5.3.1.8425 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7f24d59b2d35a86ea7a4d77fe27c702781403203 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 23:17:58 +0000 Subject: [PATCH 0487/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b829c6a..a3e7a0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8425 dotnet +Radarr 5.3.1.8426 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 49ef8ff64926122abcaea03ed0d4f799298fe3be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 11 Jan 2024 00:41:14 +0000 Subject: [PATCH 0488/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a3e7a0a..2c4e659 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8426 dotnet +Radarr 5.3.1.8427 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 12a35f87bb2ec27e3adc1a3555ada677c820e302 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 01:24:13 +0000 Subject: [PATCH 0489/1009] 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 2c4e659..23e41d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8427 dotnet +Radarr 5.3.1.8428 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -367,7 +367,7 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk From 83ca7390b134afd9a9541e1e2f6a93e8249f98b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 02:48:31 +0000 Subject: [PATCH 0490/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 23e41d3..a39ce53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8428 dotnet +Radarr 5.3.1.8431 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4192a90691dd63abf7eca2355f27c281cfeb63e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 21:17:31 +0000 Subject: [PATCH 0491/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a39ce53..49e0cb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8431 dotnet +Radarr 5.3.1.8432 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7dd21573c5ee5b91751811063513733c6dce6098 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jan 2024 04:49:31 +0000 Subject: [PATCH 0492/1009] 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 49e0cb7..1c0e74a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8432 dotnet +Radarr 5.3.1.8438 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -377,7 +377,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.4-r1 apk +libssl3 3.1.4-r3 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.6-r0 apk From 445d9c99d135edbf927c0294c5cfb0f1299cff49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 01:25:34 +0000 Subject: [PATCH 0493/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1c0e74a..b2c3ef3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.1.8438 dotnet +Radarr 5.3.2.8445 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 0440a8febe6a54361927c3c6cd67feff37b3309d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 07:05:27 +0000 Subject: [PATCH 0494/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b2c3ef3..9f076c4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8445 dotnet +Radarr 5.3.2.8464 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 929fc9d675a1f7187c1247be9671c1fd5d4042c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 07:33:33 +0000 Subject: [PATCH 0495/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9f076c4..c87493a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8464 dotnet +Radarr 5.3.2.8465 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e382799d8af3a678635d4b9d047a61a59ef6238e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 19:47:59 +0000 Subject: [PATCH 0496/1009] 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 c87493a..7b3eae8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8465 dotnet +Radarr 5.3.2.8467 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -367,7 +367,7 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk From 849f6e233a8d543a98b44b2e137db88c22bcbca8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 23:29:40 +0000 Subject: [PATCH 0497/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7b3eae8..983de1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8467 dotnet +Radarr 5.3.2.8471 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From eae3e0bff8aebf8652dcf9738240ba205ab02b4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 23:53:32 +0000 Subject: [PATCH 0498/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 983de1e..5a8dd57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8471 dotnet +Radarr 5.3.2.8472 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 24d78936feec8ee4542a5762ab89ebabfaa664be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jan 2024 01:39:24 +0000 Subject: [PATCH 0499/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5a8dd57..2a09025 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8472 dotnet +Radarr 5.3.2.8473 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5d549902e6c98612a49995089f709ba3bd56c8f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jan 2024 05:13:19 +0000 Subject: [PATCH 0500/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2a09025..863d86a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8473 dotnet +Radarr 5.3.2.8476 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 6ec087ada91a0cc41cfa63a2f14838f94ea9fe72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jan 2024 08:11:29 +0000 Subject: [PATCH 0501/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 863d86a..94f8efd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8476 dotnet +Radarr 5.3.2.8481 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From d1a20f35dbfa71f23f2448bc91093616b9efa65e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jan 2024 08:15:34 +0000 Subject: [PATCH 0502/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 94f8efd..f6db9f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8481 dotnet +Radarr 5.3.2.8482 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ea0e577381dce5d7345d2dd7241d10f195c66dc0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jan 2024 08:34:21 +0000 Subject: [PATCH 0503/1009] 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 f6db9f0..4f50106 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8482 dotnet +Radarr 5.3.2.8490 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -396,7 +396,7 @@ readline 8.2.1-r1 scanelf 1.3.7-r1 apk shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk -sqlite-libs 3.41.2-r2 apk +sqlite-libs 3.41.2-r3 apk ssl_client 1.36.1-r5 apk tzdata 2023d-r0 apk utmps-libs 0.1.2.1-r1 apk From 22e67cff38756abb810eccdd21ec0e73ce30a0ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jan 2024 14:50:48 +0000 Subject: [PATCH 0504/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f50106..3c2de7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8490 dotnet +Radarr 5.3.2.8494 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5024a14896d1b05b32e964ff16c5280cca0da367 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 20 Jan 2024 10:14:14 +0000 Subject: [PATCH 0505/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3c2de7e..b6d6d75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8494 dotnet +Radarr 5.3.2.8497 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7fc494b666de52d40178ed098744730789bf61e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jan 2024 03:55:39 +0000 Subject: [PATCH 0506/1009] 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 b6d6d75..0c567e2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8497 dotnet +Radarr 5.3.2.8503 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -377,7 +377,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.4-r3 apk +libssl3 3.1.4-r4 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.6-r0 apk From 254eeae7d23ef05d92f63ff43347ae878242cb7e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jan 2024 03:59:12 +0000 Subject: [PATCH 0507/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0c567e2..db516c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8503 dotnet +Radarr 5.3.2.8504 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 37ca1a679bd89f53921163d6e6ff1011c61e5531 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jan 2024 05:38:58 +0000 Subject: [PATCH 0508/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index db516c7..8cfc0dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8504 dotnet +Radarr 5.3.2.8505 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f93c12c95de38f379d1f1266c14e1e5ab267e3e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jan 2024 14:08:18 +0000 Subject: [PATCH 0509/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8cfc0dc..c7988bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.2.8505 dotnet +Radarr 5.3.3.8506 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From a101a7b8266516cb92c4b1d2cc5cdf7c715e47b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Jan 2024 10:35:38 +0000 Subject: [PATCH 0510/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c7988bf..3be2de1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8506 dotnet +Radarr 5.3.3.8509 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f7b28e878314db32529445567a8c96ff5b690857 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Jan 2024 13:33:49 +0000 Subject: [PATCH 0511/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3be2de1..970e10d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8509 dotnet +Radarr 5.3.3.8511 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 06655071bf80da1c526fa30abbb0d85f226ad129 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 08:16:06 +0000 Subject: [PATCH 0512/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 970e10d..5636950 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8511 dotnet +Radarr 5.3.3.8514 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From dd2e5a794ad26a1030e56ebb97d4556f00e60294 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 08:37:22 +0000 Subject: [PATCH 0513/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5636950..ef43bd3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8514 dotnet +Radarr 5.3.3.8515 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f2e764a52c53aa9f66e364051150b3607cad5b8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 10:54:46 +0000 Subject: [PATCH 0514/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ef43bd3..c152871 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8515 dotnet +Radarr 5.3.3.8519 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From dd098d18d13fb0bf839a0c6bd84181d4c68c1b24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 11:33:26 +0000 Subject: [PATCH 0515/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c152871..8b24676 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8519 dotnet +Radarr 5.3.3.8521 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From bf8df5cdafbcf37eef5f5243bd7868d4d91753ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 12:46:40 +0000 Subject: [PATCH 0516/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8b24676..edd43f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8521 dotnet +Radarr 5.3.3.8523 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 83bd918ec9c67e53422700ce7906711b36f4bbc1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 26 Jan 2024 11:11:20 +0000 Subject: [PATCH 0517/1009] 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 edd43f2..f56d406 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8523 dotnet +Radarr 5.3.3.8524 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -367,7 +367,7 @@ libacl 2.3.1-r3 libattr 2.5.1-r4 apk libbsd 0.11.7-r1 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 libgcc 12.2.1_git20220924-r10 apk libgcrypt 1.10.2-r1 apk From 776407a5b62a627f24129ea4ab7aee52ace8721d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jan 2024 09:51:11 +0000 Subject: [PATCH 0518/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f56d406..c0e0207 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8524 dotnet +Radarr 5.3.3.8526 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b91beb3b0ed860914eee53400abdb96e13c499af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jan 2024 12:01:12 +0000 Subject: [PATCH 0519/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c0e0207..3ff4bf0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8526 dotnet +Radarr 5.3.3.8527 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 140e2857a7038ea0a30e5d8db6b2ccd93df5d12b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jan 2024 17:27:39 +0000 Subject: [PATCH 0520/1009] 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 3ff4bf0..54393a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8527 dotnet +Radarr 5.3.3.8533 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -350,7 +350,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 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk @@ -358,7 +358,7 @@ busybox 1.36.1-r5 busybox-binsh 1.36.1-r5 apk ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk -coreutils 9.3-r1 apk +coreutils 9.3-r2 apk curl 8.5.0-r0 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk @@ -377,7 +377,7 @@ libintl 0.21.1-r7 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.4-r4 apk +libssl3 3.1.4-r5 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk libxml2 2.11.6-r0 apk From 0e8f10604176a8b25073a5a4ba6a115183564ac4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jan 2024 22:42:59 +0000 Subject: [PATCH 0521/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 54393a7..eb1f54f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8533 dotnet +Radarr 5.3.3.8535 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From cf71517faa8623e8e02b7de261cf7e4ccc6f0d3d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 Jan 2024 05:07:29 +0000 Subject: [PATCH 0522/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eb1f54f..72acfb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8535 dotnet +Radarr 5.3.3.8539 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 240fbd0a41ae19f1bff47200df6d94f2ff9e0d6f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 Jan 2024 14:21:47 +0000 Subject: [PATCH 0523/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 72acfb7..d0dcd5d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.3.8539 dotnet +Radarr 5.3.4.8543 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ea611e57e21fdf3e7744a92da0ff0005abf70e34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jan 2024 21:25:12 +0000 Subject: [PATCH 0524/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d0dcd5d..04f8d55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8543 dotnet +Radarr 5.3.4.8547 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e585d9ae12e5df510f7203c1e6ff3fce60b7c0c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 Jan 2024 18:58:19 +0000 Subject: [PATCH 0525/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 04f8d55..2fd9791 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8547 dotnet +Radarr 5.3.4.8548 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5f051ec6224c993c5b49e7f79e56e3334ec1b819 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Feb 2024 01:33:58 +0000 Subject: [PATCH 0526/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2fd9791..2531718 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8548 dotnet +Radarr 5.3.4.8553 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From d4dc10a9ac45897d47b343117d8e26cb1f4ce257 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Feb 2024 02:54:53 +0000 Subject: [PATCH 0527/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2531718..dc02671 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8553 dotnet +Radarr 5.3.4.8555 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 7919c840f449464f18ad5c80d6b867c44b47cf77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Feb 2024 18:20:31 +0000 Subject: [PATCH 0528/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dc02671..f1f8445 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8555 dotnet +Radarr 5.3.4.8558 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From c0e60c9ec93659bf5d5980953894a406af356a08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Feb 2024 19:48:22 +0000 Subject: [PATCH 0529/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f1f8445..00b210a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8558 dotnet +Radarr 5.3.4.8559 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 4bdcebe867ef052ba174239185e0c23a05dedbcb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Feb 2024 22:25:22 +0000 Subject: [PATCH 0530/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 00b210a..f27214f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8559 dotnet +Radarr 5.3.4.8561 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f3f8504ec9cbdd94b06ea0295e1c39bf3eee7376 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Feb 2024 00:15:37 +0000 Subject: [PATCH 0531/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f27214f..108489d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8561 dotnet +Radarr 5.3.4.8562 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 505fafe11d1f0e835125efb945b6b77054e4c44c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Feb 2024 21:20:27 +0000 Subject: [PATCH 0532/1009] 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 108489d..0a4b3a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8562 dotnet +Radarr 5.3.4.8567 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -398,7 +398,7 @@ shadow 4.13-r4 skalibs 2.13.1.1-r1 apk sqlite-libs 3.41.2-r3 apk ssl_client 1.36.1-r5 apk -tzdata 2023d-r0 apk +tzdata 2024a-r0 apk utmps-libs 0.1.2.1-r1 apk xmlstarlet 1.6.1-r2 apk xz-libs 5.4.3-r0 apk From 81b8fc582e2439dc7fe60dd45b4da390acf7ea1c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Feb 2024 23:06:33 +0000 Subject: [PATCH 0533/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0a4b3a6..eeb77dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.4.8567 dotnet +Radarr 5.3.5.8570 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 8e1058db12e6840daf04364e21307482a695ee4b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Feb 2024 23:55:09 +0000 Subject: [PATCH 0534/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eeb77dc..57f5eae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8570 dotnet +Radarr 5.3.5.8572 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ae8e456b80165ae45e76d780a0614658916351d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Feb 2024 13:32:20 +0000 Subject: [PATCH 0535/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 57f5eae..a450f1b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8572 dotnet +Radarr 5.3.5.8577 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b670158ef0e8c9630c53ea2c47e2af5165519cf0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Feb 2024 16:58:19 +0000 Subject: [PATCH 0536/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a450f1b..bd13bb6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8577 dotnet +Radarr 5.3.5.8578 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 66c67cac4ff7c6f651ece5fa6c68f94b422f7286 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Feb 2024 21:57:57 +0000 Subject: [PATCH 0537/1009] Bot Updating Package Versions --- package_versions.txt | 810 +++++++++++++++++++++---------------------- 1 file changed, 405 insertions(+), 405 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bd13bb6..ad88a4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,405 +1,405 @@ -NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.143.55328 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 -FFMpegCore 4.0.0.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 -Instances 1.0.0.0 dotnet -Json.NET 13.0.3.27908 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.3 5.2.3.1999 dotnet -NLog.Extensions.Logging v5.3.3 5.3.3.381 dotnet -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 -Radarr 5.3.5.8578 dotnet -ReusableTasks 2.0.0-master+2aa9a10 dotnet -Sentry 3.23.1.0 dotnet -SixLabors.ImageSharp 3.0.2.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.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 -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 -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 -coreutils 9.3-r2 apk -curl 8.5.0-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbsd 0.11.7-r1 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r5 apk -libcurl 8.5.0-r0 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgpg-error 1.47-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libproc2 4.0.4-r0 apk -libssl3 3.1.4-r5 apk -libstdc++ 12.2.1_git20220924-r10 apk -libunistring 1.1-r1 apk -libxml2 2.11.6-r0 apk -libxslt 1.1.38-r0 apk -linux-pam 1.5.2-r10 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 -nghttp2-libs 1.57.0-r0 apk -oniguruma 6.9.8-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 -skalibs 2.13.1.1-r1 apk -sqlite-libs 3.41.2-r3 apk -ssl_client 1.36.1-r5 apk -tzdata 2024a-r0 apk -utmps-libs 0.1.2.1-r1 apk -xmlstarlet 1.6.1-r2 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.143.55328 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 +FFMpegCore 4.0.0.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 +Instances 1.0.0.0 dotnet +Json.NET 13.0.3.27908 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.3 5.2.3.1999 dotnet +NLog.Extensions.Logging v5.3.3 5.3.3.381 dotnet +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 +Radarr 5.3.5.8579 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.23.1.0 dotnet +SixLabors.ImageSharp 3.0.2.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.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 +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 +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 +coreutils 9.3-r2 apk +curl 8.5.0-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r4 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbsd 0.11.7-r1 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r5 apk +libcurl 8.5.0-r0 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgpg-error 1.47-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libproc2 4.0.4-r0 apk +libssl3 3.1.4-r5 apk +libstdc++ 12.2.1_git20220924-r10 apk +libunistring 1.1-r1 apk +libxml2 2.11.6-r0 apk +libxslt 1.1.38-r0 apk +linux-pam 1.5.2-r10 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 +nghttp2-libs 1.57.0-r0 apk +oniguruma 6.9.8-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 +skalibs 2.13.1.1-r1 apk +sqlite-libs 3.41.2-r3 apk +ssl_client 1.36.1-r5 apk +tzdata 2024a-r0 apk +utmps-libs 0.1.2.1-r1 apk +xmlstarlet 1.6.1-r2 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 36f1c635423ccd66b1ed094d248f3c775218cb42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Feb 2024 03:57:35 +0000 Subject: [PATCH 0538/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ad88a4f..fab6255 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8579 dotnet +Radarr 5.3.5.8588 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 35893e9d0de75f1314582511a1958d2b1f28d569 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Feb 2024 05:06:43 +0000 Subject: [PATCH 0539/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fab6255..265f63a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8588 dotnet +Radarr 5.3.5.8592 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 2a78f8a541dcfad920e69737d47205174fcf8fdc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 Feb 2024 00:31:06 +0000 Subject: [PATCH 0540/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 265f63a..731b611 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8592 dotnet +Radarr 5.3.5.8594 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 097a6e94bd088a530e65980a95e383254f579fb8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Feb 2024 18:00:07 +0000 Subject: [PATCH 0541/1009] 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 731b611..1f4908b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.5.8594 dotnet +Radarr 5.3.6.8604 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet @@ -380,7 +380,7 @@ libproc2 4.0.4-r0 libssl3 3.1.4-r5 apk libstdc++ 12.2.1_git20220924-r10 apk libunistring 1.1-r1 apk -libxml2 2.11.6-r0 apk +libxml2 2.11.7-r0 apk libxslt 1.1.38-r0 apk linux-pam 1.5.2-r10 apk mscorlib 6.0.2523.51912 dotnet From 014efeab4111037d7955820010cc68f8cb3257ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Feb 2024 02:12:56 +0000 Subject: [PATCH 0542/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1f4908b..a39a811 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.6.8604 dotnet +Radarr 5.3.6.8606 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 57ee7369df8528c0ef5eea59f51df0cc4d7640cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Feb 2024 02:25:37 +0000 Subject: [PATCH 0543/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a39a811..64e8fcb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.6.8606 dotnet +Radarr 5.3.6.8608 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 51e10a5dc2d3cab6aa332cc01158ab8684775c5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Feb 2024 20:32:32 +0000 Subject: [PATCH 0544/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 64e8fcb..4d170d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.6.8608 dotnet +Radarr 5.3.6.8610 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e8313dcf76b278ed8e11a3730ebdf01d161ac433 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Feb 2024 18:04:00 +0000 Subject: [PATCH 0545/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4d170d2..ef233de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.3.6.8610 dotnet +Radarr 5.4.0.8613 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e6a6d56d80a38aaa1289eeb24801a45f1f0c63d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Feb 2024 20:51:44 +0000 Subject: [PATCH 0546/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ef233de..771ed3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8613 dotnet +Radarr 5.4.0.8616 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b76f83a067de4aef3ced9d906a4c7aea8204e5cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Feb 2024 15:52:59 +0000 Subject: [PATCH 0547/1009] Bot Updating Templated Files --- Jenkinsfile | 297 +++++++++++++++++++++++++--------------------------- 1 file changed, 143 insertions(+), 154 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c61b75c..ee9431f 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} + 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} --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 - echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + 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 - 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}/.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 22c22df87d3aa9e5e3101b3dc2761bd9794ae050 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Feb 2024 15:56:33 +0000 Subject: [PATCH 0548/1009] 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 ce3d19a..629238a 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 radarr" label: Container logs placeholder: | - Output of `docker logs linuxserver.io` + Output of `docker logs radarr` render: bash validations: required: true diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 4583754..6fcc0c2 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 ca86cff..48ac128 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 2342978..134c9b4 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 87d5495..05b3e8b 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 07f6fdb5142eb6bb698061b2b8ea5a0418278e2a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Feb 2024 16:02:46 +0000 Subject: [PATCH 0549/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 771ed3e..4276cdb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8616 dotnet +Radarr 5.4.0.8625 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 6fb77c3a3c67c90ac9eaecab4c4749efd4836fe5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Feb 2024 20:04:34 +0000 Subject: [PATCH 0550/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4276cdb..d76bf7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8625 dotnet +Radarr 5.4.0.8631 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e94d82a61015d1e2110214ef99869ec36cd3387e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 22 Feb 2024 00:12:11 +0000 Subject: [PATCH 0551/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d76bf7e..4147788 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8631 dotnet +Radarr 5.4.0.8633 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From ea3a0a8696457172ea9e2e53c07e704c0ef5404b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Feb 2024 05:08:39 +0000 Subject: [PATCH 0552/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4147788..b00b132 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8633 dotnet +Radarr 5.4.0.8634 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5182d1560af05e31d9fded1d03009a256cfab446 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 25 Feb 2024 03:07:37 +0000 Subject: [PATCH 0553/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b00b132..d70ede1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8634 dotnet +Radarr 5.4.0.8636 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From b9f43a327a87f899d6af728f42014b67d7674048 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 04:11:58 +0000 Subject: [PATCH 0554/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d70ede1..8da9ca8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.0.8636 dotnet +Radarr 5.4.1.8637 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 23f5dfdd370cb4fbdfbbabf51fa9bfc69966e10d Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Tue, 27 Feb 2024 10:06:00 -0500 Subject: [PATCH 0555/1009] fix ci screenshot --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ee9431f..cfa4c86 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { CI_SSL='false' CI_DELAY='120' CI_DOCKERENV='TZ=Europe/London' - CI_AUTH='user:password' + CI_AUTH='' CI_WEBPATH='/system/status' } stages { diff --git a/jenkins-vars.yml b/jenkins-vars.yml index d23f739..67d5faa 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -24,7 +24,7 @@ repo_vars: - CI_SSL='false' - CI_DELAY='120' - CI_DOCKERENV='TZ=Europe/London' - - CI_AUTH='user:password' + - CI_AUTH='' - CI_WEBPATH='/system/status' sponsor_links: - { name: "Radarr", url: "https://opencollective.com/radarr" } From 193e62e11022eec82b6c983ede672a2f1c8a8bb4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Feb 2024 01:21:37 +0000 Subject: [PATCH 0556/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8da9ca8..26da085 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.1.8637 dotnet +Radarr 5.4.1.8642 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 3c4eb4a661202a40c03e62d6b1985d8d61f2b3c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 2 Mar 2024 02:40:19 +0000 Subject: [PATCH 0557/1009] Bot Updating Package Versions --- package_versions.txt | 810 +++++++++++++++++++++---------------------- 1 file changed, 405 insertions(+), 405 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 26da085..92cf798 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,405 +1,405 @@ -NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.143.55328 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 -FFMpegCore 4.0.0.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 -Instances 1.0.0.0 dotnet -Json.NET 13.0.3.27908 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.3 5.2.3.1999 dotnet -NLog.Extensions.Logging v5.3.3 5.3.3.381 dotnet -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 -Radarr 5.4.1.8642 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.23.1.0 dotnet -SixLabors.ImageSharp 3.0.2.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.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 -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 -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 -coreutils 9.3-r2 apk -curl 8.5.0-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbsd 0.11.7-r1 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r5 apk -libcurl 8.5.0-r0 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgpg-error 1.47-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libproc2 4.0.4-r0 apk -libssl3 3.1.4-r5 apk -libstdc++ 12.2.1_git20220924-r10 apk -libunistring 1.1-r1 apk -libxml2 2.11.7-r0 apk -libxslt 1.1.38-r0 apk -linux-pam 1.5.2-r10 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 -nghttp2-libs 1.57.0-r0 apk -oniguruma 6.9.8-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 -skalibs 2.13.1.1-r1 apk -sqlite-libs 3.41.2-r3 apk -ssl_client 1.36.1-r5 apk -tzdata 2024a-r0 apk -utmps-libs 0.1.2.1-r1 apk -xmlstarlet 1.6.1-r2 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.143.55328 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 +FFMpegCore 4.0.0.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 +Instances 1.0.0.0 dotnet +Json.NET 13.0.3.27908 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.3 5.2.3.1999 dotnet +NLog.Extensions.Logging v5.3.3 5.3.3.381 dotnet +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 +Radarr 5.4.1.8651 dotnet (+7 duplicates) +ReusableTasks 2.0.0 dotnet +Sentry 3.23.1.0 dotnet +SixLabors.ImageSharp 3.0.2.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.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 +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 +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 +coreutils 9.3-r2 apk +curl 8.5.0-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r4 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbsd 0.11.7-r1 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r5 apk +libcurl 8.5.0-r0 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgpg-error 1.47-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libproc2 4.0.4-r0 apk +libssl3 3.1.4-r5 apk +libstdc++ 12.2.1_git20220924-r10 apk +libunistring 1.1-r1 apk +libxml2 2.11.7-r0 apk +libxslt 1.1.38-r0 apk +linux-pam 1.5.2-r10 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 +nghttp2-libs 1.57.0-r0 apk +oniguruma 6.9.8-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 +skalibs 2.13.1.1-r1 apk +sqlite-libs 3.41.2-r3 apk +ssl_client 1.36.1-r5 apk +tzdata 2024a-r0 apk +utmps-libs 0.1.2.1-r1 apk +xmlstarlet 1.6.1-r2 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 7b720e45e059b08b9bbcf5e58c532dd00ef8c9a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 02:16:04 +0000 Subject: [PATCH 0558/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 92cf798..dba8187 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.1.8651 dotnet (+7 duplicates) +Radarr 5.4.1.8654 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 15bedeb801c14e6caad1e1124de2ab5444e89c62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 11:01:22 +0000 Subject: [PATCH 0559/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dba8187..fe1c665 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.1.8654 dotnet (+7 duplicates) +Radarr 5.4.1.8656 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 5bd7dcfd698593c8bc212938ab6caa5c83e743b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 11:31:37 +0000 Subject: [PATCH 0560/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fe1c665..407ec28 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.1.8656 dotnet (+7 duplicates) +Radarr 5.4.2.8657 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From e832be176ae18e143e8a0bb09e072f04b1174a9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 13:02:03 +0000 Subject: [PATCH 0561/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 407ec28..b08af99 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.2.8657 dotnet (+7 duplicates) +Radarr 5.4.2.8658 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From f503a9309122c78060d11767de4beb196bdd2150 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Mar 2024 01:53:33 +0000 Subject: [PATCH 0562/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b08af99..527f82c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.2.8658 dotnet (+7 duplicates) +Radarr 5.4.2.8659 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 30a9b24bd920f1aec0f2ccf554fbc2c2d6dc34de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Mar 2024 08:51:41 +0000 Subject: [PATCH 0563/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 527f82c..f74cbb6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.2.8659 dotnet (+7 duplicates) +Radarr 5.4.2.8666 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From eb0df1efd0975cfdaab2b88d33de4ffc86ac5dcc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Mar 2024 12:45:59 +0000 Subject: [PATCH 0564/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f74cbb6..4ca3eeb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.2.8666 dotnet (+7 duplicates) +Radarr 5.4.2.8667 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.0.2.0 dotnet From 695eea1df2d3bcd78fcc54ba1687ab5d2a4611c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Mar 2024 18:51:53 +0000 Subject: [PATCH 0565/1009] 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 4ca3eeb..7c45d7f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -167,13 +167,13 @@ NLog.Extensions.Logging v5.3.3 5.3.3.381 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.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.2.0.2702 dotnet -Radarr 5.4.2.8667 dotnet (+7 duplicates) +Polly.Core 8.3.1.3207 dotnet +Radarr 5.4.3.8670 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet -SixLabors.ImageSharp 3.0.2.0 dotnet +SixLabors.ImageSharp 3.1.3.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet System 6.0.2523.51912 dotnet From 1659db2fc77f0a455c84d3b3f4409135e7a2519b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Mar 2024 21:22:28 +0000 Subject: [PATCH 0566/1009] Bot Updating Templated Files --- Jenkinsfile | 61 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cfa4c86..812f53a 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 880c398b9b4cc0645aa11885d8bc36c49beb36fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Mar 2024 21:26:46 +0000 Subject: [PATCH 0567/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7c45d7f..dbada76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.3.8670 dotnet (+7 duplicates) +Radarr 5.4.3.8673 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 25db65d2072d41fd1ff05985ab8cf4ba31ae639e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Mar 2024 05:57:55 +0000 Subject: [PATCH 0568/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dbada76..08936b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.3.8673 dotnet (+7 duplicates) +Radarr 5.4.3.8675 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From f8204b4287a8f8a58619c8e5dfffb2648f9d9a4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Mar 2024 13:12:01 +0000 Subject: [PATCH 0569/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 08936b1..59ae24f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.3.8675 dotnet (+7 duplicates) +Radarr 5.4.3.8676 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From b844202ea6f630f2d4fe1be294617e7d460bf7aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Mar 2024 15:33:54 +0000 Subject: [PATCH 0570/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 59ae24f..edac6e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.3.8676 dotnet (+7 duplicates) +Radarr 5.4.3.8677 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 297ee4c720bf6e534c72ed6c2f8b567def5ccf18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Mar 2024 12:54:16 +0000 Subject: [PATCH 0571/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index edac6e3..eb5f93b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.3.8677 dotnet (+7 duplicates) +Radarr 5.4.4.8682 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From b7a83225e382dbca5b51b8a17b9d8e9041ca679c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Mar 2024 14:34:32 +0000 Subject: [PATCH 0572/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eb5f93b..91a3c62 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.4.8682 dotnet (+7 duplicates) +Radarr 5.4.4.8683 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From c5701cc06ddff1608b7abfd0e4167f32dc6ead30 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 20 Mar 2024 17:30:12 +0000 Subject: [PATCH 0573/1009] Rebase to 3.19 --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- README.md | 13 +++++++------ readme-vars.yml | 14 +++++--------- 4 files changed, 16 insertions(+), 19 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39c42e0..5305f47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ # 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 ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thespad" +LABEL maintainer="Roxedus,thespad" # environment settings ARG RADARR_BRANCH="nightly" diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2eccbcb..7e723eb 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,13 +1,13 @@ # 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 ARG VERSION ARG RADARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thespad" +LABEL maintainer="Roxedus,thespad" # environment settings ARG RADARR_BRANCH="nightly" diff --git a/README.md b/README.md index 37992b0..a3a986c 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Access the webui at `<your-ip>:7878`, for more information check out [Radarr](ht We have set `/movies` 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. @@ -96,9 +96,9 @@ services: - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/data:/config + - /path/to/radarr/data:/config - /path/to/movies:/movies #optional - - /path/to/downloadclient-downloads:/downloads #optional + - /path/to/download-client-downloads:/downloads #optional ports: - 7878:7878 restart: unless-stopped @@ -113,9 +113,9 @@ docker run -d \ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 7878:7878 \ - -v /path/to/data:/config \ + -v /path/to/radarr/data:/config \ -v /path/to/movies:/movies `#optional` \ - -v /path/to/downloadclient-downloads:/downloads `#optional` \ + -v /path/to/download-client-downloads:/downloads `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/radarr:nightly ``` @@ -126,7 +126,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | -| `-p 7878` | The port for the Radarr webinterface | +| `-p 7878` | The port for the Radarr web UI | | `-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). | @@ -295,6 +295,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. diff --git a/readme-vars.yml b/readme-vars.yml index a59f10e..8de14b0 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -24,21 +24,16 @@ development_versions_items: param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Database and Radarr configs" } + - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Database and Radarr configs" } opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Location of Movie library on disk (See note in Application setup)" } - - { vol_path: "/downloads", vol_host_path: "/path/to/downloadclient-downloads", desc: "Location of download managers output directory (See note in Application setup)" } + - { vol_path: "/downloads", vol_host_path: "/path/to/download-client-downloads", desc: "Location of download managers output directory (See note in Application setup)" } param_usage_include_ports: true param_ports: - - { external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr webinterface" } -param_usage_include_env: true -param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London, this is required for Radarr"} -# optional env variables -opt_param_usage_include_env: false + - { external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr web UI" } # application setup block app_setup_block_enabled: true @@ -49,12 +44,13 @@ app_setup_block: | We have set `/movies` 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 3e50fce8a070fb16d42afd8af86bb9b78a791ddd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Mar 2024 19:17:54 +0000 Subject: [PATCH 0574/1009] Bot Updating Package Versions --- package_versions.txt | 86 +++++++++++++++++++++++--------------------- 1 file changed, 45 insertions(+), 41 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 91a3c62..ac54954 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -347,59 +347,63 @@ System.Xml.XPath.XDocument 6.0.2523.51912 System.Xml.XmlDocument 6.0.2523.51912 dotnet System.Xml.XmlSerializer 6.0.2523.51912 dotnet WindowsBase 6.0.2523.51912 dotnet -alpine-baselayout 3.4.3-r1 apk -alpine-baselayout-data 3.4.3-r1 apk +alpine-baselayout 3.4.3-r2 apk +alpine-baselayout-data 3.4.3-r2 apk alpine-keys 2.4-r1 apk -alpine-release 3.18.6-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 +alpine-release 3.19.1-r0 apk +apk-tools 2.14.0-r5 apk +bash 5.2.21-r0 apk +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 -coreutils 9.3-r2 apk +coreutils 9.4-r2 apk +coreutils-env 9.4-r2 apk +coreutils-fmt 9.4-r2 apk +coreutils-sha512sum 9.4-r2 apk curl 8.5.0-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbsd 0.11.7-r1 apk +icu-data-en 74.1-r0 apk +icu-libs 74.1-r0 apk +jq 1.7.1-r0 apk +libacl 2.3.1-r4 apk +libattr 2.5.1-r5 apk +libbsd 0.11.7-r3 apk libc-utils 0.7.2-r5 apk libcrypto3 3.1.4-r5 apk libcurl 8.5.0-r0 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgpg-error 1.47-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk +libgcc 13.2.1_git20231014-r0 apk +libgcrypt 1.10.3-r0 apk +libgpg-error 1.47-r2 apk +libidn2 2.3.4-r4 apk +libintl 0.22.3-r0 apk +libmd 1.1.0-r0 apk +libncursesw 6.4_p20231125-r0 apk libproc2 4.0.4-r0 apk libssl3 3.1.4-r5 apk -libstdc++ 12.2.1_git20220924-r10 apk -libunistring 1.1-r1 apk +libstdc++ 13.2.1_git20231014-r0 apk +libunistring 1.1-r2 apk libxml2 2.11.7-r0 apk -libxslt 1.1.38-r0 apk -linux-pam 1.5.2-r10 apk +libxslt 1.1.39-r0 apk +linux-pam 1.5.3-r7 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 +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 -nghttp2-libs 1.57.0-r0 apk -oniguruma 6.9.8-r1 apk +nghttp2-libs 1.58.0-r0 apk +oniguruma 6.9.9-r0 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 -sqlite-libs 3.41.2-r3 apk -ssl_client 1.36.1-r5 apk +readline 8.2.1-r2 apk +scanelf 1.3.7-r2 apk +shadow 4.14.2-r0 apk +skalibs 2.14.0.1-r0 apk +sqlite-libs 3.44.2-r0 apk +ssl_client 1.36.1-r15 apk tzdata 2024a-r0 apk -utmps-libs 0.1.2.1-r1 apk +utmps-libs 0.1.2.2-r0 apk xmlstarlet 1.6.1-r2 apk -xz-libs 5.4.3-r0 apk -zlib 1.2.13-r1 apk +xz-libs 5.4.5-r0 apk +zlib 1.3.1-r0 apk From 09d775acb4b08bb8c5b395ce87cc6ab9a243c84e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 21 Mar 2024 18:19:43 +0000 Subject: [PATCH 0575/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ac54954..bd59cdb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.4.8683 dotnet (+7 duplicates) +Radarr 5.4.4.8685 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 7eea437b7328ac3d2ec6968797123dae5594f4d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Mar 2024 11:37:44 +0000 Subject: [PATCH 0576/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bd59cdb..b128919 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.4.8685 dotnet (+7 duplicates) +Radarr 5.4.4.8688 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 1f2fbb113b748b3c5633ebe35905a49ab4b6aa20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Mar 2024 16:21:25 +0000 Subject: [PATCH 0577/1009] 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 b128919..e92312f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.4.8688 dotnet (+7 duplicates) +Radarr 5.4.5.8689 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet @@ -357,8 +357,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 coreutils 9.4-r2 apk coreutils-env 9.4-r2 apk coreutils-fmt 9.4-r2 apk From 3128f429a6f6d78a7faa43043b9a094432ca460e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Mar 2024 17:40:59 +0000 Subject: [PATCH 0578/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e92312f..0622751 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.5.8689 dotnet (+7 duplicates) +Radarr 5.4.5.8692 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 9ab3e9112e839df74783be02a3a425653adfde77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Mar 2024 12:02:26 +0000 Subject: [PATCH 0579/1009] 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 0622751..a23c395 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.5.8692 dotnet (+7 duplicates) +Radarr 5.4.5.8703 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet @@ -356,7 +356,7 @@ bash 5.2.21-r0 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 coreutils 9.4-r2 apk From 396abdd329f5e801ce87024d314f8db7d0527208 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Apr 2024 01:06:47 +0000 Subject: [PATCH 0580/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a23c395..abc1dd3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.5.8703 dotnet (+7 duplicates) +Radarr 5.4.5.8705 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From aac7579c1d29f327be6f4b198aae0c3985e6ee51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Apr 2024 16:06:04 +0000 Subject: [PATCH 0581/1009] 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 abc1dd3..d7a69a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.5.8705 dotnet (+7 duplicates) +Radarr 5.4.5.8714 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet @@ -351,7 +351,7 @@ alpine-baselayout 3.4.3-r2 alpine-baselayout-data 3.4.3-r2 apk alpine-keys 2.4-r1 apk alpine-release 3.19.1-r0 apk -apk-tools 2.14.0-r5 apk +apk-tools 2.14.3-r1 apk bash 5.2.21-r0 apk brotli-libs 1.1.0-r1 apk busybox 1.36.1-r15 apk From a0be9b72fddfbf329fcfd18df948aa3d2c5a4b39 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Apr 2024 16:36:00 +0000 Subject: [PATCH 0582/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d7a69a6..47548ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.5.8714 dotnet (+7 duplicates) +Radarr 5.4.5.8715 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 137b5f1c51a4b90206cf65e9bf58fa95fd969533 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Apr 2024 03:00:41 +0000 Subject: [PATCH 0583/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 47548ed..360754a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.5.8715 dotnet (+7 duplicates) +Radarr 5.4.6.8717 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From bd3fda19342ac0bbdbcb8615d500d6c6a68515cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Apr 2024 05:41:02 +0000 Subject: [PATCH 0584/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 360754a..04d41eb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.6.8717 dotnet (+7 duplicates) +Radarr 5.4.6.8718 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 0881b56772b9213b43e50e9a6f4b6cb7cae328c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Apr 2024 16:47:35 +0000 Subject: [PATCH 0585/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 04d41eb..b9e36b9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.6.8718 dotnet (+7 duplicates) +Radarr 5.4.6.8719 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 5c9dd8f0c2d1fd4e6acefcf1c83c500b8fd24022 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Apr 2024 21:15:47 +0000 Subject: [PATCH 0586/1009] 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 b9e36b9..8d43e7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.6.8719 dotnet (+7 duplicates) +Radarr 5.4.6.8722 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet @@ -371,7 +371,7 @@ libacl 2.3.1-r4 libattr 2.5.1-r5 apk libbsd 0.11.7-r3 apk 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 libgcc 13.2.1_git20231014-r0 apk libgcrypt 1.10.3-r0 apk From 7f375269e4fcecff30e31d67b129586b1b5e82ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Apr 2024 06:21:53 +0000 Subject: [PATCH 0587/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8d43e7a..0cc73e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.4.6.8722 dotnet (+7 duplicates) +Radarr 5.5.0.8725 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From 6f37763a102733f3adf3802177740ae85d5a32ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Apr 2024 08:43:21 +0000 Subject: [PATCH 0588/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0cc73e0..16bf9f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.0.8725 dotnet (+7 duplicates) +Radarr 5.5.0.8726 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.3.0 dotnet From d77b0d9036562d8f1e7e3d3d91852674e0aac0e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Apr 2024 22:44:35 +0000 Subject: [PATCH 0589/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 16bf9f3..76242e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -381,7 +381,7 @@ libintl 0.22.3-r0 libmd 1.1.0-r0 apk libncursesw 6.4_p20231125-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.4-r5 apk +libssl3 3.1.4-r6 apk libstdc++ 13.2.1_git20231014-r0 apk libunistring 1.1-r2 apk libxml2 2.11.7-r0 apk From a2879da0c5d29f7002f29afa05c7a88fcdb5b751 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Apr 2024 10:57:31 +0000 Subject: [PATCH 0590/1009] 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 76242e9..9a3d42f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,10 +170,10 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.0.8726 dotnet (+7 duplicates) +Radarr 5.5.0.8729 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet -SixLabors.ImageSharp 3.1.3.0 dotnet +SixLabors.ImageSharp 3.1.4.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet System 6.0.2523.51912 dotnet @@ -351,7 +351,7 @@ alpine-baselayout 3.4.3-r2 alpine-baselayout-data 3.4.3-r2 apk alpine-keys 2.4-r1 apk alpine-release 3.19.1-r0 apk -apk-tools 2.14.3-r1 apk +apk-tools 2.14.4-r0 apk bash 5.2.21-r0 apk brotli-libs 1.1.0-r1 apk busybox 1.36.1-r15 apk @@ -364,6 +364,7 @@ coreutils-env 9.4-r2 coreutils-fmt 9.4-r2 apk coreutils-sha512sum 9.4-r2 apk curl 8.5.0-r0 apk +findutils 4.9.0-r5 apk icu-data-en 74.1-r0 apk icu-libs 74.1-r0 apk jq 1.7.1-r0 apk From eedd0a6a465761b76aaf6299b5f8fe3377d9470b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Apr 2024 06:51:50 +0000 Subject: [PATCH 0591/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9a3d42f..6f672ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.0.8729 dotnet (+7 duplicates) +Radarr 5.5.1.8738 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From c1d9cff7a427fcdf469013c2308cc41d26eea762 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Apr 2024 08:19:21 +0000 Subject: [PATCH 0592/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6f672ef..81c02dd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.1.8738 dotnet (+7 duplicates) +Radarr 5.5.1.8739 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From e74c8a58422c5d5d4c4244972c9ea7375ea41e66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Apr 2024 07:46:42 +0000 Subject: [PATCH 0593/1009] Bot Updating Package Versions --- package_versions.txt | 518 +++++++++++++++++++++---------------------- 1 file changed, 259 insertions(+), 259 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 81c02dd..03cf368 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.143.55328 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 @@ -15,89 +15,89 @@ ImpromptuInterface 7.0.1.0 Instances 1.0.0.0 dotnet Json.NET 13.0.3.27908 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.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 +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.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 +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.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 @@ -170,183 +170,183 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.1.8739 dotnet (+7 duplicates) +Radarr 5.5.1.8743 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.4.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.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.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.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 -WindowsBase 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 +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 @@ -388,12 +388,12 @@ libunistring 1.1-r2 libxml2 2.11.7-r0 apk libxslt 1.1.39-r0 apk linux-pam 1.5.3-r7 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 nghttp2-libs 1.58.0-r0 apk oniguruma 6.9.9-r0 apk procps-ng 4.0.4-r0 apk From d4fd6d25454d9ddbe8879a556f6dab5fcd2e7195 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Apr 2024 09:21:00 +0000 Subject: [PATCH 0594/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 03cf368..70fd29d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.1.8743 dotnet (+7 duplicates) +Radarr 5.5.1.8746 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From e6fda942aaa540fc56b1bb086f1aa3180fbad455 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Apr 2024 15:10:16 +0000 Subject: [PATCH 0595/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 70fd29d..6193c0b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.1.8746 dotnet (+7 duplicates) +Radarr 5.5.1.8747 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From b7a5cb2af766212aeafc4a88f0fcde1987f81409 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 Apr 2024 17:55:13 +0000 Subject: [PATCH 0596/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6193c0b..a993e99 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.1.8747 dotnet (+7 duplicates) +Radarr 5.5.2.8759 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 3.23.1.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 63d341b423d627577e9fe015f69c8b3ba9f0903d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 May 2024 21:04:18 +0000 Subject: [PATCH 0597/1009] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 812f53a..995658f 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 062177e38dd6a71c5b29df0cffdd7751a0074e10 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 May 2024 21:07:14 +0000 Subject: [PATCH 0598/1009] 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 a993e99..31923dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,9 +170,9 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.2.8759 dotnet (+7 duplicates) +Radarr 5.5.2.8766 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet -Sentry 3.23.1.0 dotnet +Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet From 17b298950d80fef7c479acbf0deac107ecf42fac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 May 2024 22:33:01 +0000 Subject: [PATCH 0599/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 31923dc..4f8e7d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.2.8766 dotnet (+7 duplicates) +Radarr 5.5.2.8781 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 57d69856c14945628f73b322bf7676ad59a490d1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 10:19:32 +0000 Subject: [PATCH 0600/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f8e7d2..727e7a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.2.8781 dotnet (+7 duplicates) +Radarr 5.5.3.8784 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 2afdb704c9816ec9571120644352932fdb3011a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 10:42:27 +0000 Subject: [PATCH 0601/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 727e7a0..fd8dfe2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8784 dotnet (+7 duplicates) +Radarr 5.5.3.8786 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From fe1c6d3a7ae395a703dacf22ac97eaa1543c82fc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 10:57:34 +0000 Subject: [PATCH 0602/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fd8dfe2..66677bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8786 dotnet (+7 duplicates) +Radarr 5.5.3.8789 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From e3aa05c22825493950ebfb23f8fbdc55159a4c8e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 20:02:39 +0000 Subject: [PATCH 0603/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 66677bd..61bda03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8789 dotnet (+7 duplicates) +Radarr 5.5.3.8791 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From fed37484343e012f87c57442f61889db28134b20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 May 2024 19:00:39 +0000 Subject: [PATCH 0604/1009] Bot Updating Templated Files --- Jenkinsfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 995658f..6aff237 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 41afbe564a2928d7a60ec0742713ac8c15604453 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 May 2024 19:03:47 +0000 Subject: [PATCH 0605/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 61bda03..9d1f523 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8791 dotnet (+7 duplicates) +Radarr 5.5.3.8793 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 54e42bb582f6340e3b4d8879a5e9906e11b68117 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 May 2024 19:23:13 +0000 Subject: [PATCH 0606/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9d1f523..6aa0ff6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8793 dotnet (+7 duplicates) +Radarr 5.5.3.8795 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 6f00e1cc45bd834113e133d23620765581bb1a2d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 May 2024 20:55:35 +0000 Subject: [PATCH 0607/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6aa0ff6..5084f37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8795 dotnet (+7 duplicates) +Radarr 5.5.3.8796 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 6363c6ef3c41ec8cab7c24fdc0441f5e9325193a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 May 2024 15:47:38 +0000 Subject: [PATCH 0608/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5084f37..2743073 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8796 dotnet (+7 duplicates) +Radarr 5.5.3.8802 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From f337e5e82fb92a5f7cea8478ce5941f0fa44ec49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 May 2024 01:38:45 +0000 Subject: [PATCH 0609/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2743073..8209c8b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8802 dotnet (+7 duplicates) +Radarr 5.5.3.8806 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 072e93b9c506acb5c415f827a0bc31b5a6835356 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 18:31:58 +0000 Subject: [PATCH 0610/1009] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6aff237..f3c88b0 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 8bb676bfdbe372eb1f12e832430c0b0e7a8a98d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 18:34:52 +0000 Subject: [PATCH 0611/1009] 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 8209c8b..1e937af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8806 dotnet (+7 duplicates) +Radarr 5.5.3.8807 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -359,6 +359,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 coreutils 9.4-r2 apk coreutils-env 9.4-r2 apk coreutils-fmt 9.4-r2 apk From d7f9a9d29183aa3684428dc81c47b6bfe85d36a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 22:22:05 +0000 Subject: [PATCH 0612/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1e937af..4c69b3a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8807 dotnet (+7 duplicates) +Radarr 5.5.3.8808 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From aff48cb4613e8929d80eab013603871a7516db73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 May 2024 11:37:03 +0000 Subject: [PATCH 0613/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4c69b3a..c655744 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8808 dotnet (+7 duplicates) +Radarr 5.5.3.8812 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 7e80e4ce71a4a4355f8e3ef38d1631374b5e4b96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 May 2024 12:49:19 +0000 Subject: [PATCH 0614/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c655744..81df632 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8812 dotnet (+7 duplicates) +Radarr 5.5.3.8813 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 6955bb433b5f9f808ba109675d235c4bc720d42a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 May 2024 14:16:59 +0000 Subject: [PATCH 0615/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 81df632..2ff38af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8813 dotnet (+7 duplicates) +Radarr 5.5.3.8814 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 402e424ec505b55ecb274983025027ed64428e20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 May 2024 14:05:59 +0000 Subject: [PATCH 0616/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2ff38af..002c067 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8814 dotnet (+7 duplicates) +Radarr 5.5.3.8817 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 1de0b34be4fd2aa4cb7d61af7e97eae8ae80e545 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 May 2024 14:02:52 +0000 Subject: [PATCH 0617/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 002c067..8d73139 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.5.3.8817 dotnet (+7 duplicates) +Radarr 5.6.0.8820 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 39b28fcacf74866b9142495c58e302b97ceab56d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 May 2024 14:50:07 +0000 Subject: [PATCH 0618/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8d73139..049ce7f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.6.0.8820 dotnet (+7 duplicates) +Radarr 5.6.0.8824 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 31e32621bdd8d10b40ff73f7883380b491ccf666 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 May 2024 19:51:10 +0000 Subject: [PATCH 0619/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 049ce7f..806d78c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.6.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.6.0.8824 dotnet (+7 duplicates) +Radarr 5.6.0.8829 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 34e560bd0f8aaced47c2cd254b1aa653ae12ede6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 May 2024 12:50:26 +0000 Subject: [PATCH 0620/1009] 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 806d78c..b4b98b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -166,11 +166,11 @@ NLog v5.2.3 5.2.3.1999 NLog.Extensions.Logging v5.3.3 5.3.3.381 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 -Radarr 5.6.0.8829 dotnet (+7 duplicates) +Radarr 5.6.0.8830 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 6d0f551ee0b99ad1f357a347fae96cf761179247 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 May 2024 00:29:14 +0000 Subject: [PATCH 0621/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b4b98b5..b7acf51 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.6.0.8830 dotnet (+7 duplicates) +Radarr 5.6.0.8838 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From bd8d74c3ffb8edbcbb83585d5bfe75e7f613bac4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 May 2024 13:28:10 +0000 Subject: [PATCH 0622/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b7acf51..34eea59 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.6.0.8838 dotnet (+7 duplicates) +Radarr 5.6.0.8841 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From f17aa29fe0694484c81edb801653569fb72c6732 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 May 2024 15:51:07 +0000 Subject: [PATCH 0623/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 34eea59..f719077 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.6.0.8841 dotnet (+7 duplicates) +Radarr 5.6.0.8845 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 3d4a31d3fdb5246802c6fa529cf2187b01ca4ef3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 May 2024 17:55:55 +0000 Subject: [PATCH 0624/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f719077..fd8f59d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.6.0.8845 dotnet (+7 duplicates) +Radarr 5.7.0.8847 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 618f0599add24e270e024c5c95b2f3a05af4922c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 May 2024 16:58:10 +0000 Subject: [PATCH 0625/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fd8f59d..eff1684 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -386,7 +386,7 @@ libproc2 4.0.4-r0 libssl3 3.1.4-r6 apk libstdc++ 13.2.1_git20231014-r0 apk libunistring 1.1-r2 apk -libxml2 2.11.7-r0 apk +libxml2 2.11.8-r0 apk libxslt 1.1.39-r0 apk linux-pam 1.5.3-r7 apk mscorlib 6.0.2924.17105 dotnet From bfe6d0a335c62667918e45c4af7b539de0255165 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 00:53:38 +0000 Subject: [PATCH 0626/1009] Bot Updating Templated Files --- Jenkinsfile | 41 +++++++++++------------------------------ 1 file changed, 11 insertions(+), 30 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f3c88b0..d303cab 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=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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 + 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 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} - 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 ee01c713f1a611185567ec5fe2120b920a3702c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 00:55:23 +0000 Subject: [PATCH 0627/1009] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3a986c..7636a9a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Find us at: # [linuxserver/radarr](https://github.com/linuxserver/docker-radarr) -[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fradarr?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fradarr) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fradarr?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-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-radarr/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-radarr/packages) From 040b12f3ee3a8fdc3dc14fc4216b2fc062880e77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 00:59:20 +0000 Subject: [PATCH 0628/1009] 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 eff1684..9d2ac92 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.7.0.8847 dotnet (+7 duplicates) +Radarr 5.7.0.8850 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -373,7 +373,7 @@ libacl 2.3.1-r4 libattr 2.5.1-r5 apk libbsd 0.11.7-r3 apk 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 libgcc 13.2.1_git20231014-r0 apk libgcrypt 1.10.3-r0 apk From bc188f731ad31493b3ab2244bc91110e48ffcc49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 23 May 2024 00:54:21 +0000 Subject: [PATCH 0629/1009] 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 9d2ac92..402d3bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.7.0.8850 dotnet (+7 duplicates) +Radarr 5.7.0.8851 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -354,8 +354,8 @@ alpine-release 3.19.1-r0 apk-tools 2.14.4-r0 apk bash 5.2.21-r0 apk brotli-libs 1.1.0-r1 apk -busybox 1.36.1-r15 apk -busybox-binsh 1.36.1-r15 apk +busybox 1.36.1-r18 apk +busybox-binsh 1.36.1-r18 apk c-ares 1.27.0-r0 apk ca-certificates 20240226-r0 apk ca-certificates-bundle 20240226-r0 apk @@ -383,7 +383,7 @@ libintl 0.22.3-r0 libmd 1.1.0-r0 apk libncursesw 6.4_p20231125-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.4-r6 apk +libssl3 3.1.5-r0 apk libstdc++ 13.2.1_git20231014-r0 apk libunistring 1.1-r2 apk libxml2 2.11.8-r0 apk @@ -403,7 +403,7 @@ scanelf 1.3.7-r2 shadow 4.14.2-r0 apk skalibs 2.14.0.1-r0 apk sqlite-libs 3.44.2-r0 apk -ssl_client 1.36.1-r15 apk +ssl_client 1.36.1-r18 apk tzdata 2024a-r0 apk utmps-libs 0.1.2.2-r0 apk xmlstarlet 1.6.1-r2 apk From 98e66eea1ba00b535374e649fc0b21eb3cca08e0 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 25 May 2024 20:49:23 +0100 Subject: [PATCH 0630/1009] Rebase to 3.20 --- Dockerfile | 3 ++- Dockerfile.aarch64 | 3 ++- Jenkinsfile | 4 ++-- README.md | 1 + jenkins-vars.yml | 5 ++--- readme-vars.yml | 1 + 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5305f47..e9d0c10 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 @@ -32,6 +32,7 @@ RUN \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/radarr/package_info && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 7e723eb..ea40cc1 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 @@ -32,6 +32,7 @@ RUN \ /tmp/radarr.tar.gz -C \ /app/radarr/bin --strip-components=1 && \ echo -e "UpdateMethod=docker\nBranch=${RADARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/radarr/package_info && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /app/radarr/bin/Radarr.Update \ diff --git a/Jenkinsfile b/Jenkinsfile index d303cab..153293b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,8 +30,8 @@ pipeline { CI_WEB='true' CI_PORT='7878' CI_SSL='false' - CI_DELAY='120' - CI_DOCKERENV='TZ=Europe/London' + CI_DELAY='60' + CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='/system/status' } diff --git a/README.md b/README.md index 7636a9a..03b2f09 100644 --- a/README.md +++ b/README.md @@ -295,6 +295,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 67d5faa..c579f14 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,7 +7,6 @@ custom_version_command: curl -sL https://radarr.servarr.com/v1/update/nightly/ch release_type: prerelease release_tag: nightly ls_branch: nightly -build_armhf: false repo_vars: - BUILD_VERSION_ARG = 'RADARR_RELEASE' - LS_USER = 'linuxserver' @@ -22,8 +21,8 @@ repo_vars: - CI_WEB='true' - CI_PORT='7878' - CI_SSL='false' - - CI_DELAY='120' - - CI_DOCKERENV='TZ=Europe/London' + - CI_DELAY='60' + - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='/system/status' sponsor_links: diff --git a/readme-vars.yml b/readme-vars.yml index 8de14b0..cc0ea8b 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -50,6 +50,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 86a3af38fd107754eec702b6ae35b21257ddb03a Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sun, 26 May 2024 14:42:21 +0100 Subject: [PATCH 0631/1009] Don't try and read config.xml if it doesn't exist yet --- root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check b/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check index 57b08c4..1832dc6 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/data/check @@ -1,6 +1,8 @@ #!/bin/bash -PORT=$(xmlstarlet sel -T -t -v /Config/Port /config/config.xml) +if [ -f /config/config.xml ]; then + PORT=$(xmlstarlet sel -T -t -v /Config/Port /config/config.xml) +fi if [[ $(curl -sL "http://localhost:${PORT:-7878}/ping" | jq -r '.status' 2>/dev/null) = "OK" ]]; then exit 0 From 9002b8b086b6d5996d286fc29429d321b09a1901 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sun, 26 May 2024 14:52:38 +0100 Subject: [PATCH 0632/1009] Increase CI delay for slow arm tests --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 153293b..0add030 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,7 @@ pipeline { CI_WEB='true' CI_PORT='7878' CI_SSL='false' - CI_DELAY='60' + CI_DELAY='120' CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='/system/status' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index c579f14..94b11ce 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -21,7 +21,7 @@ repo_vars: - CI_WEB='true' - CI_PORT='7878' - CI_SSL='false' - - CI_DELAY='60' + - CI_DELAY='120' - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='/system/status' From 8e8a4b2382afb0e0a2d1f5f8e91385538e278bec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 May 2024 14:05:40 +0000 Subject: [PATCH 0633/1009] Bot Updating Package Versions --- package_versions.txt | 91 ++++++++++++++++++++++---------------------- 1 file changed, 46 insertions(+), 45 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 402d3bc..539c732 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -347,65 +347,66 @@ System.Xml.XPath.XDocument 6.0.2924.17105 System.Xml.XmlDocument 6.0.2924.17105 dotnet System.Xml.XmlSerializer 6.0.2924.17105 dotnet WindowsBase 6.0.2924.17105 dotnet -alpine-baselayout 3.4.3-r2 apk -alpine-baselayout-data 3.4.3-r2 apk +alpine-baselayout 3.6.5-r0 apk +alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk -alpine-release 3.19.1-r0 apk +alpine-release 3.20.0-r0 apk apk-tools 2.14.4-r0 apk -bash 5.2.21-r0 apk -brotli-libs 1.1.0-r1 apk -busybox 1.36.1-r18 apk -busybox-binsh 1.36.1-r18 apk -c-ares 1.27.0-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 -coreutils 9.4-r2 apk -coreutils-env 9.4-r2 apk -coreutils-fmt 9.4-r2 apk -coreutils-sha512sum 9.4-r2 apk -curl 8.5.0-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 findutils 4.9.0-r5 apk -icu-data-en 74.1-r0 apk -icu-libs 74.1-r0 apk +icu-data-en 74.2-r0 apk +icu-libs 74.2-r0 apk jq 1.7.1-r0 apk -libacl 2.3.1-r4 apk -libattr 2.5.1-r5 apk -libbsd 0.11.7-r3 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.5-r0 apk -libcurl 8.5.0-r0 apk -libgcc 13.2.1_git20231014-r0 apk +libacl 2.3.2-r0 apk +libattr 2.5.2-r0 apk +libbsd 0.12.2-r0 apk +libcrypto3 3.3.0-r2 apk +libcurl 8.7.1-r0 apk +libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk -libgpg-error 1.47-r2 apk -libidn2 2.3.4-r4 apk -libintl 0.22.3-r0 apk +libgpg-error 1.49-r0 apk +libidn2 2.3.7-r0 apk +libintl 0.22.5-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20231125-r0 apk +libncursesw 6.4_p20240420-r0 apk libproc2 4.0.4-r0 apk -libssl3 3.1.5-r0 apk -libstdc++ 13.2.1_git20231014-r0 apk -libunistring 1.1-r2 apk -libxml2 2.11.8-r0 apk -libxslt 1.1.39-r0 apk -linux-pam 1.5.3-r7 apk +libpsl 0.21.5-r1 apk +libssl3 3.3.0-r2 apk +libstdc++ 13.2.1_git20240309-r0 apk +libunistring 1.2-r0 apk +libxml2 2.12.7-r0 apk +libxslt 1.1.39-r1 apk +linux-pam 1.6.0-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 +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.58.0-r0 apk +nghttp2-libs 1.62.0-r0 apk oniguruma 6.9.9-r0 apk procps-ng 4.0.4-r0 apk -readline 8.2.1-r2 apk +readline 8.2.10-r0 apk scanelf 1.3.7-r2 apk -shadow 4.14.2-r0 apk -skalibs 2.14.0.1-r0 apk -sqlite-libs 3.44.2-r0 apk -ssl_client 1.36.1-r18 apk -tzdata 2024a-r0 apk -utmps-libs 0.1.2.2-r0 apk +shadow 4.15.1-r0 apk +skalibs 2.14.1.1-r0 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 xmlstarlet 1.6.1-r2 apk -xz-libs 5.4.5-r0 apk -zlib 1.3.1-r0 apk +xz-libs 5.6.1-r3 apk +zlib 1.3.1-r1 apk +zstd-libs 1.5.6-r0 apk From 06acb54688ef9d7e0c68dea361bbee37b571cd55 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 31 May 2024 11:28:16 +0000 Subject: [PATCH 0634/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 539c732..6be4168 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet -Radarr 5.7.0.8851 dotnet (+7 duplicates) +Radarr 5.7.0.8852 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From b58b674abe1e440ab64b7ecc90bc0c95d17efd3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jun 2024 06:30:23 +0000 Subject: [PATCH 0635/1009] 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 6be4168..f7449e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ Equ 2.3.0 FFMpegCore 4.0.0.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 Instances 1.0.0.0 dotnet @@ -167,10 +167,10 @@ NLog.Extensions.Logging v5.3.3 5.3.3.381 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.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.3.1.3207 dotnet -Radarr 5.7.0.8852 dotnet (+7 duplicates) +Polly.Core 8.4.0.3442 dotnet +Radarr 5.7.0.8855 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 7e2670045b8541da5db430fce178ecfaee3c9b32 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jun 2024 07:29:53 +0000 Subject: [PATCH 0636/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f7449e0..0502ec2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8855 dotnet (+7 duplicates) +Radarr 5.7.0.8859 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 6b43f7ee7b2da2ec80589b34b101437a25594036 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jun 2024 15:19:31 +0000 Subject: [PATCH 0637/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0502ec2..5bc3b37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8859 dotnet (+7 duplicates) +Radarr 5.7.0.8861 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From d7c5c59ac5d2d2d036bd09473b680d2e2a845218 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Jun 2024 10:05:24 +0000 Subject: [PATCH 0638/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5bc3b37..09ffdf5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8861 dotnet (+7 duplicates) +Radarr 5.7.0.8862 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 8ab3581205a3376e0bc2ab6ecb307de2cce89a59 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Jun 2024 16:57:23 +0000 Subject: [PATCH 0639/1009] 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 09ffdf5..332e91c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -372,7 +372,7 @@ jq 1.7.1-r0 libacl 2.3.2-r0 apk libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.0-r2 apk +libcrypto3 3.3.1-r0 apk libcurl 8.7.1-r0 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk @@ -383,7 +383,7 @@ libmd 1.1.0-r0 libncursesw 6.4_p20240420-r0 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk -libssl3 3.3.0-r2 apk +libssl3 3.3.1-r0 apk libstdc++ 13.2.1_git20240309-r0 apk libunistring 1.2-r0 apk libxml2 2.12.7-r0 apk From c4075f73ceb26c56ade8e91be74dc4f4e6747a03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Jun 2024 11:13:30 +0000 Subject: [PATCH 0640/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 332e91c..9a5b0ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8862 dotnet (+7 duplicates) +Radarr 5.7.0.8866 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From a36c46922d234af6be3a69bda8adaa551c922145 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Jun 2024 11:56:53 +0000 Subject: [PATCH 0641/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9a5b0ad..78abb58 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8866 dotnet (+7 duplicates) +Radarr 5.7.0.8867 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From aea987666d634d282db7ac18a00c1d603cf43caa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 05:01:58 +0000 Subject: [PATCH 0642/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 78abb58..6826d23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8867 dotnet (+7 duplicates) +Radarr 5.7.0.8871 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From f8dcb1accce49371fa411462b568ac4cffe7b31c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 05:15:45 +0000 Subject: [PATCH 0643/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6826d23..05d513b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8871 dotnet (+7 duplicates) +Radarr 5.7.0.8872 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From ac749734fb39be159b893382f3054478814740a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 05:34:42 +0000 Subject: [PATCH 0644/1009] 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 05d513b..2783346 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -152,7 +152,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 @@ -170,12 +170,13 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8872 dotnet (+7 duplicates) +Radarr 5.7.0.8874 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.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 b2f144067e5dc5e81b5aa6148aebc982c78ef7f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 06:38:53 +0000 Subject: [PATCH 0645/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2783346..65ddc7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8874 dotnet (+7 duplicates) +Radarr 5.7.0.8875 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 421728c6779902ecd5b15551fd2c8429b086e8b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Jun 2024 16:38:36 +0000 Subject: [PATCH 0646/1009] 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 65ddc7e..0f47a7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8875 dotnet (+7 duplicates) +Radarr 5.7.0.8876 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -355,8 +355,8 @@ alpine-release 3.20.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 @@ -404,7 +404,7 @@ scanelf 1.3.7-r2 shadow 4.15.1-r0 apk skalibs 2.14.1.1-r0 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 xmlstarlet 1.6.1-r2 apk From b0a32be4f0a94e29ec94581f9efc43d3edad38a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Jun 2024 01:23:26 +0000 Subject: [PATCH 0647/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0f47a7e..45aa56c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8876 dotnet (+7 duplicates) +Radarr 5.7.0.8877 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From a843d67d15ac902a74ec04f627457cffca868f29 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Jun 2024 04:36:13 +0000 Subject: [PATCH 0648/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 45aa56c..31e3061 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8877 dotnet (+7 duplicates) +Radarr 5.7.0.8879 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From e9b008d590dd738e79b8dc6f4ec36f8761f90e93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Jun 2024 17:21:34 +0000 Subject: [PATCH 0649/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 31e3061..2025673 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8879 dotnet (+7 duplicates) +Radarr 5.7.0.8880 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 0b75aeb94dd2ba3ceccebb9c7379c0de72f09d77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Jun 2024 17:52:37 +0000 Subject: [PATCH 0650/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2025673..2d3b848 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8880 dotnet (+7 duplicates) +Radarr 5.7.0.8881 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From d8fa28d36b392e14102c7a5fa7528957ddea8972 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 20 Jun 2024 14:39:31 +0000 Subject: [PATCH 0651/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2d3b848..db11d4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.7.0.8881 dotnet (+7 duplicates) +Radarr 5.8.0.8883 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From f9dc4ab2ef219420f06459714a9408241c573a33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Jun 2024 00:41:56 +0000 Subject: [PATCH 0652/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index db11d4e..977e0ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8883 dotnet (+7 duplicates) +Radarr 5.8.0.8884 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 37968533993445c57779bf417fdebccf5861d0ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Jun 2024 16:57:23 +0000 Subject: [PATCH 0653/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 977e0ed..6234dd0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -351,7 +351,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 apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk brotli-libs 1.1.0-r2 apk From 99c722008b03554894d58a71364300b13b9c8b1d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Jun 2024 20:28:32 +0000 Subject: [PATCH 0654/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6234dd0..0a0d838 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8884 dotnet (+7 duplicates) +Radarr 5.8.0.8885 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 132896934b26d00f900b8681787fa328fbc97a56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jun 2024 00:25:15 +0000 Subject: [PATCH 0655/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0a0d838..f2a054e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8885 dotnet (+7 duplicates) +Radarr 5.8.0.8889 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 5c983de3d20d773dfe1a1687a5c08e65f7742642 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jun 2024 01:52:51 +0000 Subject: [PATCH 0656/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f2a054e..6fb3caa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8889 dotnet (+7 duplicates) +Radarr 5.8.0.8890 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From b53a1073367aa1f0c41f081c5c443973cc0fe3e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jun 2024 21:01:40 +0000 Subject: [PATCH 0657/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6fb3caa..a5c0510 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8890 dotnet (+7 duplicates) +Radarr 5.8.0.8894 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 6ea7cfb94e9e9e246f77ac6c3dcf7eb5d07ba6e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jun 2024 22:23:35 +0000 Subject: [PATCH 0658/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a5c0510..a86459c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8894 dotnet (+7 duplicates) +Radarr 5.8.0.8896 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 0ee9399beaa2bce5b718dfa477920c7c3f5aa372 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Jun 2024 01:10:19 +0000 Subject: [PATCH 0659/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a86459c..03f90ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8896 dotnet (+7 duplicates) +Radarr 5.8.0.8897 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 5e51f9d5da3f9a878952824fe1b0604da3a0c32b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Jun 2024 04:59:48 +0000 Subject: [PATCH 0660/1009] 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 03f90ec..124bdaf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.0.8897 dotnet (+7 duplicates) +Radarr 5.8.1.8899 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -365,7 +365,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 findutils 4.9.0-r5 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -373,8 +373,8 @@ jq 1.7.1-r0 libacl 2.3.2-r0 apk libattr 2.5.2-r0 apk libbsd 0.12.2-r0 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 libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk libgpg-error 1.49-r0 apk @@ -384,7 +384,7 @@ libmd 1.1.0-r0 libncursesw 6.4_p20240420-r0 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk -libssl3 3.3.1-r0 apk +libssl3 3.3.1-r1 apk libstdc++ 13.2.1_git20240309-r0 apk libunistring 1.2-r0 apk libxml2 2.12.7-r0 apk @@ -396,7 +396,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 oniguruma 6.9.9-r0 apk procps-ng 4.0.4-r0 apk readline 8.2.10-r0 apk From 5c11e8c55f624015f0221b720c9408b63b7c1d28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jul 2024 01:23:34 +0000 Subject: [PATCH 0661/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 124bdaf..0d2b512 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.1.8899 dotnet (+7 duplicates) +Radarr 5.8.1.8902 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 7ac594ef4481dfd0d5c3201cfddaf9371fae90e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jul 2024 01:54:28 +0000 Subject: [PATCH 0662/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0d2b512..2f5e14a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.1.8902 dotnet (+7 duplicates) +Radarr 5.8.1.8903 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 98b35a21aebebd7c1f3fc5dd49f9a55d80dc36d1 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Wed, 3 Jul 2024 19:21:01 +0100 Subject: [PATCH 0663/1009] Move tmpdir, set COMPlus_EnableDiagnostics --- Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- readme-vars.yml | 2 ++ root/etc/s6-overlay/s6-rc.d/init-radarr-config/run | 5 ++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9d0c10..44b771b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,9 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG RADARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg" +ENV XDG_CONFIG_HOME="/config/xdg" \ + COMPlus_EnableDiagnostics=0 \ + TMPDIR=/run/radarr-temp RUN \ echo "**** install packages ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ea40cc1..4e56707 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -11,7 +11,9 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG RADARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg" +ENV XDG_CONFIG_HOME="/config/xdg" \ + COMPlus_EnableDiagnostics=0 \ + TMPDIR=/run/radarr-temp RUN \ echo "**** install packages ****" && \ diff --git a/readme-vars.yml b/readme-vars.yml index cc0ea8b..8967548 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -35,6 +35,8 @@ param_usage_include_ports: true param_ports: - { external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr web UI" } +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-radarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run index efea851..00ce068 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run @@ -1,6 +1,9 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash +mkdir -p /run/radarr-temp + # permissions lsiown -R abc:abc \ - /config + /config \ + /run/radarr-temp From 464aad63cb1f0dccd81865fc5f703c0b77174d05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 5 Jul 2024 10:52:45 +0000 Subject: [PATCH 0664/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2f5e14a..714d312 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.1.8903 dotnet (+7 duplicates) +Radarr 5.8.1.8905 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From c99378d242203157e838319e95038a088031bce8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Jul 2024 13:31:16 +0000 Subject: [PATCH 0665/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 714d312..1004278 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.1.8905 dotnet (+7 duplicates) +Radarr 5.8.1.8906 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 371532d03a74a45499defb375cbe0be12f90f08c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Jul 2024 20:04:35 +0000 Subject: [PATCH 0666/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1004278..bcfcd87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.1.8906 dotnet (+7 duplicates) +Radarr 5.8.2.8908 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From b6bf23ab93460f3a01c943c2c420c3bb7eea791c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jul 2024 13:51:48 +0000 Subject: [PATCH 0667/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bcfcd87..ed01a6a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.2.8908 dotnet (+7 duplicates) +Radarr 5.8.2.8911 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 32e38ea4022f0bf432afd5dca38228044bed18d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jul 2024 15:33:33 +0000 Subject: [PATCH 0668/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ed01a6a..9997e20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.2.8911 dotnet (+7 duplicates) +Radarr 5.8.2.8912 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 9eb4b0ab0d85159d42bd0e19ac3f4df88b373b0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jul 2024 17:24:43 +0000 Subject: [PATCH 0669/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9997e20..dfd2a5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.2.8912 dotnet (+7 duplicates) +Radarr 5.8.2.8915 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 0811b00c1ea247724b3439ee6181940acf92ddbb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 10:08:26 +0000 Subject: [PATCH 0670/1009] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0add030..affce8c 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 08ae3ddc691495231c2407d3dc7cbdee01a7204d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 10:10:00 +0000 Subject: [PATCH 0671/1009] 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 1447bc5..02e1bdb 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 03b2f09..8defb75 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,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. @@ -133,6 +138,7 @@ Containers are configured using parameters passed at runtime (such as those abov | `-v /config` | Database and Radarr configs | | `-v /movies` | Location of Movie library on disk (See note in Application setup) | | `-v /downloads` | Location of download managers output directory (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 e9ecb887f89ed6cad2eccdcff72d3a833a0eab1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 10:12:35 +0000 Subject: [PATCH 0672/1009] 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 dfd2a5b..7f99fb1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.2.8915 dotnet (+7 duplicates) +Radarr 5.8.3.8916 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -358,8 +358,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 coreutils 9.5-r1 apk coreutils-env 9.5-r1 apk @@ -373,7 +373,7 @@ jq 1.7.1-r0 libacl 2.3.2-r0 apk libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.1-r1 apk +libcrypto3 3.3.1-r3 apk libcurl 8.8.0-r0 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk @@ -384,7 +384,7 @@ libmd 1.1.0-r0 libncursesw 6.4_p20240420-r0 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk -libssl3 3.3.1-r1 apk +libssl3 3.3.1-r3 apk libstdc++ 13.2.1_git20240309-r0 apk libunistring 1.2-r0 apk libxml2 2.12.7-r0 apk From 62cd2d3c59df1f1a36bca6585962567b1f36ba68 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jul 2024 13:01:19 +0000 Subject: [PATCH 0673/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7f99fb1..d3f0173 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8916 dotnet (+7 duplicates) +Radarr 5.8.3.8921 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 40c34c098d041ee2f718ca444cb76421f0e603f5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jul 2024 13:11:58 +0000 Subject: [PATCH 0674/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d3f0173..0181b18 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8921 dotnet (+7 duplicates) +Radarr 5.8.3.8922 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 88b34b0494af8e91e70f22c22da7de1740a9ece7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jul 2024 13:42:01 +0000 Subject: [PATCH 0675/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0181b18..255ce56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8922 dotnet (+7 duplicates) +Radarr 5.8.3.8924 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From b9b53372e45b500d7bceea36c57563bb05600f83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jul 2024 15:19:31 +0000 Subject: [PATCH 0676/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 255ce56..bb423b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8924 dotnet (+7 duplicates) +Radarr 5.8.3.8925 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From b330b6c32103a3eb5850c8640fa6536e713d8e93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jul 2024 18:05:23 +0000 Subject: [PATCH 0677/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bb423b0..3d4431e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8925 dotnet (+7 duplicates) +Radarr 5.8.3.8926 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From aca890118301772ecdb9e348c22a9d65d83236ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 18:39:51 +0000 Subject: [PATCH 0678/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3d4431e..d2eb1b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8926 dotnet (+7 duplicates) +Radarr 5.8.3.8927 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 0a5e6742a8bc072e3594ea40957f1810342f6b68 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 20:39:56 +0000 Subject: [PATCH 0679/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d2eb1b1..a5545b6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8927 dotnet (+7 duplicates) +Radarr 5.8.3.8928 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 3db453552afa22741ec2b85cfa0f6e16065a7130 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 21:43:39 +0000 Subject: [PATCH 0680/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a5545b6..7132c95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.0.3442 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8928 dotnet (+7 duplicates) +Radarr 5.8.3.8929 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 938d97f3a5b306d91c1f884c90baaaa41deb128a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 20 Jul 2024 13:49:48 +0000 Subject: [PATCH 0681/1009] Bot Updating Package Versions --- package_versions.txt | 520 +++++++++++++++++++++---------------------- 1 file changed, 260 insertions(+), 260 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7132c95..6dbf0ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,89 +15,89 @@ ImpromptuInterface 7.0.1.0 Instances 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet 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 @@ -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.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 @@ -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.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 @@ -167,187 +167,187 @@ NLog.Extensions.Logging v5.3.3 5.3.3.381 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet Npgsql 7.0.7.0 dotnet -Polly 8.4.0.3442 dotnet +Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.4.0.3442 dotnet -Radarr 5.8.3.8929 dotnet (+7 duplicates) +Polly.Core 8.4.1.3582 dotnet +Radarr 5.8.3.8932 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.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 -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.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.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.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 -WindowsBase 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 +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 @@ -390,12 +390,12 @@ libunistring 1.2-r0 libxml2 2.12.7-r0 apk libxslt 1.1.39-r1 apk linux-pam 1.6.0-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 oniguruma 6.9.9-r0 apk procps-ng 4.0.4-r0 apk From 4a96345370f3d392012970d2714b273674b6292b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jul 2024 15:11:27 +0000 Subject: [PATCH 0682/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6dbf0ed..e3ed500 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.8.3.8932 dotnet (+7 duplicates) +Radarr 5.9.0.8934 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From d8a9006338fe11b10c76efdc482eaec824a3f301 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jul 2024 17:50:33 +0000 Subject: [PATCH 0683/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e3ed500..50cac52 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8934 dotnet (+7 duplicates) +Radarr 5.9.0.8936 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 629c089deb5be906857f5a5e82fdec695ecfeeba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Jul 2024 21:10:48 +0000 Subject: [PATCH 0684/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 50cac52..e3bfaf5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8936 dotnet (+7 duplicates) +Radarr 5.9.0.8949 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 05c84f168c7e25bd99153678afb66f0d422a8c49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 00:53:02 +0000 Subject: [PATCH 0685/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e3bfaf5..e26362f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8949 dotnet (+7 duplicates) +Radarr 5.9.0.8953 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From c9f2db95769928de0e670277be49c018a3667d4b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 05:12:26 +0000 Subject: [PATCH 0686/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e26362f..c08f2ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8953 dotnet (+7 duplicates) +Radarr 5.9.0.8954 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From cb29022f551e094c6d4f9d4513155bfc2f482655 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 05:34:04 +0000 Subject: [PATCH 0687/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c08f2ee..e7e8483 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8954 dotnet (+7 duplicates) +Radarr 5.9.0.8956 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From f9f1a68104e9be179909a4a048a105056bdbdc89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 06:05:36 +0000 Subject: [PATCH 0688/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e7e8483..e688720 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8956 dotnet (+7 duplicates) +Radarr 5.9.0.8958 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 347c6911c50c3013ec492de537f72aa553bbc3f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 19:17:30 +0000 Subject: [PATCH 0689/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e688720..7767543 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8958 dotnet (+7 duplicates) +Radarr 5.9.0.8960 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 392cb51948570ccf41b4273d1c5221c1ad598ecf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 19:20:33 +0000 Subject: [PATCH 0690/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7767543..e2e7057 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8960 dotnet (+7 duplicates) +Radarr 5.9.0.8961 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet From 972ba69c2719fe5bd114e6bd64f7764289d92bd6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 21:42:46 +0000 Subject: [PATCH 0691/1009] 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 e2e7057..0487136 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,10 +170,10 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8961 dotnet (+7 duplicates) +Radarr 5.9.0.8962 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet -SixLabors.ImageSharp 3.1.4.0 dotnet +SixLabors.ImageSharp 3.1.5.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 From 1c1b48247861ee9a4cfdf58177a6e7cb3e332517 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 Jul 2024 16:58:43 +0000 Subject: [PATCH 0692/1009] 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 0487136..5b5151b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -351,7 +351,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 apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk brotli-libs 1.1.0-r2 apk @@ -365,7 +365,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 findutils 4.9.0-r5 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -374,7 +374,7 @@ libacl 2.3.2-r0 libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk libcrypto3 3.3.1-r3 apk -libcurl 8.8.0-r0 apk +libcurl 8.9.0-r0 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk libgpg-error 1.49-r0 apk From 633a572be82985718cca5a0d95e2ef033fc1cf85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 Jul 2024 00:35:17 +0000 Subject: [PATCH 0693/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5b5151b..a63eefe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8962 dotnet (+7 duplicates) +Radarr 5.9.0.8972 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 17a8016f48b9ef5e128756261b0c80c324a1376b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Aug 2024 04:18:58 +0000 Subject: [PATCH 0694/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a63eefe..25f6826 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.8972 dotnet (+7 duplicates) +Radarr 5.9.0.9003 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 3d45b6914c10fa2719358390670033676423a97c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Aug 2024 04:35:07 +0000 Subject: [PATCH 0695/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 25f6826..38b9e85 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9003 dotnet (+7 duplicates) +Radarr 5.9.0.9004 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 67ed214dd2bd34e17af37338b09300810da06fd9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Aug 2024 17:09:42 +0000 Subject: [PATCH 0696/1009] 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 38b9e85..b162bb0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9004 dotnet (+7 duplicates) +Radarr 5.9.0.9010 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -408,6 +408,6 @@ ssl_client 1.36.1-r29 tzdata 2024a-r1 apk utmps-libs 0.1.2.2-r1 apk xmlstarlet 1.6.1-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 4c157582ff51ed2d6ccc367cb9b8a3824d14a0cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Aug 2024 14:18:33 +0000 Subject: [PATCH 0697/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b162bb0..5d2b3fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -170,7 +170,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9010 dotnet (+7 duplicates) +Radarr 5.9.0.9030 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 11dc92abeb2428f69553a64424ddbbb787591b8e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 12:57:46 +0000 Subject: [PATCH 0698/1009] 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 5d2b3fe..78ca830 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -162,15 +162,16 @@ 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.3 5.2.3.1999 dotnet -NLog.Extensions.Logging v5.3.3 5.3.3.381 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 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9030 dotnet (+7 duplicates) +Radarr 5.9.0.9049 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7601e5dabf5e3cc115407f04e8cb85c9d25785b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 13:25:29 +0000 Subject: [PATCH 0699/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 78ca830..a9555b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9049 dotnet (+7 duplicates) +Radarr 5.9.0.9050 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From b8902c188a34931cefe80d054aa07558bf254524 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 13:38:15 +0000 Subject: [PATCH 0700/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a9555b5..daa747d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9050 dotnet (+7 duplicates) +Radarr 5.9.0.9051 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1a3096f66d12bc022436dbf94ffe34a1d064bc92 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 16:54:59 +0000 Subject: [PATCH 0701/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index daa747d..e61ab67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9051 dotnet (+7 duplicates) +Radarr 5.9.0.9052 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From bf5447c579664c6c0bef22d1c3e53f1a67fb5316 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 22:00:52 +0000 Subject: [PATCH 0702/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e61ab67..f917556 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9052 dotnet (+7 duplicates) +Radarr 5.9.0.9053 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7065d1ceb2841871e32ed55d7e9b1963deb414f0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Aug 2024 22:53:06 +0000 Subject: [PATCH 0703/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f917556..475d2b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9053 dotnet (+7 duplicates) +Radarr 5.9.0.9054 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1ac9e0509ba72b6c34bd2f74575af3f14f41f248 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Aug 2024 21:22:27 +0000 Subject: [PATCH 0704/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 475d2b8..bb37964 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9054 dotnet (+7 duplicates) +Radarr 5.9.0.9055 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 50a8c080f5e02faeadd9c0d68238eb0825f2137c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 16:43:14 +0000 Subject: [PATCH 0705/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bb37964..7956fe8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9055 dotnet (+7 duplicates) +Radarr 5.9.0.9056 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 26fdede12761bf1aeb295606c6e0c3cabd6dd81c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 21:52:28 +0000 Subject: [PATCH 0706/1009] Bot Updating Templated Files --- Jenkinsfile | 62 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index affce8c..b82e33e 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 = 'RADARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-radarr' @@ -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 f8400e5ca7c9692461df74b99fc9f48d8bf18c28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 21:54:20 +0000 Subject: [PATCH 0707/1009] 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 6fcc0c2..4287ad0 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-radarr\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_RADARR_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_RADARR_NIGHTLY\". ****" - echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_RADARR_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_RADARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sL https://radarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux | 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 radarr branch nightly" GHA_TRIGGER_URL="https://github.com/linuxserver/docker-radarr/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/radarr" 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 radarr 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-radarr/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-radarr/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 48ac128..8eff28f 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-radarr\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-radarr/${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-radarr/${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-radarr/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 134c9b4..927e30c 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-radarr\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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_RADARR_NIGHTLY\". ****" - echo "Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_RADARR_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_RADARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 05b3e8b..3ea8939 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-radarr\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-radarr/${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-radarr/${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-radarr/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 04c473831a2e57e147ca77f1d42fb374e31a1ded Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 21:57:18 +0000 Subject: [PATCH 0708/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7956fe8..25a7c6b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9056 dotnet (+7 duplicates) +Radarr 5.9.0.9057 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f918d57a5c15b7c6678fbf508e7a2c7002044338 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 02:05:05 +0000 Subject: [PATCH 0709/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 25a7c6b..070608a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9057 dotnet (+7 duplicates) +Radarr 5.9.0.9058 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 5e77f4fe69351b834f060fd45dc558adf2c692d6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 12:35:35 +0000 Subject: [PATCH 0710/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 070608a..6a94aa7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.0.9058 dotnet (+7 duplicates) +Radarr 5.9.1.9060 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c49b3e5e4c85543074fe3375cc06fc266eb160b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Aug 2024 04:06:00 +0000 Subject: [PATCH 0711/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6a94aa7..2e4190f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.1.9060 dotnet (+7 duplicates) +Radarr 5.9.1.9064 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 34293741559392a263b85c9bd7c4806fd7738ee9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Aug 2024 04:18:28 +0000 Subject: [PATCH 0712/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2e4190f..b9e79ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.1.9064 dotnet (+7 duplicates) +Radarr 5.9.1.9067 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 5b2cdd5bbcf1dcc54c3e4ce65b0ea7c383fdbeee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Aug 2024 16:57:10 +0000 Subject: [PATCH 0713/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b9e79ce..584f3a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.1.9067 dotnet (+7 duplicates) +Radarr 5.9.1.9068 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f896df9590313347ffc36444f47a4b59d7e778e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 19:31:38 +0000 Subject: [PATCH 0714/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 584f3a8..1407dfc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.9.1.9068 dotnet (+7 duplicates) +Radarr 5.10.0.9071 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c41966f944e4e6d43b068c1265c626383a4d38ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Aug 2024 01:30:02 +0000 Subject: [PATCH 0715/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1407dfc..ab1bd61 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9071 dotnet (+7 duplicates) +Radarr 5.10.0.9074 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f4f5e009be1065b03d662476fae9b8035b03777b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 22 Aug 2024 04:00:02 +0000 Subject: [PATCH 0716/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ab1bd61..1ce0974 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9074 dotnet (+7 duplicates) +Radarr 5.10.0.9076 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From fdd12003fca6b96ea6c303a1c8995244d22c5b94 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Aug 2024 01:25:10 +0000 Subject: [PATCH 0717/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1ce0974..1b585e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9076 dotnet (+7 duplicates) +Radarr 5.10.0.9078 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9c34cf0432581e4c7a218f6f2a2c9630528e217d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Aug 2024 03:30:03 +0000 Subject: [PATCH 0718/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1b585e6..e2f5780 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9078 dotnet (+7 duplicates) +Radarr 5.10.0.9079 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From dfc7725afd3e259fff661e1a31ff756d91000863 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Aug 2024 23:41:51 +0000 Subject: [PATCH 0719/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e2f5780..3b8dc2d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9079 dotnet (+7 duplicates) +Radarr 5.10.0.9083 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7fd8fa0207ec96bbaa2a2f338a2ebd35e970a385 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 24 Aug 2024 02:11:14 +0000 Subject: [PATCH 0720/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3b8dc2d..b22c96c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9083 dotnet (+7 duplicates) +Radarr 5.10.0.9088 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 30b0efaddc79d83f7749a86d57c59c714c249569 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 24 Aug 2024 03:34:05 +0000 Subject: [PATCH 0721/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b22c96c..9911455 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9088 dotnet (+7 duplicates) +Radarr 5.10.0.9090 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7209e5f8f7d7688b0e81a0a7231082d505c0927d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 25 Aug 2024 07:06:18 +0000 Subject: [PATCH 0722/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9911455..9b7e32d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9090 dotnet (+7 duplicates) +Radarr 5.10.0.9091 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 151da424c245ab001f8d1fdd4232cb1b5331675c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 25 Aug 2024 07:48:41 +0000 Subject: [PATCH 0723/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9b7e32d..518d5b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.0.9091 dotnet (+7 duplicates) +Radarr 5.10.1.9093 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From d08df1b3fd771d5c46ae0be7ab93ad85ed1b3895 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 25 Aug 2024 22:29:28 +0000 Subject: [PATCH 0724/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 518d5b2..b078105 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9093 dotnet (+7 duplicates) +Radarr 5.10.1.9097 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 4ff81c9948a54ead06013b193015c0e10eecaf6a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 Aug 2024 02:18:53 +0000 Subject: [PATCH 0725/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b078105..e80ce6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -171,7 +171,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9097 dotnet (+7 duplicates) +Radarr 5.10.1.9103 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f3c178cff3bba041bb1557bd0fc1969acda4cbbb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 Aug 2024 02:50:53 +0000 Subject: [PATCH 0726/1009] 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 e80ce6c..5d62d96 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,6 +10,7 @@ FFMpegCore 4.0.0.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 Instances 1.0.0.0 dotnet @@ -171,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9103 dotnet (+7 duplicates) +Radarr 5.10.1.9107 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1bae40a09acc548ecb9e2dc67b19ef9265ab5f46 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 Aug 2024 05:54:02 +0000 Subject: [PATCH 0727/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5d62d96..2111868 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9107 dotnet (+7 duplicates) +Radarr 5.10.1.9109 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From e50a640e4a0fa0d3a3e970a1be1e304bc1cb886f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 Aug 2024 23:20:25 +0000 Subject: [PATCH 0728/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2111868..aa412a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9109 dotnet (+7 duplicates) +Radarr 5.10.1.9110 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 3a9c5823a25813f27e0bc84305870e8388d48b04 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 Aug 2024 23:47:37 +0000 Subject: [PATCH 0729/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aa412a7..6a1cf95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9110 dotnet (+7 duplicates) +Radarr 5.10.1.9111 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 8ead10ade351fd1c5a8ffab3f9b14debe1489613 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Aug 2024 08:34:55 +0000 Subject: [PATCH 0730/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6a1cf95..dc73c30 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9111 dotnet (+7 duplicates) +Radarr 5.10.1.9117 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1045108a7c2d5237d4c01da24c7ea0f247f64939 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Aug 2024 10:37:19 +0000 Subject: [PATCH 0731/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dc73c30..1a6bc89 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9117 dotnet (+7 duplicates) +Radarr 5.10.1.9118 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From ae5ab4370fc8f66ed9c30806ecef6cf7c03e7d9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Aug 2024 23:23:52 +0000 Subject: [PATCH 0732/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a6bc89..c5ed101 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9118 dotnet (+7 duplicates) +Radarr 5.10.1.9121 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 724cc91af74f6c4add7aeb56afee7c8505f75a93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 31 Aug 2024 05:34:42 +0000 Subject: [PATCH 0733/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c5ed101..82d15d7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9121 dotnet (+7 duplicates) +Radarr 5.10.1.9123 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From fdc2b9cfefe48cccab754b7117305bd7c9240208 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 31 Aug 2024 09:32:04 +0000 Subject: [PATCH 0734/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 82d15d7..5a64f26 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9123 dotnet (+7 duplicates) +Radarr 5.10.1.9125 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 04077f66d0952aa756fedd149305e10e10e80b8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Sep 2024 12:05:20 +0000 Subject: [PATCH 0735/1009] 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 5a64f26..bff5bc6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.1.9125 dotnet (+7 duplicates) +Radarr 5.10.2.9132 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -367,7 +367,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 findutils 4.9.0-r5 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -376,7 +376,7 @@ libacl 2.3.2-r0 libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk libcrypto3 3.3.1-r3 apk -libcurl 8.9.0-r0 apk +libcurl 8.9.1-r1 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk libgpg-error 1.49-r0 apk From 795a942741ac73cdab07181c77bee303d53ff675 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Sep 2024 12:43:41 +0000 Subject: [PATCH 0736/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bff5bc6..e9ca281 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9132 dotnet (+7 duplicates) +Radarr 5.10.2.9134 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9afe745550c4eee6f477e8ff1b335793f13672db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Sep 2024 11:29:59 +0000 Subject: [PATCH 0737/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e9ca281..dc2608e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9134 dotnet (+7 duplicates) +Radarr 5.10.2.9142 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1c74b094245c241bef7ae890a8eefb1939c76c60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Sep 2024 13:47:57 +0000 Subject: [PATCH 0738/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dc2608e..e0377ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9142 dotnet (+7 duplicates) +Radarr 5.10.2.9143 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From de931b9aa004d1f08a45c57cea8826513a1acbf8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Sep 2024 21:40:11 +0000 Subject: [PATCH 0739/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e0377ce..1fdbeb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9143 dotnet (+7 duplicates) +Radarr 5.10.2.9146 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 099ae0ff5e78ac02ed71ea37dbbee4bb2473600a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Sep 2024 09:05:27 +0000 Subject: [PATCH 0740/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1fdbeb7..2317bed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9146 dotnet (+7 duplicates) +Radarr 5.10.2.9148 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c0776a7603e7bec39ddae838b3f922ea556a2f96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Sep 2024 11:26:46 +0000 Subject: [PATCH 0741/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2317bed..deaa72d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9148 dotnet (+7 duplicates) +Radarr 5.10.2.9150 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 144e6c04760702469ff1762201a211c8e329ac97 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Sep 2024 12:01:47 +0000 Subject: [PATCH 0742/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index deaa72d..0c2ddb0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9150 dotnet (+7 duplicates) +Radarr 5.10.2.9151 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 91522839f05fc641411021cdeb6096377f199c89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Sep 2024 13:51:47 +0000 Subject: [PATCH 0743/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0c2ddb0..2082662 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9151 dotnet (+7 duplicates) +Radarr 5.10.2.9158 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 0611e45fc9304fe3e2d58797cedf89cc1f729e73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Sep 2024 14:01:05 +0000 Subject: [PATCH 0744/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2082662..c6aa5d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9158 dotnet (+7 duplicates) +Radarr 5.10.2.9159 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a4b8851be26b92c0054a710093fb5277e82e823a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Sep 2024 19:15:53 +0000 Subject: [PATCH 0745/1009] 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 c6aa5d3..086022e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9159 dotnet (+7 duplicates) +Radarr 5.10.2.9164 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -353,7 +353,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 apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk brotli-libs 1.1.0-r2 apk @@ -375,7 +375,7 @@ jq 1.7.1-r0 libacl 2.3.2-r0 apk libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.1-r3 apk +libcrypto3 3.3.2-r0 apk libcurl 8.9.1-r1 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk @@ -386,7 +386,7 @@ libmd 1.1.0-r0 libncursesw 6.4_p20240420-r0 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk -libssl3 3.3.1-r3 apk +libssl3 3.3.2-r0 apk libstdc++ 13.2.1_git20240309-r0 apk libunistring 1.2-r0 apk libxml2 2.12.7-r0 apk @@ -407,7 +407,7 @@ shadow 4.15.1-r0 skalibs 2.14.1.1-r0 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 xmlstarlet 1.6.1-r2 apk xz-libs 5.6.2-r0 apk From c53cbb958c09b8280d049276604cd407546457a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Sep 2024 08:47:52 +0000 Subject: [PATCH 0746/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 086022e..27dc8b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.2.9164 dotnet (+7 duplicates) +Radarr 5.10.3.9165 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1c79398547ffc5579607978966a62cc82b9b4e66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Sep 2024 09:33:08 +0000 Subject: [PATCH 0747/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 27dc8b3..77cc9f1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.3.9165 dotnet (+7 duplicates) +Radarr 5.10.3.9166 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9e8f8a86c411abe72b15c98a0c1d13d47c6732cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Sep 2024 18:34:47 +0000 Subject: [PATCH 0748/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 77cc9f1..4398478 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.3.9166 dotnet (+7 duplicates) +Radarr 5.10.3.9171 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 5cc600714393f2208416c377444ca67728a8cc7c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Sep 2024 17:13:03 +0000 Subject: [PATCH 0749/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4398478..befd390 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.3.9171 dotnet (+7 duplicates) +Radarr 5.10.3.9176 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 4f0121b54dc6257dff92252e4c1abffdadee9eb8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Sep 2024 23:00:30 +0000 Subject: [PATCH 0750/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index befd390..66447c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.3.9176 dotnet (+7 duplicates) +Radarr 5.10.3.9178 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 8d6439a75ef62b2b3c6d36f96a0c3fe8fdf65f96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 13:28:29 +0000 Subject: [PATCH 0751/1009] 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 66447c3..8d5bd0c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.3.9178 dotnet (+7 duplicates) +Radarr 5.10.4.9182 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -367,7 +367,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 findutils 4.9.0-r5 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -376,14 +376,14 @@ libacl 2.3.2-r0 libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk libcrypto3 3.3.2-r0 apk -libcurl 8.9.1-r1 apk +libcurl 8.10.0-r0 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk libgpg-error 1.49-r0 apk libidn2 2.3.7-r0 apk libintl 0.22.5-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20240420-r0 apk +libncursesw 6.4_p20240420-r1 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk libssl3 3.3.2-r0 apk @@ -395,7 +395,7 @@ linux-pam 1.6.0-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 d676ec1c2dfd92b4e3e4714cef3558f901cc2f65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 18:17:14 +0000 Subject: [PATCH 0752/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8d5bd0c..8e631bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9182 dotnet (+7 duplicates) +Radarr 5.10.4.9187 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 265298a3019e1952b114508eb86b5d30fd69b167 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 20:24:35 +0000 Subject: [PATCH 0753/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8e631bb..a0f9b6d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9187 dotnet (+7 duplicates) +Radarr 5.10.4.9188 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7c6fff73fc599823175f8d0cad7a39299b9f1409 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 20:50:31 +0000 Subject: [PATCH 0754/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a0f9b6d..b80289e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9188 dotnet (+7 duplicates) +Radarr 5.10.4.9190 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 478198db5325c39f1ebff0fb4ba3acc4a06cf34e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 22:57:13 +0000 Subject: [PATCH 0755/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b80289e..1e0af87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9190 dotnet (+7 duplicates) +Radarr 5.10.4.9197 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c5c254716c02a917a94beb284e3790d47aab6fcf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 23:32:05 +0000 Subject: [PATCH 0756/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1e0af87..90b12de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9197 dotnet (+7 duplicates) +Radarr 5.10.4.9198 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1d02a40d9ed2c50447e714557cc13afcb20cd6d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Sep 2024 15:57:43 +0000 Subject: [PATCH 0757/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 90b12de..3046584 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9198 dotnet (+7 duplicates) +Radarr 5.10.4.9200 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9f16f654dfda2be00a17565fd55b01b9f55bd86f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Sep 2024 16:18:13 +0000 Subject: [PATCH 0758/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3046584..021eab4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9200 dotnet (+7 duplicates) +Radarr 5.10.4.9201 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 802ca99de84f9871da5ea6f97b32f9207a43b350 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Sep 2024 18:03:39 +0000 Subject: [PATCH 0759/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 021eab4..8dd3b5a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9201 dotnet (+7 duplicates) +Radarr 5.10.4.9204 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 8452ead80575e71f2dc1c0113347942bd3a8d09a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 00:06:01 +0000 Subject: [PATCH 0760/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8dd3b5a..db6486e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9204 dotnet (+7 duplicates) +Radarr 5.10.4.9211 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 25d8d57ce0e27334abc2d153d4f6ab687386fb9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 15:22:03 +0000 Subject: [PATCH 0761/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index db6486e..1297ecd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9211 dotnet (+7 duplicates) +Radarr 5.10.4.9212 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9097dacd9061e546d290a26dc1f1ed1bda4b9e6a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Sep 2024 01:25:16 +0000 Subject: [PATCH 0762/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1297ecd..0705c20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9212 dotnet (+7 duplicates) +Radarr 5.10.4.9214 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1d1d89039774f6a545384a202ea3881b396f5b65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Sep 2024 22:14:16 +0000 Subject: [PATCH 0763/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0705c20..c9adf46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9214 dotnet (+7 duplicates) +Radarr 5.10.4.9215 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 081fafacd54e9262ee220ac0dcc88dc554871858 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Sep 2024 23:11:07 +0000 Subject: [PATCH 0764/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c9adf46..006d06e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9215 dotnet (+7 duplicates) +Radarr 5.10.4.9216 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 05b3f82c1ac9ae82e1d687dcae889f889f33ad67 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Sep 2024 23:54:54 +0000 Subject: [PATCH 0765/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 006d06e..f15dccb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9216 dotnet (+7 duplicates) +Radarr 5.10.4.9217 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 212ead9cca201f2234f6d47f1af06f93f88d3df7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Sep 2024 01:32:20 +0000 Subject: [PATCH 0766/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f15dccb..fbba977 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.10.4.9217 dotnet (+7 duplicates) +Radarr 5.11.0.9219 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 8add2b68aa8ff317d4b3ebb9b8181ce232345fef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Sep 2024 18:50:59 +0000 Subject: [PATCH 0767/1009] 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 fbba977..735ec0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9219 dotnet (+7 duplicates) +Radarr 5.11.0.9221 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -367,7 +367,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 findutils 4.9.0-r5 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -376,7 +376,7 @@ libacl 2.3.2-r0 libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk libcrypto3 3.3.2-r0 apk -libcurl 8.10.0-r0 apk +libcurl 8.9.1-r2 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk libgpg-error 1.49-r0 apk From 5540b869476f3b2d15e508d46777dd108e0dead7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Sep 2024 02:56:20 +0000 Subject: [PATCH 0768/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 735ec0a..b90cd4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9221 dotnet (+7 duplicates) +Radarr 5.11.0.9222 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From be1531da3e2ffa903285b84f66d373ecea8ff627 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Sep 2024 05:03:01 +0000 Subject: [PATCH 0769/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b90cd4e..a905074 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9222 dotnet (+7 duplicates) +Radarr 5.11.0.9224 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 28fc80db77ea0cf53629e95703bd777e7a1697c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Sep 2024 01:09:29 +0000 Subject: [PATCH 0770/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a905074..3d46494 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9224 dotnet (+7 duplicates) +Radarr 5.11.0.9229 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From dd34d99211834438eca2e16cc98595a8447bdd40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Sep 2024 16:31:59 +0000 Subject: [PATCH 0771/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3d46494..3996a56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9229 dotnet (+7 duplicates) +Radarr 5.11.0.9231 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 51b25924caca8f1a875c21c5df523f531d1557fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Sep 2024 00:22:49 +0000 Subject: [PATCH 0772/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3996a56..43011c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9231 dotnet (+7 duplicates) +Radarr 5.11.0.9234 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9711b6fc2664dadb9be3b12d70552a10d5ade44c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Sep 2024 06:45:59 +0000 Subject: [PATCH 0773/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 43011c1..120c711 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9234 dotnet (+7 duplicates) +Radarr 5.11.0.9239 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 4b30f37de5fc2d0ea794342e94bff870781a7863 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Sep 2024 07:21:10 +0000 Subject: [PATCH 0774/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 120c711..1a95034 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.11.0.9239 dotnet (+7 duplicates) +Radarr 5.12.0.9245 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From fda6ac59e311873d72d78894bce5085fc94a1f75 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Sep 2024 07:32:16 +0000 Subject: [PATCH 0775/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a95034..c621de9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.0.9245 dotnet (+7 duplicates) +Radarr 5.12.0.9246 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 03956d7b2331c563a3230ad085ee67213f5a652f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 26 Sep 2024 07:55:51 +0000 Subject: [PATCH 0776/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c621de9..fadee38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.0.9246 dotnet (+7 duplicates) +Radarr 5.12.0.9247 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From aaaa41af5362ff2f984d5a25b7f3fa20ac37ce7f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:27:27 +0000 Subject: [PATCH 0777/1009] Bot Updating Templated Files --- Jenkinsfile | 60 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 49 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b82e33e..200bdd4 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 54ec021b3a05a09816ee7b64f943595f695f961d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:29:40 +0000 Subject: [PATCH 0778/1009] 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 927e30c..0000000 --- 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-radarr\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY }}" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_RADARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY - exit 0 - fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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_RADARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 2ae48994c10ffb3fcc2a27f4c49d20291cab204a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:31:20 +0000 Subject: [PATCH 0779/1009] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 64 +++++++++++------- .../workflows/package_trigger_scheduler.yml | 66 ++++++++++++++----- README.md | 6 +- 3 files changed, 91 insertions(+), 45 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 4287ad0..a4f6c4e 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-radarr\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY }}" ]; then + if grep -wq "^radarr_nightly$" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_RADARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`radarr_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_RADARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of nightly branch. To disable this trigger, add \`radarr_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://radarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux | 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-radarr/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 radarr 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 radarr 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-radarr/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 radarr 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 3ea8939..8c37dfa 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-radarr\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-radarr/${br}/jenkins-vars.yml | yq -r '.ls_branch') - if [ "${br}" == "${ls_branch}" ]; then + JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-radarr/${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-radarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then - 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 }}" \ - -H "Accept: application/vnd.github.v3+json" \ - -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-radarr/actions/workflows/package_trigger.yml/dispatches - sleep 30 + 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 "^radarr_${br}$" <<< "${SKIP_PACKAGE_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`radarr_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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 "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Triggering package trigger for branch ${br}" >> $GITHUB_STEP_SUMMARY + printf "> To disable, add \`radarr_%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-radarr/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 \ + "${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 radarr** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-radarr/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 radarr** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-radarr/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi diff --git a/README.md b/README.md index 8defb75..4115716 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/radarr) [![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-radarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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%2Fradarr%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/radarr/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%2Fradarr%2Fnightly%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/radarr/nightly/index.html) [Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. @@ -83,7 +83,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. @@ -276,7 +275,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 20ef128648d85e88027fff50822a46c62cf0f0a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:37:12 +0000 Subject: [PATCH 0780/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fadee38..ddd770e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.0.9247 dotnet (+7 duplicates) +Radarr 5.12.0.9254 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1230377178a007c0b7b1326a754eba48da9a71e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:40:16 +0000 Subject: [PATCH 0781/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ddd770e..3dfd694 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.0.9254 dotnet (+7 duplicates) +Radarr 5.12.0.9255 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 2caf4c066b43b504830de15205adf009908c2757 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Sep 2024 05:52:35 +0000 Subject: [PATCH 0782/1009] 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 a4f6c4e..72b78d7 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-radarr\n\n" >> $GITHUB_STEP_SUMMARY - if grep -wq "^radarr_nightly$" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^radarr_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`radarr_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 8c37dfa..4f1e5f9 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 "^radarr_${br}$" <<< "${SKIP_PACKAGE_TRIGGER}"; then + elif grep -q "^radarr_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`radarr_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " From 9d70384f3c12c530b32331be95356b63d6824be2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Sep 2024 05:55:03 +0000 Subject: [PATCH 0783/1009] 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 3dfd694..19ba215 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.0.9255 dotnet (+7 duplicates) +Radarr 5.12.1.9256 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -359,7 +359,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 89da22a7ac9ba88c3dec6ad6cba33e43c8776bf8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Sep 2024 14:51:18 +0000 Subject: [PATCH 0784/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 19ba215..a6a73aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9256 dotnet (+7 duplicates) +Radarr 5.12.1.9257 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a0791d480d58f9e105bdae7d64622ef8c4b18a1d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Oct 2024 18:43:58 +0000 Subject: [PATCH 0785/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a6a73aa..3659fc4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9257 dotnet (+7 duplicates) +Radarr 5.12.1.9259 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a977709fbf08878870fe1f1724808e584b2a4dc2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 07:46:56 +0000 Subject: [PATCH 0786/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3659fc4..c702c5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9259 dotnet (+7 duplicates) +Radarr 5.12.1.9261 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From fcf9b6f3bb512f2bba53d6e4e62c8d043213623e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 13:15:55 +0000 Subject: [PATCH 0787/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c702c5e..6a0e7cc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9261 dotnet (+7 duplicates) +Radarr 5.12.1.9263 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 4f4be51d4b91f24b0dcf0d1ee522cd8c945b7447 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 16:59:54 +0000 Subject: [PATCH 0788/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6a0e7cc..070618b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9263 dotnet (+7 duplicates) +Radarr 5.12.1.9266 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f4c656d15b5b6ac52ef98f21696df95aeb72c896 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 17:35:03 +0000 Subject: [PATCH 0789/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 070618b..6a61f49 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9266 dotnet (+7 duplicates) +Radarr 5.12.1.9267 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 6b27c17188bfba38bf73b9a29a71ba36469e24b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 20:11:20 +0000 Subject: [PATCH 0790/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6a61f49..a904aff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9267 dotnet (+7 duplicates) +Radarr 5.12.1.9270 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c26654ecdf72e6e9ce47b0841196cc3e26818e1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 4 Oct 2024 10:25:17 +0000 Subject: [PATCH 0791/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a904aff..df02219 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9270 dotnet (+7 duplicates) +Radarr 5.12.1.9271 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 161e54e0c855a08cfa7fa3c47a1f09708a4066a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 4 Oct 2024 15:05:59 +0000 Subject: [PATCH 0792/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index df02219..43d5b0c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9271 dotnet (+7 duplicates) +Radarr 5.12.1.9277 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From e8c1c5eb133760263171090de7428837ead275d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Oct 2024 10:38:07 +0000 Subject: [PATCH 0793/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 43d5b0c..6eadc92 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9277 dotnet (+7 duplicates) +Radarr 5.12.1.9284 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f2493cbfe874e4014d645db77cbfd0558a71e96c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Oct 2024 11:31:20 +0000 Subject: [PATCH 0794/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6eadc92..85e32e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9284 dotnet (+7 duplicates) +Radarr 5.12.1.9285 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 034ed53bde774f3631ea59214e41c06faca3cc4d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Oct 2024 21:47:01 +0000 Subject: [PATCH 0795/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 85e32e9..df7e5b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9285 dotnet (+7 duplicates) +Radarr 5.12.1.9289 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 0376073453d31cfb5423fdad889e489c27e5a468 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 6 Oct 2024 09:41:10 +0000 Subject: [PATCH 0796/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index df7e5b7..55ef125 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.1.9289 dotnet (+7 duplicates) +Radarr 5.12.2.9292 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 63c34cca337288859bcc3044a1116bed3d7e351e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 6 Oct 2024 13:57:30 +0000 Subject: [PATCH 0797/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 55ef125..b9d58fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9292 dotnet (+7 duplicates) +Radarr 5.12.2.9296 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From fe026f399fe04b490ef87b2f5972c44f33ddec85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Oct 2024 20:01:53 +0000 Subject: [PATCH 0798/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b9d58fb..b495374 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9296 dotnet (+7 duplicates) +Radarr 5.12.2.9298 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 70832c58f89d6be41140313f4464d9d65221d4db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Oct 2024 23:30:39 +0000 Subject: [PATCH 0799/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b495374..e9c9a76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9298 dotnet (+7 duplicates) +Radarr 5.12.2.9301 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From b91dbad7427977c1f1b974a555543921d916c9b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Oct 2024 23:46:55 +0000 Subject: [PATCH 0800/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e9c9a76..8ad3c4c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9301 dotnet (+7 duplicates) +Radarr 5.12.2.9302 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From ddc7096a4fdc95feee4550901720e410045968b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Oct 2024 23:59:40 +0000 Subject: [PATCH 0801/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8ad3c4c..d246c3b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9302 dotnet (+7 duplicates) +Radarr 5.12.2.9303 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 464f5eda95753dad9ef2526aa9370694efc2a41f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Oct 2024 11:05:20 +0000 Subject: [PATCH 0802/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d246c3b..1b53adc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9303 dotnet (+7 duplicates) +Radarr 5.12.2.9306 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7a8624f103c6eafdb6b50ce60b5e5c8aba260feb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Oct 2024 11:33:16 +0000 Subject: [PATCH 0803/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1b53adc..d465d2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9306 dotnet (+7 duplicates) +Radarr 5.12.2.9307 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 5bf4b7287d1c070b45264835fff7eed692ac25b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Oct 2024 23:04:55 +0000 Subject: [PATCH 0804/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d465d2a..7421762 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9307 dotnet (+7 duplicates) +Radarr 5.12.2.9314 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 06be65a6fa3e2a60908f0b2863ce7ed6eab2a0c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Oct 2024 00:18:25 +0000 Subject: [PATCH 0805/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7421762..ec477f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.7.0 Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.1.3582 dotnet -Radarr 5.12.2.9314 dotnet (+7 duplicates) +Radarr 5.12.2.9318 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 10eb6bee20a3821671387d5d8d5409542fab71de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Oct 2024 00:57:57 +0000 Subject: [PATCH 0806/1009] 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 ec477f0..354aca2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -33,8 +33,8 @@ Microsoft.AspNetCore.Components.Web 6.0.3224.31405 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.Cryptography.Internal 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.3524.46214 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 @@ -168,11 +168,11 @@ 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 -Radarr 5.12.2.9318 dotnet (+7 duplicates) +Polly.Core 8.4.2.3950 dotnet +Radarr 5.12.2.9322 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -321,7 +321,7 @@ System.Text.Encoding 6.0.3224.31407 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.Json 6.0.3524.45918 dotnet System.Text.RegularExpressions 6.0.3224.31407 dotnet System.Threading 6.0.3224.31407 dotnet System.Threading.Channels 6.0.3224.31407 dotnet From a8316cf48a4d3821a186888b981bff6edd00ac3d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Oct 2024 13:37:23 +0000 Subject: [PATCH 0807/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 354aca2..5c85f36 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.12.2.9322 dotnet (+7 duplicates) +Radarr 5.12.2.9324 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1a4f911a0c3c0ba9b71ff8badf13e61200b4abe1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Oct 2024 17:05:30 +0000 Subject: [PATCH 0808/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5c85f36..1391250 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.12.2.9324 dotnet (+7 duplicates) +Radarr 5.12.2.9326 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 8ee184cff3708718285f54a77fa15fb973842f57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Oct 2024 18:54:44 +0000 Subject: [PATCH 0809/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1391250..70a12d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.12.2.9326 dotnet (+7 duplicates) +Radarr 5.12.2.9329 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a3ba9e3d2a0eff00b235db367f8bc923f81e1d59 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 11 Oct 2024 18:33:48 +0000 Subject: [PATCH 0810/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 70a12d3..53a0fc7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.12.2.9329 dotnet (+7 duplicates) +Radarr 5.12.2.9330 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 567f1074b72a4c8b7b58e6720de992c14d8b56c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 12 Oct 2024 16:35:40 +0000 Subject: [PATCH 0811/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 53a0fc7..aa4f856 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.12.2.9330 dotnet (+7 duplicates) +Radarr 5.13.0.9336 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From e078b8b1d900da840233d9e0bf8238f75024d5c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 12 Oct 2024 17:29:53 +0000 Subject: [PATCH 0812/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aa4f856..31e4400 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9336 dotnet (+7 duplicates) +Radarr 5.13.0.9338 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 860d3c8586c485c1a848813906e7025fecad5373 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 13 Oct 2024 17:19:15 +0000 Subject: [PATCH 0813/1009] Bot Updating Package Versions --- package_versions.txt | 512 +++++++++++++++++++++---------------------- 1 file changed, 256 insertions(+), 256 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 31e4400..f748349 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,92 +16,92 @@ ImpromptuInterface 7.0.1.0 Instances 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet 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 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.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.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 @@ -110,27 +110,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 @@ -139,25 +139,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 @@ -172,184 +172,184 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9338 dotnet (+7 duplicates) +Radarr 5.13.0.9344 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.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.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.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.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.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.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.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.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 -WindowsBase 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 +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 @@ -392,12 +392,12 @@ libunistring 1.2-r0 libxml2 2.12.7-r0 apk libxslt 1.1.39-r1 apk linux-pam 1.6.0-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 oniguruma 6.9.9-r0 apk procps-ng 4.0.4-r0 apk From 3de71f105fcac2423992e726777fcbcd5f23f66a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Oct 2024 03:34:59 +0000 Subject: [PATCH 0814/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f748349..ee745e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9344 dotnet (+7 duplicates) +Radarr 5.13.0.9347 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 50d5747ad18432455ded740b39e9aab028a89825 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Oct 2024 18:59:07 +0000 Subject: [PATCH 0815/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ee745e5..6d53326 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9347 dotnet (+7 duplicates) +Radarr 5.13.0.9348 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From bae855701b974ec57aa1e12b8182aede73c889b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Oct 2024 09:48:40 +0000 Subject: [PATCH 0816/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6d53326..7ff7b71 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9348 dotnet (+7 duplicates) +Radarr 5.13.0.9352 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 017f48c1ab421778506664b41f6d2d9e794da044 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Oct 2024 10:19:32 +0000 Subject: [PATCH 0817/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7ff7b71..60d66b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9352 dotnet (+7 duplicates) +Radarr 5.13.0.9354 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c26e58a8a76aedfe6e74df8ea75e4246f7c29837 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Oct 2024 20:43:07 +0000 Subject: [PATCH 0818/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 60d66b5..bbde9f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9354 dotnet (+7 duplicates) +Radarr 5.13.0.9355 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1698e1686b10174d6bd76cb2259d54c25e175d9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Oct 2024 21:33:35 +0000 Subject: [PATCH 0819/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bbde9f3..fe1121c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9355 dotnet (+7 duplicates) +Radarr 5.13.0.9356 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 71dd82d969033d22627e3ca020591683c770f18b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Oct 2024 06:36:51 +0000 Subject: [PATCH 0820/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fe1121c..0086531 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9356 dotnet (+7 duplicates) +Radarr 5.13.0.9360 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 9e85ec914e04a32fa3a82d8eda371b652add2897 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Oct 2024 02:17:15 +0000 Subject: [PATCH 0821/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0086531..432972e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9360 dotnet (+7 duplicates) +Radarr 5.13.0.9361 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 7bca329283b66d02bd205b36ae2442e2749ba9cf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Oct 2024 05:36:42 +0000 Subject: [PATCH 0822/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 432972e..3b875ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.0.9361 dotnet (+7 duplicates) +Radarr 5.13.1.9362 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 78534dab5b276184ffb730f98dd3307dba396f15 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Oct 2024 07:31:44 +0000 Subject: [PATCH 0823/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3b875ed..8b2ea72 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9362 dotnet (+7 duplicates) +Radarr 5.13.1.9363 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 84aed505bb00a56321530d194ebb575cfd35f27a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Oct 2024 04:27:50 +0000 Subject: [PATCH 0824/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8b2ea72..1a474c4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9363 dotnet (+7 duplicates) +Radarr 5.13.1.9364 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 16b37b88803856b91fd28dd2230f4c3ed8f0c61f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Oct 2024 07:32:58 +0000 Subject: [PATCH 0825/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a474c4..5a99d2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9364 dotnet (+7 duplicates) +Radarr 5.13.1.9367 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a1de876c6fccde64df646eb99ec6f4926c952827 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Oct 2024 09:13:58 +0000 Subject: [PATCH 0826/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5a99d2e..ae4d6d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9367 dotnet (+7 duplicates) +Radarr 5.13.1.9368 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From b216cc1946ec45b756f8e94968380a2d7ccd785f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Oct 2024 11:50:41 +0000 Subject: [PATCH 0827/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ae4d6d8..fdf2f90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9368 dotnet (+7 duplicates) +Radarr 5.13.1.9371 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 3ea76a37e754a13e2ff3ded4a1230a1c0c0b6a1c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Oct 2024 12:02:18 +0000 Subject: [PATCH 0828/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fdf2f90..286205e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9371 dotnet (+7 duplicates) +Radarr 5.13.1.9372 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From ec724cc4e28a2f64b319bcba44ce6eb7e9c9888d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Oct 2024 12:57:59 +0000 Subject: [PATCH 0829/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 286205e..5b4262f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9372 dotnet (+7 duplicates) +Radarr 5.13.1.9373 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a5fa82a103c3b8746ea8a5f9173ae000f6c5daa5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 24 Oct 2024 07:22:23 +0000 Subject: [PATCH 0830/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5b4262f..ae70840 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9373 dotnet (+7 duplicates) +Radarr 5.13.1.9374 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From fd94da09f5a5ad0bda51afcd62b3ce5306806324 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 24 Oct 2024 08:58:29 +0000 Subject: [PATCH 0831/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ae70840..1268fef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9374 dotnet (+7 duplicates) +Radarr 5.13.1.9375 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 8d19006cb6be21e24f0f7d2625be10187ed2a28b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 05:18:00 +0000 Subject: [PATCH 0832/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1268fef..c0bb5ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9375 dotnet (+7 duplicates) +Radarr 5.13.1.9377 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 056a6940ad0bdf472028174f954763fe658ea1cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 07:32:43 +0000 Subject: [PATCH 0833/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c0bb5ad..ad27747 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.13.1.9377 dotnet (+7 duplicates) +Radarr 5.14.0.9379 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From dc536358d07f81e2a14b4ced4ecf910499d13fb9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 08:03:07 +0000 Subject: [PATCH 0834/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ad27747..931c5b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.14.0.9379 dotnet (+7 duplicates) +Radarr 5.14.0.9380 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 6b6471f400c7536eed40556debedbd34a0545b02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 12:34:00 +0000 Subject: [PATCH 0835/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 931c5b4..33c927a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.14.0.9380 dotnet (+7 duplicates) +Radarr 5.14.0.9382 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From df1cd038adaff40000eec8584ec1a3f7771e0deb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 15:13:45 +0000 Subject: [PATCH 0836/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 33c927a..b594778 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.14.0.9382 dotnet (+7 duplicates) +Radarr 5.15.0.9384 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 54f62c87defc0d59ee8eb2844f5254457a1878df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 07:10:26 +0000 Subject: [PATCH 0837/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b594778..7fdd2c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9384 dotnet (+7 duplicates) +Radarr 5.15.0.9392 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From d891030ef91f9da5a5863ac105b39ee131ea950d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 07:19:31 +0000 Subject: [PATCH 0838/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7fdd2c7..9ce11a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9392 dotnet (+7 duplicates) +Radarr 5.15.0.9393 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 1de488183b13148edfaf8ff9d2f2fdc5c875f3f1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 07:22:07 +0000 Subject: [PATCH 0839/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9ce11a8..1876db5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9393 dotnet (+7 duplicates) +Radarr 5.15.0.9395 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From d2f53cea0888abf0f897c5627e241d5732108214 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Oct 2024 06:22:31 +0000 Subject: [PATCH 0840/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1876db5..9d9959d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9395 dotnet (+7 duplicates) +Radarr 5.15.0.9396 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 20aa143093c860e01dd67985fa4d962b8a44b4ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Oct 2024 08:34:06 +0000 Subject: [PATCH 0841/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9d9959d..0b6eafb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9396 dotnet (+7 duplicates) +Radarr 5.15.0.9397 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 416072ba2d0334ecc3c5907f9d6479666cd02919 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Oct 2024 19:28:56 +0000 Subject: [PATCH 0842/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0b6eafb..cbfa32b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9397 dotnet (+7 duplicates) +Radarr 5.15.0.9399 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 2809e5f3e07b6dc9b0fa18a3e9561c7c7704c6ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 31 Oct 2024 10:11:06 +0000 Subject: [PATCH 0843/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cbfa32b..1c307aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9399 dotnet (+7 duplicates) +Radarr 5.15.0.9401 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f51d522ed172b5c64678283669312017645b594a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 31 Oct 2024 17:09:10 +0000 Subject: [PATCH 0844/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1c307aa..ed54dc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9401 dotnet (+7 duplicates) +Radarr 5.15.0.9405 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 194c3c8ecbe25bcbfc88d1caac9676dc83ca0d2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 2 Nov 2024 19:49:41 +0000 Subject: [PATCH 0845/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ed54dc8..a834b93 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9405 dotnet (+7 duplicates) +Radarr 5.15.0.9411 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c1cc586e4def734c808ecc872f5470668175b5b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 2 Nov 2024 20:33:19 +0000 Subject: [PATCH 0846/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a834b93..56bbfb2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9411 dotnet (+7 duplicates) +Radarr 5.15.0.9412 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 74290dcb3b17db3c6d211a3dd1bf4d68679b98a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Nov 2024 10:15:02 +0000 Subject: [PATCH 0847/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 56bbfb2..b6074fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.0.9412 dotnet (+7 duplicates) +Radarr 5.15.1.9413 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From edfd1a8a6caf9af33022ebbb62f253322bbd0335 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 12:13:56 +0000 Subject: [PATCH 0848/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b6074fe..88d7e8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9413 dotnet (+7 duplicates) +Radarr 5.15.1.9420 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 017344ea9c4ad5338ccb5dd35ddd577a5ec1edb9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 12:38:28 +0000 Subject: [PATCH 0849/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 88d7e8a..549ea13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9420 dotnet (+7 duplicates) +Radarr 5.15.1.9423 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From a026825001959c00e1c73f1c5cbef4fe35cd3feb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 12:56:08 +0000 Subject: [PATCH 0850/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 549ea13..84c3b63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9423 dotnet (+7 duplicates) +Radarr 5.15.1.9428 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 6bb91def5abe88778c8892751c62802d703e3e2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 14:41:17 +0000 Subject: [PATCH 0851/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 84c3b63..b762ad2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9428 dotnet (+7 duplicates) +Radarr 5.15.1.9429 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From dbb2f5cb5b472900396874b1ebece3a0e468e06d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 18:03:56 +0000 Subject: [PATCH 0852/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b762ad2..2d48262 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9429 dotnet (+7 duplicates) +Radarr 5.15.1.9431 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From d68a93383af383be4a96d07aaa69dcc5e574e798 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Nov 2024 13:04:08 +0000 Subject: [PATCH 0853/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2d48262..618a238 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9431 dotnet (+7 duplicates) +Radarr 5.15.1.9434 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 57d179ad50c87852249b6e0892da76f98d639102 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Nov 2024 11:47:01 +0000 Subject: [PATCH 0854/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 618a238..7fd5f77 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9434 dotnet (+7 duplicates) +Radarr 5.15.1.9435 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 34b785a4286b331ba0735d3c86db4befe3ccba21 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Nov 2024 16:56:45 +0000 Subject: [PATCH 0855/1009] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 200bdd4..e4ba142 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 e48df043cdfd9fac0ee14de4028a76dcc37b3c17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Nov 2024 16:59:22 +0000 Subject: [PATCH 0856/1009] 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 2934472..c35cf42 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -105,10 +105,10 @@ docker build \ -t linuxserver/radarr: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 4f1e5f9..3febff7 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-radarr/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 radarr** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-radarr/activity/"' \n"}], + "description": "**Package Check Build(s) for radarr** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} fi diff --git a/README.md b/README.md index 4115716..f08cf52 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,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/). @@ -291,10 +292,10 @@ docker build \ -t lscr.io/linuxserver/radarr: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 c74a4841074f0dff4cd3b978763e851fb0de95d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Nov 2024 20:54:48 +0000 Subject: [PATCH 0857/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7fd5f77..de3f52e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9435 dotnet (+7 duplicates) +Radarr 5.15.1.9449 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 97f8bcf1ebad06aa140e549188577a17d897c638 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Nov 2024 10:06:05 +0000 Subject: [PATCH 0858/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index de3f52e..b58ff73 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9449 dotnet (+7 duplicates) +Radarr 5.15.1.9451 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From b9b2a10bfda188391625f56d062decea2a7a3298 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Nov 2024 10:40:44 +0000 Subject: [PATCH 0859/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b58ff73..6ef35da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9451 dotnet (+7 duplicates) +Radarr 5.15.1.9453 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 77ccf8e9c6f60409f8b12c904040bfe593c6fe7b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Nov 2024 12:38:02 +0000 Subject: [PATCH 0860/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ef35da..5047d67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9453 dotnet (+7 duplicates) +Radarr 5.15.1.9454 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 4cda43c8b416f68b72de94dce51549d899e11ada Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Nov 2024 23:18:24 +0000 Subject: [PATCH 0861/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5047d67..1931f85 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9454 dotnet (+7 duplicates) +Radarr 5.15.1.9462 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From ab2457ca32ddef1cf59cc28f6dcd060b66486e25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Nov 2024 01:48:22 +0000 Subject: [PATCH 0862/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1931f85..2ba8508 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.15.1.9462 dotnet (+7 duplicates) +Radarr 5.16.0.9464 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 0a24797ed8b132899ec1e56b6303f9cc3d8a8dc2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Nov 2024 03:08:36 +0000 Subject: [PATCH 0863/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2ba8508..fc11fa7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9464 dotnet (+7 duplicates) +Radarr 5.16.0.9466 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 0b217236128de9fbf4b8412f24f85c44213e1cf0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Nov 2024 09:49:35 +0000 Subject: [PATCH 0864/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fc11fa7..7d88692 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9466 dotnet (+7 duplicates) +Radarr 5.16.0.9471 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 949531e7c8f12f727b2be46668b49b637a422cc0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Nov 2024 21:43:03 +0000 Subject: [PATCH 0865/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7d88692..7ae3002 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9471 dotnet (+7 duplicates) +Radarr 5.16.0.9472 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 326d503118a81f108a0f25a0b7478605012406b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Nov 2024 23:34:39 +0000 Subject: [PATCH 0866/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7ae3002..c01f572 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9472 dotnet (+7 duplicates) +Radarr 5.16.0.9477 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From f14a70495d4adb9bc3817f2ff11b8a85f63cebba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 28 Nov 2024 02:12:28 +0000 Subject: [PATCH 0867/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c01f572..d851411 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9477 dotnet (+7 duplicates) +Radarr 5.16.0.9479 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 0d991e7ab0369a6324e8f67998cad2b46c92545a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 30 Nov 2024 02:07:29 +0000 Subject: [PATCH 0868/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d851411..6a4cd07 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9479 dotnet (+7 duplicates) +Radarr 5.16.0.9485 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 3221eec6993b39ac326592b0dfe64ae505e9b882 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Dec 2024 12:52:44 +0000 Subject: [PATCH 0869/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6a4cd07..8e4f3eb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9485 dotnet (+7 duplicates) +Radarr 5.16.0.9487 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 3f9796b20eca909c4bc56b3c8621ab39b52c9ae9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Dec 2024 12:57:00 +0000 Subject: [PATCH 0870/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8e4f3eb..ccdc727 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.0.9487 dotnet (+7 duplicates) +Radarr 5.16.1.9489 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From 14b8889dda9e114c4dc3f6c045d5f99488a2fd3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Dec 2024 13:39:40 +0000 Subject: [PATCH 0871/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ccdc727..6f9f30c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.8.0 Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.4.2.3950 dotnet -Radarr 5.16.1.9489 dotnet (+7 duplicates) +Radarr 5.16.1.9490 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet From c6dd1cb7480b5c55460c178b2415c9802eab5516 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Dec 2024 16:56:53 +0000 Subject: [PATCH 0872/1009] Bot Updating Templated Files --- Jenkinsfile | 268 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 176 insertions(+), 92 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e4ba142..ad459a4 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=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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 "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; 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} + 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 - 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 - done - ''' - } + 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 67ab52c7d41eb6aab0e586a01c51bfdc1c957aca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Dec 2024 16:58:41 +0000 Subject: [PATCH 0873/1009] Bot Updating Templated Files --- readme-vars.yml | 115 +++++++++++++++++++++++++++++++----------------- 1 file changed, 75 insertions(+), 40 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 8967548..6e5707c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -7,36 +7,29 @@ project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/ma project_blurb: | [{{ project_name|capitalize }}]({{ project_url }}) - A fork of Sonarr to work with movies à la Couchpotato. 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 Radarr releases" } - - { tag: "develop", desc: "Radarr releases from their develop branch" } - - { tag: "nightly", desc: "Nightly Radarr releases" } - + - {tag: "latest", desc: "Stable Radarr releases"} + - {tag: "develop", desc: "Radarr releases from their develop branch"} + - {tag: "nightly", desc: "Nightly Radarr releases"} # container parameters param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Database and Radarr configs" } - + - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Database and Radarr configs"} opt_param_usage_include_vols: true opt_param_volumes: - - { vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Location of Movie library on disk (See note in Application setup)" } - - { vol_path: "/downloads", vol_host_path: "/path/to/download-client-downloads", desc: "Location of download managers output directory (See note in Application setup)" } - + - {vol_path: "/movies", vol_host_path: "/path/to/movies", desc: "Location of Movie library on disk (See note in Application setup)"} + - {vol_path: "/downloads", vol_host_path: "/path/to/download-client-downloads", desc: "Location of download managers output directory (See note in Application setup)"} param_usage_include_ports: true param_ports: - - { external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr web UI" } - + - {external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr web UI"} readonly_supported: true - # application setup block app_setup_block_enabled: true app_setup_block: | @@ -49,29 +42,71 @@ 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: | + "radarr: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-radarr-config -> init-config-end + init-os-end -> init-crontab-config + init-mods-end -> init-custom-files + base -> init-envfile + 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-config -> init-radarr-config + init-custom-files -> init-services + init-mods-end -> init-services + init-services -> svc-cron + svc-cron -> legacy-services + init-services -> svc-radarr + svc-radarr -> legacy-services + } + Base Images: { + "baseimage-alpine:3.20" + } + "radarr: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: "13.12.21:", desc: "Remove unused dependencies." } - - { date: "17.10.21:", desc: "Remove `UMASK_SET`." } - - { date: "11.07.21:", desc: "Make the paths clearer to the user" } - - { date: "17.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - - { date: "09.27.20:", desc: "Merge Preview into Nightly." } - - { date: "05.04.20:", desc: "Move app to /app." } - - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - - { date: "13.06.19:", desc: "Add env variable for setting umask." } - - { date: "10.05.19:", desc: "Rebase to Bionic." } - - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - - { date: "09.09.18:", desc: "Add pipeline build process." } - - { date: "24.02.18:", desc: "Add nightly branch." } - - { date: "06.02.18:", desc: "Radarr repo changed owner." } - - { date: "15.12.17:", desc: "Fix continuation lines." } - - { date: "17.04.17:", desc: "Switch to using inhouse mono baseimage, adds python also." } - - { date: "13.04.17:", desc: "Switch to official mono repository." } - - { date: "10.01.17:", 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: "13.12.21:", desc: "Remove unused dependencies."} + - {date: "17.10.21:", desc: "Remove `UMASK_SET`."} + - {date: "11.07.21:", desc: "Make the paths clearer to the user"} + - {date: "17.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information."} + - {date: "09.27.20:", desc: "Merge Preview into Nightly."} + - {date: "05.04.20:", desc: "Move app to /app."} + - {date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version."} + - {date: "13.06.19:", desc: "Add env variable for setting umask."} + - {date: "10.05.19:", desc: "Rebase to Bionic."} + - {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."} + - {date: "09.09.18:", desc: "Add pipeline build process."} + - {date: "24.02.18:", desc: "Add nightly branch."} + - {date: "06.02.18:", desc: "Radarr repo changed owner."} + - {date: "15.12.17:", desc: "Fix continuation lines."} + - {date: "17.04.17:", desc: "Switch to using inhouse mono baseimage, adds python also."} + - {date: "13.04.17:", desc: "Switch to official mono repository."} + - {date: "10.01.17:", desc: "Initial Release."} From c7f4980a980f66e6342ed90fe9bbe86eab0904ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Dec 2024 17:00:53 +0000 Subject: [PATCH 0874/1009] Bot Updating Templated Files --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f08cf52..d07985d 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,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/). @@ -88,6 +87,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 @@ -131,7 +133,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | -| `-p 7878` | The port for the Radarr web UI | +| `-p 7878:7878` | The port for the Radarr web UI | | `-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 67967630911a580cf3a744db7026d49cc644a1b8 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 2 Dec 2024 15:54:10 +0000 Subject: [PATCH 0875/1009] Enable SBOM/Provenance --- Jenkinsfile | 12 ++++++------ jenkins-vars.yml | 2 ++ readme-vars.yml | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ad459a4..36986e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -341,7 +341,7 @@ pipeline { 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 '\\|^#.*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 @@ -575,7 +575,7 @@ pipeline { --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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 @@ -639,7 +639,7 @@ pipeline { --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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 @@ -696,7 +696,7 @@ pipeline { --label \"org.opencontainers.image.title=Radarr\" \ --label \"org.opencontainers.image.description=[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato. \" \ --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 @@ -889,7 +889,7 @@ pipeline { retry_backoff(5,5) { sh '''#! /bin/bash set -e - for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do + 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 @@ -897,7 +897,7 @@ 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 [ -n "${SEMVER}" ]; then docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} fi diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 94b11ce..406078e 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,6 +7,8 @@ custom_version_command: curl -sL https://radarr.servarr.com/v1/update/nightly/ch release_type: prerelease release_tag: nightly ls_branch: nightly +image_sbom: true +image_provenance: true repo_vars: - BUILD_VERSION_ARG = 'RADARR_RELEASE' - LS_USER = 'linuxserver' diff --git a/readme-vars.yml b/readme-vars.yml index 6e5707c..9a19d23 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -16,7 +16,7 @@ development_versions: true development_versions_items: - {tag: "latest", desc: "Stable Radarr releases"} - {tag: "develop", desc: "Radarr releases from their develop branch"} - - {tag: "nightly", desc: "Nightly Radarr releases"} + - {tag: "nightly", desc: "Radarr releases from their nightly branch"} # container parameters param_container_name: "{{ project_name }}" param_usage_include_vols: true From 8b070bbf1ada89ec1b7c51898bab57667b15c45f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 16:22:26 +0000 Subject: [PATCH 0876/1009] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d07985d..8083ce2 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Radarr releases | | develop | ✅ | Radarr releases from their develop branch | -| nightly | ✅ | Nightly Radarr releases | +| nightly | ✅ | Radarr releases from their nightly branch | ## Application Setup From 622f26905a8ad3607ab1d6801c42031bf7b8f0b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 16:31:05 +0000 Subject: [PATCH 0877/1009] 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 6f9f30c..7211126 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,8 +10,8 @@ FFMpegCore 4.0.0.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 Instances 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet @@ -163,19 +163,19 @@ 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.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 -Radarr 5.16.1.9490 dotnet (+7 duplicates) +Polly.Core 8.5.0.4130 dotnet +Radarr 5.16.1.9506 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet -SixLabors.ImageSharp 3.1.5.0 dotnet +SixLabors.ImageSharp 3.1.6.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 From 90f9d084605db94274163811788d8d717a8e07c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Dec 2024 16:56:57 +0000 Subject: [PATCH 0878/1009] 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 72b78d7..f6eb81c 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%2Fradarr%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 01c7dce53775e8e4e1d6efb46f6a2a5f8a9e5e81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Dec 2024 17:00:42 +0000 Subject: [PATCH 0879/1009] 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 7211126..35a966e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.1.9506 dotnet (+7 duplicates) +Radarr 5.16.2.9509 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -354,7 +354,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.3-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 @@ -367,7 +367,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 findutils 4.9.0-r5 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -375,18 +375,18 @@ jq 1.7.1-r0 libacl 2.3.2-r0 apk libattr 2.5.2-r0 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.2-r0 apk -libcurl 8.9.1-r2 apk +libcrypto3 3.3.2-r1 apk +libcurl 8.11.0-r2 apk libgcc 13.2.1_git20240309-r0 apk libgcrypt 1.10.3-r0 apk libgpg-error 1.49-r0 apk libidn2 2.3.7-r0 apk libintl 0.22.5-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20240420-r1 apk +libncursesw 6.4_p20240420-r2 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk -libssl3 3.3.2-r0 apk +libssl3 3.3.2-r1 apk libstdc++ 13.2.1_git20240309-r0 apk libunistring 1.2-r0 apk libxml2 2.12.7-r0 apk @@ -395,7 +395,7 @@ linux-pam 1.6.0-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 110994d7a34ad514c27204ef8a08b76934589399 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Dec 2024 12:45:57 +0000 Subject: [PATCH 0880/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 35a966e..f48ba32 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9509 dotnet (+7 duplicates) +Radarr 5.16.2.9510 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 109909ff1ea8632b7580915a65d5660cde9f86e0 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 12 Dec 2024 18:38:51 +0000 Subject: [PATCH 0881/1009] Rebase to 3.21, support non-root running --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- README.md | 6 ++++++ readme-vars.yml | 2 ++ .../etc/s6-overlay/s6-rc.d/init-radarr-config/run | 9 +++++---- root/etc/s6-overlay/s6-rc.d/svc-radarr/run | 15 +++++++++++---- 6 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44b771b..8ce3ec6 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 4e56707..28decc2 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 8083ce2..d691ef7 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,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. @@ -141,6 +145,7 @@ Containers are configured using parameters passed at runtime (such as those abov | `-v /movies` | Location of Movie library on disk (See note in Application setup) | | `-v /downloads` | Location of download managers output directory (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) @@ -304,6 +309,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 9a19d23..aebed26 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -30,6 +30,7 @@ param_usage_include_ports: true param_ports: - {external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr web UI"} readonly_supported: true +nonroot_supported: true # application setup block app_setup_block_enabled: true app_setup_block: | @@ -87,6 +88,7 @@ init_diagram: | "radarr: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-radarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run index 00ce068..1404674 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-radarr-config/run @@ -3,7 +3,8 @@ mkdir -p /run/radarr-temp -# permissions -lsiown -R abc:abc \ - /config \ - /run/radarr-temp +if [[ -z ${LSIO_NON_ROOT_USER} ]]; then + lsiown -R abc:abc \ + /config \ + /run/radarr-temp +fi diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run index 9737861..0e8ac49 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run @@ -1,7 +1,14 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash -exec \ - s6-notifyoncheck -d -n 300 -w 1000 \ - cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \ - -nobrowser -data=/config +if [[ -n ${LSIO_NON_ROOT_USER} ]]; then + exec \ + s6-notifyoncheck -d -n 300 -w 1000 \ + cd /app/radarr/bin /app/radarr/bin/Radarr \ + -nobrowser -data=/config +else + exec \ + s6-notifyoncheck -d -n 300 -w 1000 \ + cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \ + -nobrowser -data=/config +fi From 8b8329c66d1fbe85bdb0777868abe2af1e514eb2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Dec 2024 19:38:47 +0000 Subject: [PATCH 0882/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f48ba32..54a7bde 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9510 dotnet (+7 duplicates) +Radarr 5.16.2.9513 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 10d3d725911ac6d00090d17dc727e5dd90e94024 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Dec 2024 20:01:20 +0000 Subject: [PATCH 0883/1009] 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 aebed26..dec83a5 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -60,30 +60,26 @@ init_diagram: | init-migrations -> init-adduser init-os-end -> init-config init-config -> init-config-end + init-crontab-config -> init-config-end init-radarr-config -> init-config-end - init-os-end -> init-crontab-config + init-config -> init-crontab-config init-mods-end -> init-custom-files base -> init-envfile 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-config -> init-radarr-config init-custom-files -> init-services - init-mods-end -> init-services init-services -> svc-cron svc-cron -> legacy-services init-services -> svc-radarr svc-radarr -> legacy-services } Base Images: { - "baseimage-alpine:3.20" + "baseimage-alpine:3.21" } "radarr:nightly" <- Base Images # changelog From 29b4c81a5bccd25645336fcd16f3a11ed942c0db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Dec 2024 20:05:29 +0000 Subject: [PATCH 0884/1009] Bot Updating Package Versions --- package_versions.txt | 86 ++++++++++++++++++++++---------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 54a7bde..680062a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -350,66 +350,66 @@ System.Xml.XPath.XDocument 6.0.3524.45918 System.Xml.XmlDocument 6.0.3524.45918 dotnet System.Xml.XmlSerializer 6.0.3524.45918 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 -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 +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 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.11.0-r2 apk -findutils 4.9.0-r5 apk +findutils 4.10.0-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk jq 1.7.1-r0 apk -libacl 2.3.2-r0 apk -libattr 2.5.2-r0 apk +libattr 2.5.2-r2 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.2-r1 apk +libcrypto3 3.3.2-r4 apk libcurl 8.11.0-r2 apk -libgcc 13.2.1_git20240309-r0 apk -libgcrypt 1.10.3-r0 apk -libgpg-error 1.49-r0 apk +libgcc 14.2.0-r4 apk +libgcrypt 1.10.3-r1 apk +libgpg-error 1.51-r0 apk libidn2 2.3.7-r0 apk libintl 0.22.5-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20240420-r2 apk -libproc2 4.0.4-r0 apk -libpsl 0.21.5-r1 apk -libssl3 3.3.2-r1 apk -libstdc++ 13.2.1_git20240309-r0 apk +libncursesw 6.5_p20241006-r3 apk +libproc2 4.0.4-r2 apk +libpsl 0.21.5-r3 apk +libssl3 3.3.2-r4 apk +libstdc++ 14.2.0-r4 apk libunistring 1.2-r0 apk -libxml2 2.12.7-r0 apk -libxslt 1.1.39-r1 apk -linux-pam 1.6.0-r0 apk +libxml2 2.13.4-r3 apk +libxslt 1.1.42-r1 apk +linux-pam 1.6.1-r1 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 oniguruma 6.9.9-r0 apk -procps-ng 4.0.4-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 -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 +procps-ng 4.0.4-r2 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 +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 xmlstarlet 1.6.1-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 d0bfe1f00be6c77b9c704a9347ff1aa481fb6365 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 13 Dec 2024 15:35:30 +0000 Subject: [PATCH 0885/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 680062a..721206e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9513 dotnet (+7 duplicates) +Radarr 5.16.2.9514 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From ec588a92e09282eb43c4a274be7fe7cbc0efae7f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 13 Dec 2024 17:54:55 +0000 Subject: [PATCH 0886/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 721206e..0dcc3b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9514 dotnet (+7 duplicates) +Radarr 5.16.2.9515 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 7e58337dd723bfbb9c46b0147546140eb2a65dfb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Dec 2024 01:11:30 +0000 Subject: [PATCH 0887/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0dcc3b5..74b776f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9515 dotnet (+7 duplicates) +Radarr 5.16.2.9517 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 9fb84c910ba90e845a12a530d5b57e50e40f104b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 04:10:29 +0000 Subject: [PATCH 0888/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 74b776f..31e752c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9517 dotnet (+7 duplicates) +Radarr 5.16.2.9533 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 31e531d9a01b5591accdf33ed8737b9789dd642e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 04:42:01 +0000 Subject: [PATCH 0889/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 31e752c..64888b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9533 dotnet (+7 duplicates) +Radarr 5.16.2.9534 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 2f73f1f466f3edcd7900ece772a0b4e8003267a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 08:41:06 +0000 Subject: [PATCH 0890/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 64888b7..6658f95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.2.9534 dotnet (+7 duplicates) +Radarr 5.16.3.9535 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 5542eee91796f687935f211f6c8469fa58ec762d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 13:57:41 +0000 Subject: [PATCH 0891/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6658f95..0ded15a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.3.9535 dotnet (+7 duplicates) +Radarr 5.16.3.9536 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 08cc43b4fb0fa894ae186ba27c2da358f6dd31a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 16:58:18 +0000 Subject: [PATCH 0892/1009] Bot Updating Templated Files --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 36986e4..43a6ffa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 ''' } @@ -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 ''' } @@ -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 ad398b5dd5cf61ddb4bca3cfd520ac70d355b180 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 17:00:13 +0000 Subject: [PATCH 0893/1009] 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 f6eb81c..0ae29c8 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -92,7 +92,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 \ From 2aeac8ee037f76278481c6fd421af1e4a422fb9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 00:05:09 +0000 Subject: [PATCH 0894/1009] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 31 ++++++++++++++----- .../workflows/package_trigger_scheduler.yml | 27 +++++++++++++--- 2 files changed, 46 insertions(+), 12 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 0ae29c8..9d05813 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}") diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 3febff7..234d5dc 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-radarr/${br}/jenkins-vars.yml) - if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then + if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-radarr/${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-radarr/${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 \`radarr_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/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-radarr/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 43916f53edb46ec309b3dd00fa4e84ff1d0b47cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 00:08:53 +0000 Subject: [PATCH 0895/1009] 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 0ded15a..0d88dd1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.3.9536 dotnet (+7 duplicates) +Radarr 5.16.3.9537 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -358,8 +358,8 @@ alpine-release 3.21.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 @@ -368,7 +368,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 findutils 4.10.0-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -376,7 +376,7 @@ jq 1.7.1-r0 libattr 2.5.2-r2 apk libbsd 0.12.2-r0 apk libcrypto3 3.3.2-r4 apk -libcurl 8.11.0-r2 apk +libcurl 8.11.1-r0 apk libgcc 14.2.0-r4 apk libgcrypt 1.10.3-r1 apk libgpg-error 1.51-r0 apk @@ -406,7 +406,7 @@ scanelf 1.3.8-r1 shadow 4.16.0-r1 apk skalibs-libs 2.14.3.0-r0 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 xmlstarlet 1.6.1-r2 apk From e08d5bf18f3d3edce2cb672acab31ca11fbf38ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 12:03:22 +0000 Subject: [PATCH 0896/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0d88dd1..c492601 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.3.9537 dotnet (+7 duplicates) +Radarr 5.16.3.9538 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 2fffe0bd6fb504bc22be4a2928f1b4cfa9cce35d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 14:12:35 +0000 Subject: [PATCH 0897/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c492601..e2021d1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.3.9538 dotnet (+7 duplicates) +Radarr 5.16.3.9539 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 0eaf608f5eddc0f8e58b84bfe4a0339a8e324eb6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 14:32:56 +0000 Subject: [PATCH 0898/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e2021d1..02b91aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.3.9539 dotnet (+7 duplicates) +Radarr 5.16.3.9540 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From b55ad8fdb408a0a77e97325627d1441421318d3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 18:59:46 +0000 Subject: [PATCH 0899/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 02b91aa..7afd753 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.16.3.9540 dotnet (+7 duplicates) +Radarr 5.17.0.9542 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 706549ffde8a49f127c9e5ec46ee90889231ee78 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 12:46:05 +0000 Subject: [PATCH 0900/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7afd753..c6aafe6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.0.9542 dotnet (+7 duplicates) +Radarr 5.17.0.9545 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From aa808f9ea4c173824fb42ecd7d4095b3e59a15b3 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 19 Dec 2024 15:03:55 +0000 Subject: [PATCH 0901/1009] Make checks consistent between init and svc --- root/etc/s6-overlay/s6-rc.d/svc-radarr/run | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run index 0e8ac49..e7814bc 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-radarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-radarr/run @@ -1,14 +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/radarr/bin /app/radarr/bin/Radarr \ - -nobrowser -data=/config -else +if [[ -z ${LSIO_NON_ROOT_USER} ]]; then exec \ s6-notifyoncheck -d -n 300 -w 1000 \ cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \ -nobrowser -data=/config +else + exec \ + s6-notifyoncheck -d -n 300 -w 1000 \ + cd /app/radarr/bin /app/radarr/bin/Radarr \ + -nobrowser -data=/config fi From 37952bec73f7d6f7662af92d94cd5b46d5958b19 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 19 Dec 2024 16:00:16 +0000 Subject: [PATCH 0902/1009] Increase CI timeout --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 43a6ffa..d0484b3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { CI_WEB='true' CI_PORT='7878' CI_SSL='false' - CI_DELAY='120' + CI_DELAY='240' CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='/system/status' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 406078e..d29afb1 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -23,7 +23,7 @@ repo_vars: - CI_WEB='true' - CI_PORT='7878' - CI_SSL='false' - - CI_DELAY='120' + - CI_DELAY='240' - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='/system/status' From caa15d196d4a3d9426483d92112fcf48a08f904a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Dec 2024 15:26:16 +0000 Subject: [PATCH 0903/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c6aafe6..59bb9dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.0.9545 dotnet (+7 duplicates) +Radarr 5.17.0.9550 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From c07554e83391b8494d20e3baf687b61f4ed3df6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Dec 2024 19:18:59 +0000 Subject: [PATCH 0904/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 59bb9dc..9023242 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.0.9550 dotnet (+7 duplicates) +Radarr 5.17.0.9554 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From c7b7e270d2d4d3b934392981b022c8869cc3e958 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Dec 2024 10:00:09 +0000 Subject: [PATCH 0905/1009] 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 9023242..dea728e 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 @@ -15,7 +15,7 @@ Ical.Net 4.3.1+5889b14d90ccd3 ImpromptuInterface 7.0.1.0 dotnet Instances 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet -MailKit 3.6.0.0 dotnet +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 @@ -99,7 +99,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 @@ -159,7 +159,7 @@ 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 @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.0.9554 dotnet (+7 duplicates) +Radarr 5.17.0.9555 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 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 bafc03995a3f7994d05a14de8665caf2dc5abeea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Dec 2024 11:59:43 +0000 Subject: [PATCH 0906/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dea728e..2bca8c4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.0.9555 dotnet (+7 duplicates) +Radarr 5.17.1.9557 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 3c47d9f5183462e21c9e8dbd6ce555712ac90c8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Dec 2024 10:53:14 +0000 Subject: [PATCH 0907/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2bca8c4..8959f2d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.1.9557 dotnet (+7 duplicates) +Radarr 5.17.1.9559 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 8c39b39315491365841b6d76a633f6266f39f470 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Dec 2024 02:06:41 +0000 Subject: [PATCH 0908/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8959f2d..8a35f75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.1.9559 dotnet (+7 duplicates) +Radarr 5.17.1.9561 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 6b2f0bd52c7f1a805e585c00721b2303d1126a9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Dec 2024 16:58:19 +0000 Subject: [PATCH 0909/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8a35f75..2fb2939 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -412,4 +412,4 @@ utmps-libs 0.1.2.3-r2 xmlstarlet 1.6.1-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 65972595c487d580660c85e42d115c2bc531aabb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Dec 2024 02:03:12 +0000 Subject: [PATCH 0910/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2fb2939..c5f4099 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.1.9561 dotnet (+7 duplicates) +Radarr 5.17.2.9562 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 2e2e5b2d968b391a79a4dbeae3c56f6339574f01 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Dec 2024 10:49:11 +0000 Subject: [PATCH 0911/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c5f4099..2969a17 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.2.9562 dotnet (+7 duplicates) +Radarr 5.17.2.9568 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From dcd74cbacf4dd69eb1b9eec142e0e992f779f828 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Dec 2024 11:32:28 +0000 Subject: [PATCH 0912/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2969a17..9d70b9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.2.9568 dotnet (+7 duplicates) +Radarr 5.17.2.9569 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 494e931cd848e5540cf93b7542119c2f62f96795 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Dec 2024 17:00:00 +0000 Subject: [PATCH 0913/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9d70b9b..55f3531 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.2.9569 dotnet (+7 duplicates) +Radarr 5.17.2.9570 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From c83680032bf575f149a4605a02f65e171bd9db90 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Jan 2025 19:51:05 +0000 Subject: [PATCH 0914/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 55f3531..3102cdd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.2.9570 dotnet (+7 duplicates) +Radarr 5.17.2.9574 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From ccab88aa6caf23225539717440c786f8fb7a3337 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Jan 2025 21:58:59 +0000 Subject: [PATCH 0915/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3102cdd..924df3a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.2.9574 dotnet (+7 duplicates) +Radarr 5.17.2.9577 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 6c3829f59bba69b39456dd11bef127371b2cd10d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Jan 2025 12:45:31 +0000 Subject: [PATCH 0916/1009] 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 924df3a..d6c777f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.17.2.9577 dotnet (+7 duplicates) +Radarr 5.18.0.9582 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -351,8 +351,8 @@ System.Xml.XmlDocument 6.0.3524.45918 System.Xml.XmlSerializer 6.0.3524.45918 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 apk-tools 2.14.6-r2 apk @@ -361,8 +361,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 coreutils 9.5-r1 apk coreutils-env 9.5-r1 apk From 3a549e3dd55c507af8b873ddc3dd845b798f97db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Jan 2025 13:34:15 +0000 Subject: [PATCH 0917/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d6c777f..69060a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.0.9582 dotnet (+7 duplicates) +Radarr 5.18.0.9583 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 7fb46c5640a24ec38b92fc4215d61c9c03536f28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Jan 2025 03:05:58 +0000 Subject: [PATCH 0918/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 69060a7..a7cb90e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.0.9583 dotnet (+7 duplicates) +Radarr 5.18.0.9585 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 5f342c17e742a95ac314e30a9fbd8d76a88f19f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Jan 2025 12:06:38 +0000 Subject: [PATCH 0919/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a7cb90e..211e118 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.0.9585 dotnet (+7 duplicates) +Radarr 5.18.0.9590 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From de74eb27657c5abdba0e2fa035e8314fadd832ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Jan 2025 00:20:00 +0000 Subject: [PATCH 0920/1009] 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 211e118..71bfd4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.0.9590 dotnet (+7 duplicates) +Radarr 5.18.0.9595 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -354,20 +354,20 @@ 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 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 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 -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 findutils 4.10.0-r0 apk icu-data-en 74.2-r0 apk From 3dd5fc28edd3711e1ca7dcd66ff982c2c1066e79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Jan 2025 13:59:54 +0000 Subject: [PATCH 0921/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 71bfd4e..2fb6960 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.0.9595 dotnet (+7 duplicates) +Radarr 5.18.1.9596 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 1c1397ff4e17e196e5795238c3573571f6a94294 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Jan 2025 14:03:51 +0000 Subject: [PATCH 0922/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2fb6960..ac7b1b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.1.9596 dotnet (+7 duplicates) +Radarr 5.18.1.9598 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 68d60f37e601a8a4ee56d743c8c352ec6529ff79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Jan 2025 19:16:37 +0000 Subject: [PATCH 0923/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ac7b1b5..04c6198 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.1.9598 dotnet (+7 duplicates) +Radarr 5.18.1.9601 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 99f4802e4cffcff72acec5f14e01d238a4cfdf24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Jan 2025 10:29:04 +0000 Subject: [PATCH 0924/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 04c6198..15cf4ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.1.9601 dotnet (+7 duplicates) +Radarr 5.18.1.9602 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 0ebc5f10be2144ce2f6e8c5358bfcded32a33d05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Jan 2025 19:07:55 +0000 Subject: [PATCH 0925/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 15cf4ba..7e0620c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.1.9602 dotnet (+7 duplicates) +Radarr 5.18.1.9612 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 5c8236f2c58199dd32de017d64dc69934f109d40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Jan 2025 16:07:15 +0000 Subject: [PATCH 0926/1009] 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 7e0620c..b27514b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.1.9612 dotnet (+7 duplicates) +Radarr 5.18.2.9635 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -358,8 +358,8 @@ alpine-release 3.21.2-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 @@ -406,7 +406,7 @@ scanelf 1.3.8-r1 shadow 4.16.0-r1 apk skalibs-libs 2.14.3.0-r0 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 xmlstarlet 1.6.1-r2 apk From ad226f8eb5102667468b810044a2e1b61f5bb383 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Jan 2025 16:39:32 +0000 Subject: [PATCH 0927/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b27514b..3822bae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.2.9635 dotnet (+7 duplicates) +Radarr 5.18.2.9638 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 335c43538e8f43dd577ca87a42adc8640b9545d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Jan 2025 02:38:27 +0000 Subject: [PATCH 0928/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3822bae..12e18fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.2.9638 dotnet (+7 duplicates) +Radarr 5.18.2.9647 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From fcdf48793926ffd61109080e385da90d9cd5ebcc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Jan 2025 14:44:23 +0000 Subject: [PATCH 0929/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 12e18fe..6afe71a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.2.9647 dotnet (+7 duplicates) +Radarr 5.18.2.9651 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 35acaf8b7f32c9932a454ac1ed5e44acf0120b9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Jan 2025 13:40:46 +0000 Subject: [PATCH 0930/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6afe71a..57e5bdb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.2.9651 dotnet (+7 duplicates) +Radarr 5.18.2.9657 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 78c587259b459cc8eb5c94924360f6c34d9e6e93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Jan 2025 13:44:03 +0000 Subject: [PATCH 0931/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 57e5bdb..bac7763 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.2.9657 dotnet (+7 duplicates) +Radarr 5.18.3.9658 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From df5f5fa3c1850f2cd517d890226d163895f4031f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Jan 2025 14:26:15 +0000 Subject: [PATCH 0932/1009] 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 bac7763..c84a5a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -165,14 +165,14 @@ Mono.Posix.NETStandard 1.0.0.0 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.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 -Polly 8.5.0.4130 dotnet +Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.5.0.4130 dotnet -Radarr 5.18.3.9658 dotnet (+7 duplicates) +Polly.Core 8.5.1.4253 dotnet +Radarr 5.18.3.9661 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From fa5b2885c46b52565715a98ff2c7e94acef0aae7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Feb 2025 22:09:35 +0000 Subject: [PATCH 0933/1009] Bot Updating Templated Files --- Jenkinsfile | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d0484b3..ba3bc94 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 59cb1d76297b1dbe9ba9dc23293dad8a902e4a3d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Feb 2025 22:11:28 +0000 Subject: [PATCH 0934/1009] 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 c35cf42..3efb557 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 649446d..118d956 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 9d05813..d73c40f 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-radarr\n\n" >> $GITHUB_STEP_SUMMARY - if grep -q "^radarr_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^radarr_nightly_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`radarr_nightly_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY + elif grep -q "^radarr_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`radarr_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://radarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux | jq -r '.[0].version') echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY + if grep -q "^radarr_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 d691ef7..2017519 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 75333e89d06f6055cc4463bdec5396b18f392401 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Feb 2025 22:15:25 +0000 Subject: [PATCH 0935/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c84a5a8..62d9247 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.18.3.9661 dotnet (+7 duplicates) +Radarr 5.18.3.9669 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 704fcd43edc33307ceaaea8ffdd689eef901cc93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Feb 2025 11:19:51 +0000 Subject: [PATCH 0936/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 62d9247..a82f1a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.18.3.9669 dotnet (+7 duplicates) +Radarr 5.18.4.9671 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 8ee5d7afaa80ba2e014af9bb6f192579c301fa2c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Feb 2025 12:30:11 +0000 Subject: [PATCH 0937/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a82f1a4..3c099d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.18.4.9671 dotnet (+7 duplicates) +Radarr 5.18.4.9672 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 4115af6397c311dd35951f7aba32195cdb9e3e1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Feb 2025 13:53:02 +0000 Subject: [PATCH 0938/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3c099d8..602c6bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.18.4.9672 dotnet (+7 duplicates) +Radarr 5.18.4.9673 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From e48ac2a396ee6af1ac598f6c1709672ea71c07a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Feb 2025 12:44:50 +0000 Subject: [PATCH 0939/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 602c6bf..407c59d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.18.4.9673 dotnet (+7 duplicates) +Radarr 5.19.0.9675 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From d6e6c8d764eef6362ca48a3f3231199a25cff079 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Feb 2025 16:26:30 +0000 Subject: [PATCH 0940/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 407c59d..c591567 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9675 dotnet (+7 duplicates) +Radarr 5.19.0.9678 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 7ef5949c1e1d1f902c879e57c1a54813b9fa8511 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Feb 2025 17:34:51 +0000 Subject: [PATCH 0941/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c591567..7b2becb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9678 dotnet (+7 duplicates) +Radarr 5.19.0.9679 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 9d8086dac69e090828a679a6154da85aabbde5ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 02:15:02 +0000 Subject: [PATCH 0942/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7b2becb..88d3d62 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9679 dotnet (+7 duplicates) +Radarr 5.19.0.9681 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 5d1651019d6fb71d00df6f02cf6cccb3829a1194 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Feb 2025 23:33:36 +0000 Subject: [PATCH 0943/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 88d3d62..b13ae46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9681 dotnet (+7 duplicates) +Radarr 5.19.0.9687 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From a87c2496f32e47702c7af0ae85473d125319bd88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Feb 2025 02:18:42 +0000 Subject: [PATCH 0944/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b13ae46..1257e37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9687 dotnet (+7 duplicates) +Radarr 5.19.0.9693 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From cb7e149473a65b61b84cfbb058916a2b737ff4ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Feb 2025 21:31:38 +0000 Subject: [PATCH 0945/1009] 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 1257e37..cd2ec45 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9693 dotnet (+7 duplicates) +Radarr 5.19.0.9696 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -405,7 +405,7 @@ readline 8.2.13-r0 scanelf 1.3.8-r1 apk shadow 4.16.0-r1 apk skalibs-libs 2.14.3.0-r0 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 5d64386b4b033b855cade50e7e0c9acce77b7e28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Feb 2025 01:54:28 +0000 Subject: [PATCH 0946/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cd2ec45..9861e54 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9696 dotnet (+7 duplicates) +Radarr 5.19.0.9697 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From f064c789d9b6a884f4822cddadc0dbc214dc2624 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Feb 2025 16:22:05 +0000 Subject: [PATCH 0947/1009] 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 9861e54..7e68a10 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.0.9697 dotnet (+7 duplicates) +Radarr 5.19.1.9698 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -368,15 +368,15 @@ 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 findutils 4.10.0-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk jq 1.7.1-r0 apk libattr 2.5.2-r2 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.2-r4 apk -libcurl 8.11.1-r0 apk +libcrypto3 3.3.2-r5 apk +libcurl 8.12.0-r0 apk libgcc 14.2.0-r4 apk libgcrypt 1.10.3-r1 apk libgpg-error 1.51-r0 apk @@ -386,7 +386,7 @@ libmd 1.1.0-r0 libncursesw 6.5_p20241006-r3 apk libproc2 4.0.4-r2 apk libpsl 0.21.5-r3 apk -libssl3 3.3.2-r4 apk +libssl3 3.3.2-r5 apk libstdc++ 14.2.0-r4 apk libunistring 1.2-r0 apk libxml2 2.13.4-r3 apk From 77dd8fb6d43c8c7714bd45366043c000ae3da5dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Feb 2025 15:52:42 +0000 Subject: [PATCH 0948/1009] Bot Updating Templated Files --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ba3bc94..3cefc9e 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 bbe0aa95a084811ab6a85f1f05242662bb921573 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Feb 2025 15:56:10 +0000 Subject: [PATCH 0949/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7e68a10..3c859e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.1.9698 dotnet (+7 duplicates) +Radarr 5.19.1.9702 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From f2384dc9034b8c62f024858ba0f58a730f705349 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Feb 2025 16:07:22 +0000 Subject: [PATCH 0950/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3c859e5..4a917ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.1.9702 dotnet (+7 duplicates) +Radarr 5.19.1.9704 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 2fd7bd29398274512ddccdb5c682c4a9e8b8d3b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Feb 2025 10:56:54 +0000 Subject: [PATCH 0951/1009] 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 4a917ea..1649dd9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.1.9704 dotnet (+7 duplicates) +Radarr 5.19.2.9706 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -354,8 +354,8 @@ 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 -apk-tools 2.14.6-r2 apk +alpine-release 3.21.3-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 @@ -368,15 +368,15 @@ 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 findutils 4.10.0-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk jq 1.7.1-r0 apk libattr 2.5.2-r2 apk libbsd 0.12.2-r0 apk -libcrypto3 3.3.2-r5 apk -libcurl 8.12.0-r0 apk +libcrypto3 3.3.3-r0 apk +libcurl 8.12.1-r0 apk libgcc 14.2.0-r4 apk libgcrypt 1.10.3-r1 apk libgpg-error 1.51-r0 apk @@ -386,15 +386,15 @@ libmd 1.1.0-r0 libncursesw 6.5_p20241006-r3 apk libproc2 4.0.4-r2 apk libpsl 0.21.5-r3 apk -libssl3 3.3.2-r5 apk +libssl3 3.3.3-r0 apk libstdc++ 14.2.0-r4 apk libunistring 1.2-r0 apk libxml2 2.13.4-r3 apk libxslt 1.1.42-r1 apk linux-pam 1.6.1-r1 apk mscorlib 6.0.3524.45918 dotnet -musl 1.2.5-r8 apk -musl-utils 1.2.5-r8 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 netstandard 6.0.3524.45918 dotnet @@ -407,7 +407,7 @@ shadow 4.16.0-r1 skalibs-libs 2.14.3.0-r0 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 xmlstarlet 1.6.1-r2 apk xz-libs 5.6.3-r0 apk From 0a99ad960e30ea982b59815a1effa0890e7200a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Feb 2025 20:07:56 +0000 Subject: [PATCH 0952/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1649dd9..ba6207c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9706 dotnet (+7 duplicates) +Radarr 5.19.2.9709 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 31e9c69d26970df0fadcbf1371db57ff103df797 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Feb 2025 22:36:11 +0000 Subject: [PATCH 0953/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ba6207c..57bc339 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9709 dotnet (+7 duplicates) +Radarr 5.19.2.9710 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 77a2d31c4ae59d86cb72e0a5bc0c7e3d9f0df9cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Feb 2025 03:15:38 +0000 Subject: [PATCH 0954/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 57bc339..1215a3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9710 dotnet (+7 duplicates) +Radarr 5.19.2.9712 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 61743293800ae407d09c7540d55a8c6590b057bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Feb 2025 14:24:35 +0000 Subject: [PATCH 0955/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1215a3d..e797310 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9712 dotnet (+7 duplicates) +Radarr 5.19.2.9715 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From cdf4fba8f487a82e1cf2d5f6d6fb63c3adc8a39f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Feb 2025 17:06:21 +0000 Subject: [PATCH 0956/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e797310..a9c55a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9715 dotnet (+7 duplicates) +Radarr 5.19.2.9718 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 068fd3ec825d902bc05adca95d4248334120b253 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Feb 2025 20:11:34 +0000 Subject: [PATCH 0957/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a9c55a6..f5da8a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9718 dotnet (+7 duplicates) +Radarr 5.19.2.9719 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 7eab2ac27b707ad52c8907a03aa7f4494b968681 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Feb 2025 22:37:06 +0000 Subject: [PATCH 0958/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f5da8a6..d502206 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9719 dotnet (+7 duplicates) +Radarr 5.19.2.9720 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 77e9ff381415c6594d89cf981e0549120e53a6ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Feb 2025 10:46:34 +0000 Subject: [PATCH 0959/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d502206..0487a20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.2.9720 dotnet (+7 duplicates) +Radarr 5.19.3.9721 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 43692fda7a20e50aca1d49f5b55130d5b5d7fd51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Feb 2025 13:31:08 +0000 Subject: [PATCH 0960/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0487a20..ea69aac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.3.9721 dotnet (+7 duplicates) +Radarr 5.19.3.9725 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 4c6f17f57b2576149d5dc2eb82cd23365a213832 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Feb 2025 11:30:24 +0000 Subject: [PATCH 0961/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ea69aac..3578ab4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.1.4253 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.3.9725 dotnet (+7 duplicates) +Radarr 5.19.3.9728 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 7d4de5230f3a99d8fe3b1ab3e0043c9773340618 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Feb 2025 19:32:19 +0000 Subject: [PATCH 0962/1009] 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 3578ab4..b0c52c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -169,10 +169,10 @@ NLog.Layouts.ClefJsonLayout 1.0.3.0 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.2.0.0 dotnet Npgsql 7.0.9.0 dotnet -Polly 8.5.1.4253 dotnet +Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.5.1.4253 dotnet -Radarr 5.19.3.9728 dotnet (+7 duplicates) +Polly.Core 8.5.2.4319 dotnet +Radarr 5.20.0.9733 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 4348ae9e8ba4bb02bc2a904fe3325b56c575f113 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Feb 2025 02:33:57 +0000 Subject: [PATCH 0963/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b0c52c6..e2f4996 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9733 dotnet (+7 duplicates) +Radarr 5.20.0.9735 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From b3fb48743fe03fa63698338107b022104538ed58 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Mar 2025 05:51:21 +0000 Subject: [PATCH 0964/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e2f4996..66ad968 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9735 dotnet (+7 duplicates) +Radarr 5.20.0.9737 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 7b10d6d1828138393d7e2900c56b7cf8f32c7f3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Mar 2025 13:24:14 +0000 Subject: [PATCH 0965/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 66ad968..8e6b867 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9737 dotnet (+7 duplicates) +Radarr 5.20.0.9742 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From a213bc9ed3b5c3ecf1f9f40bf1382df50e0ffb32 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Mar 2025 13:49:48 +0000 Subject: [PATCH 0966/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8e6b867..de86979 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9742 dotnet (+7 duplicates) +Radarr 5.20.0.9743 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From e113da1ba9c3a5e72a06899a12e63b84587bb853 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Mar 2025 14:41:11 +0000 Subject: [PATCH 0967/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index de86979..5e27429 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9743 dotnet (+7 duplicates) +Radarr 5.20.0.9744 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From fb305a2cb28ec8901b2ec3b1c55b403da685466c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Mar 2025 12:38:09 +0000 Subject: [PATCH 0968/1009] 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 5e27429..5beafc7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9744 dotnet (+7 duplicates) +Radarr 5.20.0.9746 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet @@ -389,7 +389,7 @@ libpsl 0.21.5-r3 libssl3 3.3.3-r0 apk libstdc++ 14.2.0-r4 apk libunistring 1.2-r0 apk -libxml2 2.13.4-r3 apk +libxml2 2.13.4-r4 apk libxslt 1.1.42-r1 apk linux-pam 1.6.1-r1 apk mscorlib 6.0.3524.45918 dotnet From ecefdbc9458ed26f9cddbe9a8b3662b473820a23 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Mar 2025 17:55:38 +0000 Subject: [PATCH 0969/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5beafc7..ee59b2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9746 dotnet (+7 duplicates) +Radarr 5.20.0.9747 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet From 28e6cfd082ebe2b45ce699c821c21b02441e186c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Mar 2025 18:44:53 +0000 Subject: [PATCH 0970/1009] 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 ee59b2a..b0daf0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,10 +172,10 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9747 dotnet (+7 duplicates) +Radarr 5.20.0.9749 dotnet (+7 duplicates) 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 Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.6.2.401 dotnet From e4c6b27499da26d9e46152eee015d82c1e06831a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Mar 2025 13:48:17 +0000 Subject: [PATCH 0971/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b0daf0e..d467568 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9749 dotnet (+7 duplicates) +Radarr 5.20.0.9751 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From b615a53acbaefe7b20e1dc2c24f878e32afa177a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Mar 2025 15:12:53 +0000 Subject: [PATCH 0972/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d467568..1a4032c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9751 dotnet (+7 duplicates) +Radarr 5.20.0.9752 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From dcfd06492d5af384c001749088c9d8175754a6f0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Mar 2025 10:25:18 +0000 Subject: [PATCH 0973/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a4032c..7be8a9d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.0.9752 dotnet (+7 duplicates) +Radarr 5.20.1.9754 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 91e234fb033d94d6ee36b1613f3068370518b081 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Mar 2025 18:16:42 +0000 Subject: [PATCH 0974/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7be8a9d..6c6b210 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9754 dotnet (+7 duplicates) +Radarr 5.20.1.9755 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 996b19f3b675bdf4d7047afc551811854d4e725c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Mar 2025 19:52:20 +0000 Subject: [PATCH 0975/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6c6b210..5ea6b26 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9755 dotnet (+7 duplicates) +Radarr 5.20.1.9757 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 9321c398891a69035d491a7768f78759eebe1e75 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Mar 2025 20:06:57 +0000 Subject: [PATCH 0976/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5ea6b26..5a0bb71 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9757 dotnet (+7 duplicates) +Radarr 5.20.1.9758 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 8f4da88ef543972f2e7f850402650bb772172b76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Mar 2025 20:26:20 +0000 Subject: [PATCH 0977/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5a0bb71..7846fbe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9758 dotnet (+7 duplicates) +Radarr 5.20.1.9759 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 4f4dff813ceb8da0111a009f62b145203cd0d64c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Mar 2025 20:46:11 +0000 Subject: [PATCH 0978/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7846fbe..3b685fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9759 dotnet (+7 duplicates) +Radarr 5.20.1.9760 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From f0f696dc42343911b9f54f2cb2e88bea9f2c15cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Mar 2025 10:08:57 +0000 Subject: [PATCH 0979/1009] 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 3b685fd..7abd976 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9760 dotnet (+7 duplicates) +Radarr 5.20.1.9762 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet @@ -389,7 +389,7 @@ libpsl 0.21.5-r3 libssl3 3.3.3-r0 apk libstdc++ 14.2.0-r4 apk libunistring 1.2-r0 apk -libxml2 2.13.4-r4 apk +libxml2 2.13.4-r5 apk libxslt 1.1.42-r1 apk linux-pam 1.6.1-r1 apk mscorlib 6.0.3524.45918 dotnet From cf44589cf8f0e77c56f2007da6590caa4cb4d90b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Mar 2025 14:58:18 +0000 Subject: [PATCH 0980/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7abd976..f8a2aaf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9762 dotnet (+7 duplicates) +Radarr 5.20.1.9764 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 903653ae4730a37618638ce7ddef494a901fa61e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Mar 2025 21:39:35 +0000 Subject: [PATCH 0981/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f8a2aaf..263b6f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9764 dotnet (+7 duplicates) +Radarr 5.20.1.9766 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From a2683f92565df224c69eb0209c904ab21bc597f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Mar 2025 13:14:24 +0000 Subject: [PATCH 0982/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 263b6f0..87c3789 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9766 dotnet (+7 duplicates) +Radarr 5.20.1.9768 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 0454c77e040b43d962fe61f5d03aa7ef8f572c37 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Mar 2025 12:45:43 +0000 Subject: [PATCH 0983/1009] 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 87c3789..5e5054f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9768 dotnet (+7 duplicates) +Radarr 5.20.1.9770 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet @@ -390,7 +390,7 @@ libssl3 3.3.3-r0 libstdc++ 14.2.0-r4 apk libunistring 1.2-r0 apk libxml2 2.13.4-r5 apk -libxslt 1.1.42-r1 apk +libxslt 1.1.42-r2 apk linux-pam 1.6.1-r1 apk mscorlib 6.0.3524.45918 dotnet musl 1.2.5-r9 apk From 3c37328a72b51d5eb662863df66610ea78bceb7d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Mar 2025 16:55:29 +0000 Subject: [PATCH 0984/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5e5054f..abe247d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9770 dotnet (+7 duplicates) +Radarr 5.20.1.9771 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 89bd4495c902cc24c628cd7c5a627e567ac43fd6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Mar 2025 19:37:52 +0000 Subject: [PATCH 0985/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index abe247d..4b486bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9771 dotnet (+7 duplicates) +Radarr 5.20.1.9772 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 04d73987978139f56d000f86c903eca6f8632223 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Mar 2025 00:13:29 +0000 Subject: [PATCH 0986/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4b486bb..d52c8a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9772 dotnet (+7 duplicates) +Radarr 5.20.1.9773 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From af8246ef93f0a02a3923ed4ef39a6cce43b58170 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Mar 2025 09:18:03 +0000 Subject: [PATCH 0987/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d52c8a3..3ebb23b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.1.9773 dotnet (+7 duplicates) +Radarr 5.20.2.9774 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From beeef67f5fae60198d4245b9f1b07624e8dec9b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Mar 2025 11:46:20 +0000 Subject: [PATCH 0988/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3ebb23b..6166c1d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.2.9774 dotnet (+7 duplicates) +Radarr 5.20.2.9775 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From fad4bad6d623f7fe14e129cf160ad23358b3a0c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Mar 2025 11:06:20 +0000 Subject: [PATCH 0989/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6166c1d..31136da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.9.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.20.2.9775 dotnet (+7 duplicates) +Radarr 5.20.2.9776 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 4cacbf075a6f8dc80da13040e6617f0aaac1a0cf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Mar 2025 13:43:43 +0000 Subject: [PATCH 0990/1009] 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 31136da..cebe001 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -163,16 +163,16 @@ 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 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 -Radarr 5.20.2.9776 dotnet (+7 duplicates) +Radarr 5.21.0.9778 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 54a1770332aa3fcfeedc08682e269767f99a2dae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Mar 2025 02:12:35 +0000 Subject: [PATCH 0991/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cebe001..133f9b6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9778 dotnet (+7 duplicates) +Radarr 5.21.0.9782 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From db88fa902f18d57d7988e3758c22a0af1a68edb6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Mar 2025 15:09:49 +0000 Subject: [PATCH 0992/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 133f9b6..de8fa1f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9782 dotnet (+7 duplicates) +Radarr 5.21.0.9783 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 02ffb5a9571e92db62ef649433c8230e07235cbe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 21 Mar 2025 17:23:51 +0000 Subject: [PATCH 0993/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index de8fa1f..8af422b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9783 dotnet (+7 duplicates) +Radarr 5.21.0.9787 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 7c3973e33489c3f1a371f058b96659ce2204aef1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Mar 2025 15:14:14 +0000 Subject: [PATCH 0994/1009] 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 8af422b..09d12e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9787 dotnet (+7 duplicates) +Radarr 5.21.0.9790 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet @@ -368,7 +368,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 findutils 4.10.0-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk @@ -376,7 +376,7 @@ jq 1.7.1-r0 libattr 2.5.2-r2 apk libbsd 0.12.2-r0 apk libcrypto3 3.3.3-r0 apk -libcurl 8.12.1-r0 apk +libcurl 8.12.1-r1 apk libgcc 14.2.0-r4 apk libgcrypt 1.10.3-r1 apk libgpg-error 1.51-r0 apk From 711c398a8255b661a71b2df8d203fa2f695172f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Mar 2025 15:35:48 +0000 Subject: [PATCH 0995/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 09d12e9..8234845 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9790 dotnet (+7 duplicates) +Radarr 5.21.0.9791 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 23f8d8d72d5cf206f4d347114f739939fefeb4e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Mar 2025 18:22:11 +0000 Subject: [PATCH 0996/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8234845..eb98376 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9791 dotnet (+7 duplicates) +Radarr 5.21.0.9792 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From c7ead59aa190e593577431825dbe2e0be64f6b6a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Mar 2025 08:25:19 +0000 Subject: [PATCH 0997/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eb98376..2278342 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.0.9792 dotnet (+7 duplicates) +Radarr 5.21.1.9793 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 171ae16b5e70b5cd04f8c7f997ea95844ec5e969 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Mar 2025 17:08:36 +0000 Subject: [PATCH 0998/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2278342..e985e5d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.1.9793 dotnet (+7 duplicates) +Radarr 5.21.1.9795 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From b7d725567ff8ff945669dd711efdc6b0178a5bbc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 11:47:13 +0000 Subject: [PATCH 0999/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e985e5d..afdc535 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.1.9795 dotnet (+7 duplicates) +Radarr 5.21.1.9797 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From a4c7d0b95f2fc172f19707b54c73bd5fbbae8ea9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 14:28:19 +0000 Subject: [PATCH 1000/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index afdc535..001f686 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.1.9797 dotnet (+7 duplicates) +Radarr 5.21.1.9798 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 9f6ef357c0b250c7896dd20a51b7f14ddcf12c1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 17:02:09 +0000 Subject: [PATCH 1001/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 001f686..ffa5552 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.21.1.9798 dotnet (+7 duplicates) +Radarr 5.22.0.9801 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From b20ae106b18bec74469d2f3ef224f67521bcc719 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 19:02:35 +0000 Subject: [PATCH 1002/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ffa5552..279c39a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.0.9801 dotnet (+7 duplicates) +Radarr 5.22.0.9803 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 3d559c0923bf28a53c9a0e64f9cd790839c8bfc1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Mar 2025 08:04:20 +0000 Subject: [PATCH 1003/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 279c39a..9da3cd5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.0.9803 dotnet (+7 duplicates) +Radarr 5.22.0.9804 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 43f52874db6fd7217c471d546865915fdbe448a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Mar 2025 13:42:27 +0000 Subject: [PATCH 1004/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9da3cd5..a72a88b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.0.9804 dotnet (+7 duplicates) +Radarr 5.22.0.9806 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 24679cb7bc2e3f298f7a6319f0018a8894b51d93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Mar 2025 18:17:31 +0000 Subject: [PATCH 1005/1009] 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 a72a88b..1982964 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.0.9806 dotnet (+7 duplicates) +Radarr 5.22.0.9808 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet @@ -407,7 +407,7 @@ shadow 4.16.0-r1 skalibs-libs 2.14.3.0-r0 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 xmlstarlet 1.6.1-r2 apk xz-libs 5.6.3-r0 apk From 7682483a43c69f38c021198785c4952592c62a4d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Mar 2025 08:01:40 +0000 Subject: [PATCH 1006/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1982964..aada8c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.0.9808 dotnet (+7 duplicates) +Radarr 5.22.1.9811 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 827c7df416e60eed75c9aa577e910c785408e2b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 31 Mar 2025 19:02:09 +0000 Subject: [PATCH 1007/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aada8c5..ddd3c4a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.1.9811 dotnet (+7 duplicates) +Radarr 5.22.1.9817 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 22ae577561614f25a6b460ed1cab03d98f159415 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 31 Mar 2025 22:26:31 +0000 Subject: [PATCH 1008/1009] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ddd3c4a..087f0f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,7 +172,7 @@ Npgsql 7.0.10.0 Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet -Radarr 5.22.1.9817 dotnet (+7 duplicates) +Radarr 5.22.1.9818 dotnet (+7 duplicates) ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.7.0 dotnet From 2f18ad82d213c998299ac4fab7e53b56552e9c49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Apr 2025 22:41:13 +0000 Subject: [PATCH 1009/1009] Bot Updating Package Versions --- package_versions.txt | 595 +++++++++++++------------------------------ 1 file changed, 180 insertions(+), 415 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 087f0f8..32e03a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,415 +1,180 @@ -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 -FFMpegCore 4.0.0.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 -Instances 1.0.0.0 dotnet -Json.NET 13.0.3.27908 dotnet -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 -Radarr 5.22.1.9818 dotnet (+7 duplicates) -ReusableTasks 2.0.0 dotnet -Sentry 4.0.2.0 dotnet -SixLabors.ImageSharp 3.1.7.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.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 -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 -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 -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 -findutils 4.10.0-r0 apk -icu-data-en 74.2-r0 apk -icu-libs 74.2-r0 apk -jq 1.7.1-r0 apk -libattr 2.5.2-r2 apk -libbsd 0.12.2-r0 apk -libcrypto3 3.3.3-r0 apk -libcurl 8.12.1-r1 apk -libgcc 14.2.0-r4 apk -libgcrypt 1.10.3-r1 apk -libgpg-error 1.51-r0 apk -libidn2 2.3.7-r0 apk -libintl 0.22.5-r0 apk -libmd 1.1.0-r0 apk -libncursesw 6.5_p20241006-r3 apk -libproc2 4.0.4-r2 apk -libpsl 0.21.5-r3 apk -libssl3 3.3.3-r0 apk -libstdc++ 14.2.0-r4 apk -libunistring 1.2-r0 apk -libxml2 2.13.4-r5 apk -libxslt 1.1.42-r2 apk -linux-pam 1.6.1-r1 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 -oniguruma 6.9.9-r0 apk -procps-ng 4.0.4-r2 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 -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 -xmlstarlet 1.6.1-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) +Instances 1.6.1 dotnet (+5 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 (+7 duplicates) +NLog.Layouts.ClefJsonLayout 1.0.3 dotnet (+7 duplicates) +NLog.Targets.Syslog 7.0.0 dotnet (+7 duplicates) +Newtonsoft.Json 13.0.3 dotnet (+7 duplicates) +NodaTime 3.2.0 dotnet (+2 duplicates) +Npgsql 7.0.10 dotnet (+7 duplicates) +Polly 8.5.2 dotnet (+5 duplicates) +Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+7 duplicates) +Polly.Core 8.5.2 dotnet (+5 duplicates) +Radarr 1.0.0 dotnet +Radarr.Api.V3 1.0.0 dotnet (+2 duplicates) +Radarr.Common 1.0.0 dotnet (+7 duplicates) +Radarr.Core 1.0.0 dotnet (+5 duplicates) +Radarr.Host 1.0.0 dotnet (+1 duplicate) +Radarr.Http 1.0.0 dotnet (+3 duplicates) +Radarr.Mono 1.0.0 dotnet +Radarr.SignalR 1.0.0 dotnet (+4 duplicates) +ReusableTasks 2.0.0 dotnet (+5 duplicates) +Sentry 4.0.2 dotnet (+7 duplicates) +Servarr.FFMpegCore 4.7.0-26 dotnet (+5 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) +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.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) +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 +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 +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 +findutils 4.10.0-r0 apk +icu-data-en 74.2-r0 apk +icu-libs 74.2-r0 apk +jq 1.7.1-r0 apk +libattr 2.5.2-r2 apk +libbsd 0.12.2-r0 apk +libcrypto3 3.3.3-r0 apk +libcurl 8.12.1-r1 apk +libgcc 14.2.0-r4 apk +libgcrypt 1.10.3-r1 apk +libgpg-error 1.51-r0 apk +libidn2 2.3.7-r0 apk +libintl 0.22.5-r0 apk +libmd 1.1.0-r0 apk +libncursesw 6.5_p20241006-r3 apk +libproc2 4.0.4-r2 apk +libpsl 0.21.5-r3 apk +libssl3 3.3.3-r0 apk +libstdc++ 14.2.0-r4 apk +libunistring 1.2-r0 apk +libxml2 2.13.4-r5 apk +libxslt 1.1.42-r2 apk +linux-pam 1.6.1-r1 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 +oniguruma 6.9.9-r0 apk +procps-ng 4.0.4-r2 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 +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 +xmlstarlet 1.6.1-r2 apk +xz-libs 5.6.3-r0 apk +zlib 1.3.1-r2 apk +zstd-libs 1.5.6-r2 apk