From e38e242a34f9f932a951fa6430bcdf1701be72e6 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 30 Jan 2020 08:13:44 -0800 Subject: [PATCH 0001/2257] add nightly tag from their repos --- Dockerfile | 12 ++--- Dockerfile.aarch64 | 12 ++--- Dockerfile.armhf | 12 ++--- Jenkinsfile | 112 +++++++++++++++++++++------------------------ README.md | 9 ++++ jenkins-vars.yml | 12 ++--- readme-vars.yml | 7 +++ 7 files changed, 87 insertions(+), 89 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8693d69..f019fde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,14 +30,12 @@ RUN \ mesa-va-drivers && \ echo "**** install jellyfin *****" && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET "https://api.github.com/repos/jellyfin/jellyfin/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ + JELLYFIN="jellyfin-nightly"; \ + else \ + JELLYFIN="jellyfin-nightly=${JELLYFIN_RELEASE}"; \ fi && \ - VERSION=$(echo "${JELLYFIN_RELEASE}" | sed 's/^v//g') && \ - curl -o \ - /tmp/jellyfin.deb -L \ - "https://github.com/jellyfin/jellyfin/releases/download/v${VERSION}/jellyfin_${VERSION}-1_ubuntu-amd64.deb" && \ - dpkg -i /tmp/jellyfin.deb && \ + apt-get install -y \ + ${JELLYFIN} && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 65462e5..9438701 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,14 +30,12 @@ RUN \ libssl1.0.0 && \ echo "**** install jellyfin *****" && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET "https://api.github.com/repos/jellyfin/jellyfin/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ + JELLYFIN="jellyfin-nightly"; \ + else \ + JELLYFIN="jellyfin-nightly=${JELLYFIN_RELEASE}"; \ fi && \ - VERSION=$(echo "${JELLYFIN_RELEASE}" | sed 's/^v//g') && \ - curl -o \ - /tmp/jellyfin.deb -L \ - "https://github.com/jellyfin/jellyfin/releases/download/v${VERSION}/jellyfin_${VERSION}-1_ubuntu-arm64.deb" && \ - dpkg -i /tmp/jellyfin.deb && \ + apt-get install -y \ + ${JELLYFIN} && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index dddd603..dedb2aa 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -33,14 +33,12 @@ RUN \ libssl1.0.0 && \ echo "**** install jellyfin *****" && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET "https://api.github.com/repos/jellyfin/jellyfin/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ + JELLYFIN="jellyfin-nightly"; \ + else \ + JELLYFIN="jellyfin-nightly=${JELLYFIN_RELEASE}"; \ fi && \ - VERSION=$(echo "${JELLYFIN_RELEASE}" | sed 's/^v//g') && \ - curl -o \ - /tmp/jellyfin.deb -L \ - "https://github.com/jellyfin/jellyfin/releases/download/v${VERSION}/jellyfin_${VERSION}-1_ubuntu-armhf.deb" && \ - dpkg -i /tmp/jellyfin.deb && \ + apt-get install -y \ + ${JELLYFIN} && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Jenkinsfile b/Jenkinsfile index 5877b1d..9a7b10a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,9 +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') - EXT_GIT_BRANCH = 'master' - EXT_USER = 'jellyfin' - EXT_REPO = 'jellyfin' BUILD_VERSION_ARG = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -44,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}':latest 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', + script: '''docker run --rm alexeiled/skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':nightly 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', @@ -101,23 +98,16 @@ pipeline { /* ######################## External Release Tagging ######################## */ - // If this is a stable github release use the latest endpoint from github to determine the ext tag - stage("Set ENV github_stable"){ - steps{ - script{ - env.EXT_RELEASE = sh( - script: '''curl -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases/latest | jq -r '. | .tag_name' ''', - 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 - } - } + // 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 -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-nightly' | awk -F ': ' '/Version/{print $2;exit}' ''', + returnStdout: true).trim() + env.RELEASE_LINK = 'custom_command' + } + } } // Sanitize the release tag and strip illegal docker or github characters stage("Sanitize tag"){ @@ -129,10 +119,10 @@ pipeline { } } } - // If this is a master build use live docker endpoints + // If this is a nightly build use live docker endpoints stage("Set ENV live build"){ when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' } steps { @@ -153,7 +143,7 @@ pipeline { // 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 { @@ -226,7 +216,7 @@ pipeline { // 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 @@ -237,7 +227,7 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=master -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) @@ -245,7 +235,7 @@ pipeline { mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f master + git checkout -f nightly cd ${TEMPDIR}/docker-${CONTAINER_NAME} mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ @@ -277,7 +267,7 @@ pipeline { // 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: 'FILES_UPDATED', value: 'true' expression { @@ -396,7 +386,7 @@ pipeline { // Take the image we just built and dump package versions for comparison stage('Update-packages') { when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'EXIT_STATUS', value: '' } @@ -424,7 +414,7 @@ pipeline { echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO} - git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f master + git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f nightly cp ${TEMPDIR}/package_versions.txt ${TEMPDIR}/${LS_REPO}/ cd ${TEMPDIR}/${LS_REPO}/ wait @@ -448,7 +438,7 @@ pipeline { // Exit the build if the package file was just updated stage('PACKAGE-exit') { when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'PACKAGE_UPDATED', value: 'true' environment name: 'EXIT_STATUS', value: '' @@ -462,7 +452,7 @@ pipeline { // Exit the build if this is just a package check and there are no changes to push stage('PACKAGECHECK-exit') { when { - branch "master" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'PACKAGE_UPDATED', value: 'false' environment name: 'EXIT_STATUS', value: '' @@ -557,14 +547,14 @@ pipeline { 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}:latest - docker push ${PUSHIMAGE}:latest + 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}:latest || : + ${DELETEIMAGE}:nightly || : done ''' } @@ -607,52 +597,52 @@ pipeline { docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-latest - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest + 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-latest - docker push ${MANIFESTIMAGE}:arm32v7-latest - docker push ${MANIFESTIMAGE}:arm64v8-latest - docker manifest push --purge ${MANIFESTIMAGE}:latest || : - docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest - docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --os linux --arch arm - docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8 + docker push ${MANIFESTIMAGE}:amd64-nightly + docker push ${MANIFESTIMAGE}:arm32v7-nightly + docker push ${MANIFESTIMAGE}:arm64v8-nightly + docker manifest push --purge ${MANIFESTIMAGE}:nightly || : + docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:arm64v8-nightly + docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm32v7-nightly --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm64v8-nightly --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:latest + 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}:latest + 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-latest - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-latest + 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}:latest + docker push ${LEGACYIMAGE}:nightly docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-latest - docker push ${LEGACYIMAGE}:arm64v8-latest + 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-latest \ + ${DELETEIMAGE}:amd64-nightly \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ - ${DELETEIMAGE}:arm32v7-latest \ + ${DELETEIMAGE}:arm32v7-nightly \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-latest || : + ${DELETEIMAGE}:arm64v8-nightly || : done docker rmi \ lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ @@ -664,7 +654,7 @@ pipeline { // 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_CLEAN + '-ls' + env.LS_TAG_NUMBER } @@ -676,17 +666,17 @@ pipeline { sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ -d '{"tag":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\ + "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 - curl -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases/latest | jq '. |.body' | sed 's:^.\\(.*\\).$:\\1:' > releasebody.json + echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ - "target_commitish": "master",\ + "target_commitish": "nightly",\ "name": "'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ - "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**'${EXT_REPO}' Changes:**\\n\\n' > start - printf '","draft": false,"prerelease": false}' >> releasebody.json + "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start + printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' } diff --git a/README.md b/README.md index c320897..86ad9a5 100644 --- a/README.md +++ b/README.md @@ -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 Jellyfin releases | +| nightly | Nightly Jellyfin releases | ## Usage @@ -259,6 +267,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. * **02.10.19:** - Improve permission fixing for render & dvb devices. * **31.07.19:** - Add AMD drivers for vaapi support on x86. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 24b9d53..d38cb83 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -2,14 +2,12 @@ # jenkins variables project_name: docker-jellyfin -external_type: github_stable -release_type: stable -release_tag: latest -ls_branch: master +external_type: na +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-nightly' | awk -F ': ' '/Version/{print $2;exit}'" +release_type: prerelease +release_tag: nightly +ls_branch: nightly repo_vars: - - EXT_GIT_BRANCH = 'master' - - EXT_USER = 'jellyfin' - - EXT_REPO = 'jellyfin' - BUILD_VERSION_ARG = 'JELLYFIN_RELEASE' - LS_USER = 'linuxserver' - LS_REPO = 'docker-jellyfin' diff --git a/readme-vars.yml b/readme-vars.yml index 0f6d8ed..0c79546 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -13,6 +13,12 @@ available_architectures: - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} +# development version +development_versions: true +development_versions_items: + - { tag: "latest", desc: "Stable Jellyfin releases" } + - { tag: "nightly", desc: "Nightly Jellyfin releases" } + # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" @@ -80,6 +86,7 @@ app_setup_block: | # changelog changelogs: + - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } - { date: "31.07.19:", desc: "Add AMD drivers for vaapi support on x86." } From cb73b5e5efd563058d2cb4f041f27dbec7750f01 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 30 Jan 2020 08:38:12 -0800 Subject: [PATCH 0002/2257] adding nightly tag to readme --- README.md | 9 +++++++++ readme-vars.yml | 7 +++++++ 2 files changed, 16 insertions(+) diff --git a/README.md b/README.md index c320897..86ad9a5 100644 --- a/README.md +++ b/README.md @@ -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 Jellyfin releases | +| nightly | Nightly Jellyfin releases | ## Usage @@ -259,6 +267,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. * **02.10.19:** - Improve permission fixing for render & dvb devices. * **31.07.19:** - Add AMD drivers for vaapi support on x86. diff --git a/readme-vars.yml b/readme-vars.yml index 0f6d8ed..0c79546 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -13,6 +13,12 @@ available_architectures: - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} +# development version +development_versions: true +development_versions_items: + - { tag: "latest", desc: "Stable Jellyfin releases" } + - { tag: "nightly", desc: "Nightly Jellyfin releases" } + # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" @@ -80,6 +86,7 @@ app_setup_block: | # changelog changelogs: + - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } - { date: "31.07.19:", desc: "Add AMD drivers for vaapi support on x86." } From 9e8cf50fe67a9cd8d0352dac915baf04abf81d3e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Jan 2020 13:37:58 -0500 Subject: [PATCH 0003/2257] 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 80d1899..0041ce4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,7 +16,7 @@ debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 -e2fsprogs1.44.1-1ubuntu1.2 +e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 @@ -37,8 +37,8 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.4.3-1 jellyfin-ffmpeg4.2.1-3-bionic +jellyfin-nightly20200126 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -57,7 +57,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 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 @@ -70,7 +70,7 @@ libdrm-radeon12.4.99-1ubuntu1~18.04.1 libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 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 @@ -80,7 +80,7 @@ libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.2 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 libgraphite2-31.3.11-2 libgssapi3-heimdal7.5.0+dfsg-1 @@ -128,9 +128,9 @@ libpsl50.19.1-5build1 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 @@ -138,7 +138,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.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 From fb5ac701e75a1abb313be0e42bb77e370d9a239a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Jan 2020 19:30:35 +0000 Subject: [PATCH 0004/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 80d1899..4d2eebb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,7 +16,7 @@ debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 -e2fsprogs1.44.1-1ubuntu1.2 +e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 @@ -57,7 +57,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 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 @@ -70,7 +70,7 @@ libdrm-radeon12.4.99-1ubuntu1~18.04.1 libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 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 @@ -80,7 +80,7 @@ libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.2 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 libgraphite2-31.3.11-2 libgssapi3-heimdal7.5.0+dfsg-1 @@ -128,9 +128,9 @@ libpsl50.19.1-5build1 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 @@ -138,7 +138,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.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 From 490a9d6e3ce10b92e5e87de819c74e21854ce619 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 Feb 2020 07:20:38 +0000 Subject: [PATCH 0005/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4d2eebb..ead3a70 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,7 +183,7 @@ locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.1-1ubuntu1~18.04.1 +mesa-va-drivers19.2.8-0ubuntu0~18.04.1 mount2.31.1-0.4ubuntu3.4 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From 86081a33f1f71317fc1d38ce4d0acb520c25472f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Feb 2020 06:21:42 +0100 Subject: [PATCH 0006/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0041ce4..a06f7dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,7 +183,7 @@ locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.1-1ubuntu1~18.04.1 +mesa-va-drivers19.2.8-0ubuntu0~18.04.1 mount2.31.1-0.4ubuntu3.4 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From 55189c730741e72b4141e292e7f5ec7346d801df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Feb 2020 08:31:48 +0000 Subject: [PATCH 0007/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a06f7dc..d8d9b0f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200126 +jellyfin-nightly20200205 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 9ef94f3bddd6816773a878e23a84365108192250 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 6 Feb 2020 08:34:27 +0000 Subject: [PATCH 0008/2257] 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 d8d9b0f..01a9437 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,10 +2,10 @@ adduser3.116ubuntu1 apt1.6.12 apt-utils1.6.12 at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.7 +base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.4 +bsdutils1:2.31.1-0.4ubuntu3.5 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 coreutils8.28-1ubuntu1 @@ -17,7 +17,7 @@ diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.4 +fdisk2.31.1-0.4ubuntu3.5 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200205 +jellyfin-nightly20200206 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -49,7 +49,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.4 +libblkid12.31.1-0.4ubuntu3.5 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -71,7 +71,7 @@ libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 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 @@ -104,7 +104,7 @@ libldap-common2.4.45+dfsg-1ubuntu1.4 libllvm91:9-2~ubuntu18.04.1 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.4 +libmount12.31.1-0.4ubuntu3.5 libmp3lame03.100-2 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -136,7 +136,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.0.01.0.2n-1ubuntu5.3 @@ -148,7 +148,7 @@ libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.33 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.4 +libuuid12.31.1-0.4ubuntu3.5 libva22.1.0-3 libva-drm22.1.0-3 libvdpau11.1.1-3ubuntu1 @@ -184,7 +184,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers19.2.8-0ubuntu0~18.04.1 -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 @@ -202,5 +202,5 @@ tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 -util-linux2.31.1-0.4ubuntu3.4 +util-linux2.31.1-0.4ubuntu3.5 zlib1g1:1.2.11.dfsg-0ubuntu2 From 4b3185df6a85b632686c5792e4168d788f014d03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Feb 2020 08:35:57 +0000 Subject: [PATCH 0009/2257] 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 01a9437..cc3f50a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200206 +jellyfin-nightly20200207 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -61,12 +61,12 @@ libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdrm22.4.99-1ubuntu1~18.04.1 -libdrm-amdgpu12.4.99-1ubuntu1~18.04.1 -libdrm-common2.4.99-1ubuntu1~18.04.1 -libdrm-intel12.4.99-1ubuntu1~18.04.1 -libdrm-nouveau22.4.99-1ubuntu1~18.04.1 -libdrm-radeon12.4.99-1ubuntu1~18.04.1 +libdrm22.4.99-1ubuntu1~18.04.2 +libdrm-amdgpu12.4.99-1ubuntu1~18.04.2 +libdrm-common2.4.99-1ubuntu1~18.04.2 +libdrm-intel12.4.99-1ubuntu1~18.04.2 +libdrm-nouveau22.4.99-1ubuntu1~18.04.2 +libdrm-radeon12.4.99-1ubuntu1~18.04.2 libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 libexpat12.2.5-3ubuntu0.2 @@ -101,7 +101,7 @@ libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 libldap-2.4-22.4.45+dfsg-1ubuntu1.4 libldap-common2.4.45+dfsg-1ubuntu1.4 -libllvm91:9-2~ubuntu18.04.1 +libllvm91:9-2~ubuntu18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.5 @@ -183,7 +183,7 @@ locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.8-0ubuntu0~18.04.1 +mesa-va-drivers19.2.8-0ubuntu0~18.04.2 mount2.31.1-0.4ubuntu3.5 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From 15282f21ab9855adbcfd2eb6c7158ca3785a6d9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 8 Feb 2020 09:35:03 +0000 Subject: [PATCH 0010/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cc3f50a..63d63c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200207 +jellyfin-nightly20200208 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From c5def97012e9fe911a601ff6f16734fe428c4fd9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 9 Feb 2020 07:23:59 +0000 Subject: [PATCH 0011/2257] Bot Updating Package Versions --- package_versions.txt | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ead3a70..71d2f14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,10 +2,10 @@ adduser3.116ubuntu1 apt1.6.12 apt-utils1.6.12 at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.7 +base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.4 +bsdutils1:2.31.1-0.4ubuntu3.5 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 coreutils8.28-1ubuntu1 @@ -17,7 +17,7 @@ diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.4 +fdisk2.31.1-0.4ubuntu3.5 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -49,7 +49,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.4 +libblkid12.31.1-0.4ubuntu3.5 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -61,17 +61,17 @@ libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdrm22.4.99-1ubuntu1~18.04.1 -libdrm-amdgpu12.4.99-1ubuntu1~18.04.1 -libdrm-common2.4.99-1ubuntu1~18.04.1 -libdrm-intel12.4.99-1ubuntu1~18.04.1 -libdrm-nouveau22.4.99-1ubuntu1~18.04.1 -libdrm-radeon12.4.99-1ubuntu1~18.04.1 +libdrm22.4.99-1ubuntu1~18.04.2 +libdrm-amdgpu12.4.99-1ubuntu1~18.04.2 +libdrm-common2.4.99-1ubuntu1~18.04.2 +libdrm-intel12.4.99-1ubuntu1~18.04.2 +libdrm-nouveau22.4.99-1ubuntu1~18.04.2 +libdrm-radeon12.4.99-1ubuntu1~18.04.2 libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 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 @@ -101,10 +101,10 @@ libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 libldap-2.4-22.4.45+dfsg-1ubuntu1.4 libldap-common2.4.45+dfsg-1ubuntu1.4 -libllvm91:9-2~ubuntu18.04.1 +libllvm91:9-2~ubuntu18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.4 +libmount12.31.1-0.4ubuntu3.5 libmp3lame03.100-2 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -136,7 +136,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.0.01.0.2n-1ubuntu5.3 @@ -148,7 +148,7 @@ libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.33 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.4 +libuuid12.31.1-0.4ubuntu3.5 libva22.1.0-3 libva-drm22.1.0-3 libvdpau11.1.1-3ubuntu1 @@ -183,8 +183,8 @@ locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.8-0ubuntu0~18.04.1 -mount2.31.1-0.4ubuntu3.4 +mesa-va-drivers19.2.8-0ubuntu0~18.04.2 +mount2.31.1-0.4ubuntu3.5 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 @@ -202,5 +202,5 @@ tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 -util-linux2.31.1-0.4ubuntu3.4 +util-linux2.31.1-0.4ubuntu3.5 zlib1g1:1.2.11.dfsg-0ubuntu2 From 92e0e7e93408626e378445806748aa532bdf2f2f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 9 Feb 2020 08:38:47 +0000 Subject: [PATCH 0012/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 63d63c5..f0f7ebf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200208 +jellyfin-nightly20200209 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From f8a386658d4f4c5b401a74becbfc6b212ffb9537 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 11 Feb 2020 08:33:26 +0000 Subject: [PATCH 0013/2257] 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 f0f7ebf..b5b8ccd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200209 +jellyfin-nightly20200211 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -173,7 +173,7 @@ libxcb-sync11.13-2~ubuntu18.04 libxcb-xfixes01.13-2~ubuntu18.04 libxdmcp61:1.1.2-3 libxext62:1.3.3-1 -libxml22.9.4+dfsg1-6.1ubuntu1.2 +libxml22.9.4+dfsg1-6.1ubuntu1.3 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.3.3+dfsg-2ubuntu1.1 From 6528776b51891177ba4c57d2bb15a9a43ac6a7bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Feb 2020 09:36:46 +0000 Subject: [PATCH 0014/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b5b8ccd..ed9ce51 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200211 +jellyfin-nightly20200212 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From fd0fb464486179b1c7111810ff43418724c94ce9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 13 Feb 2020 09:36:34 +0000 Subject: [PATCH 0015/2257] 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 ed9ce51..b7828b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200212 +jellyfin-nightly20200213 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -142,11 +142,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.33 +libudev1237-3ubuntu10.38 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.5 libva22.1.0-3 From 57dc9368887e70d0c02501f9d8d897232ccfa07b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Feb 2020 04:38:56 -0500 Subject: [PATCH 0016/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b7828b3..319a8c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200213 +jellyfin-nightly20200214 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 0b1f544f7ee9688b475a56090f68c5ae29997d88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Feb 2020 04:38:16 -0500 Subject: [PATCH 0017/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 319a8c6..29afb3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200214 +jellyfin-nightly20200215 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From b750681b646bb787dcce7b3e7c9c29fd008550db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Feb 2020 02:22:36 -0500 Subject: [PATCH 0018/2257] 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 71d2f14..b841cd2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -142,11 +142,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.33 +libudev1237-3ubuntu10.38 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.5 libva22.1.0-3 @@ -173,7 +173,7 @@ libxcb-sync11.13-2~ubuntu18.04 libxcb-xfixes01.13-2~ubuntu18.04 libxdmcp61:1.1.2-3 libxext62:1.3.3-1 -libxml22.9.4+dfsg1-6.1ubuntu1.2 +libxml22.9.4+dfsg1-6.1ubuntu1.3 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.3.3+dfsg-2ubuntu1.1 From 92695be1fee906176038bb96456cc9c844d9b5dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Feb 2020 09:32:35 +0000 Subject: [PATCH 0019/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 29afb3f..d91e5fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200215 +jellyfin-nightly20200216 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From a46c85c9140636e525920823abdc967c17920844 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 Feb 2020 09:35:31 +0000 Subject: [PATCH 0020/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d91e5fe..ae8d999 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200216 +jellyfin-nightly20200218 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 06719520348a213af03985c586632ebd4caf7034 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Feb 2020 09:37:58 +0000 Subject: [PATCH 0021/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ae8d999..b3e9f63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200218 +jellyfin-nightly20200219 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 9ffd512c91122e1b82ef44f2234eaa967c185401 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Feb 2020 08:37:29 +0000 Subject: [PATCH 0022/2257] 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 b3e9f63..0ac0660 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200219 +jellyfin-nightly20200220 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -142,11 +142,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.38 +libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.5 libva22.1.0-3 From 96b1794c674dcb0dcf72d7bf0bf97d9f176d8d93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 Feb 2020 08:39:15 +0000 Subject: [PATCH 0023/2257] 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 0ac0660..6062a22 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin-ffmpeg4.2.1-3-bionic -jellyfin-nightly20200220 +jellyfin-ffmpeg4.2.1-5-bionic +jellyfin-nightly20200221 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From b3f5b2392f587669439edb41d9bc444fc35c9596 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 22 Feb 2020 08:32:21 +0000 Subject: [PATCH 0024/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6062a22..82e8f77 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200221 +jellyfin-nightly20200222 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From dafb899d5e3e23a062e23bd7c2cb0e055701ab4b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 23 Feb 2020 07:23:33 +0000 Subject: [PATCH 0025/2257] 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 b841cd2..e7f8d80 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin10.4.3-1 -jellyfin-ffmpeg4.2.1-3-bionic +jellyfin-ffmpeg4.2.1-5-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -142,11 +142,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.38 +libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.5 libva22.1.0-3 From 7f991c507cae6b3fe8fc7157101f46061f6687f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 23 Feb 2020 03:39:29 -0500 Subject: [PATCH 0026/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 82e8f77..c4e4a5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200222 +jellyfin-nightly20200223 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 611b026506e24c94249851e660989af9a2cec88d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 24 Feb 2020 08:37:29 +0000 Subject: [PATCH 0027/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4e4a5e..9e8cfcf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200223 +jellyfin-nightly20200224 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From cd62eb09c5f3be1feb4049b4a94a974365f43894 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 Feb 2020 18:31:03 +0000 Subject: [PATCH 0028/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9e8cfcf..534927e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200224 +jellyfin-nightly20200227 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 57b96bf1ecd961f37c538f1b5164c905e12fcbfa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Feb 2020 08:31:07 +0000 Subject: [PATCH 0029/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 534927e..2ef92b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200227 +jellyfin-nightly20200228 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From dd5718567bb99864103e462317c9467b08c2133a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Mar 2020 09:33:29 +0000 Subject: [PATCH 0030/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2ef92b7..80ab5d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200228 +jellyfin-nightly20200302 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 8ec5a917703d0340ebb6115fb149aa554305e458 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 3 Mar 2020 09:33:44 +0000 Subject: [PATCH 0031/2257] 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 80ab5d5..72f5351 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200302 +jellyfin-nightly20200303 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -183,7 +183,7 @@ locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.8-0ubuntu0~18.04.2 +mesa-va-drivers19.2.8-0ubuntu0~18.04.3 mount2.31.1-0.4ubuntu3.5 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From d79745d285fc9baf919d418e2a81548cdf67d531 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 Mar 2020 04:36:49 -0500 Subject: [PATCH 0032/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 72f5351..e6135d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200303 +jellyfin-nightly20200304 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From dd7ab1c0d1cd19fe0f61c5cd6364bce241afdcd5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 Mar 2020 08:37:58 +0000 Subject: [PATCH 0033/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e6135d2..c9d5220 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200304 +jellyfin-nightly20200305 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 6ad1566ba67afd4c66629be76e3f77aec63a8a6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Mar 2020 09:45:29 +0000 Subject: [PATCH 0034/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c9d5220..feec07d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200305 +jellyfin-nightly20200306 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 1c8d80072dfd8e89fc51733d8fd03f2e42af4627 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 8 Mar 2020 07:22:58 +0000 Subject: [PATCH 0035/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e7f8d80..cdcf8bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,7 +183,7 @@ locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.8-0ubuntu0~18.04.2 +mesa-va-drivers19.2.8-0ubuntu0~18.04.3 mount2.31.1-0.4ubuntu3.5 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From fe5b4978767170fb2bb688ddc893847afcb79d30 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 8 Mar 2020 07:34:36 +0000 Subject: [PATCH 0036/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index feec07d..716206c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200306 +jellyfin-nightly20200308 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From fac2a1c16fc4d8a56dde21508f970f372a8006a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 9 Mar 2020 01:06:13 +0000 Subject: [PATCH 0037/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cdcf8bb..7d23a69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.4.3-1 +jellyfin10.5.0-1 jellyfin-ffmpeg4.2.1-5-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 From 4543fdbff05b810e4611bb881f0abf22a31fe71b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 9 Mar 2020 07:40:32 +0000 Subject: [PATCH 0038/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 716206c..0529d6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200308 +jellyfin-nightly20200309 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 604aa4f9925a0f2eeea10dd2466ab413bee90e88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 10 Mar 2020 07:30:45 +0000 Subject: [PATCH 0039/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0529d6c..6bc0152 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200309 +jellyfin-nightly20200310 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 4d3d5a1a30d3696a5f00f53de288d19dcb95a581 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Mar 2020 07:43:42 +0000 Subject: [PATCH 0040/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6bc0152..e811219 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200310 +jellyfin-nightly20200311 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From e2786efb5cbed75effb96b535aa525c99f0a82a1 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 11 Mar 2020 15:42:50 -0400 Subject: [PATCH 0041/2257] add v4l2, remove transcode --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- readme-vars.yml | 24 ++++++++++++++++++------ root/etc/cont-init.d/40-gid-video | 27 +++++++++------------------ 5 files changed, 30 insertions(+), 27 deletions(-) diff --git a/Dockerfile b/Dockerfile index f019fde..876e94d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,4 +47,4 @@ COPY root/ / # ports and volumes EXPOSE 8096 8920 -VOLUME /config /transcode +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 9438701..3ecc686 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -47,4 +47,4 @@ COPY root/ / # ports and volumes EXPOSE 8096 8920 -VOLUME /config /transcode +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index dedb2aa..262c282 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -50,4 +50,4 @@ COPY root/ / # ports and volumes EXPOSE 8096 8920 -VOLUME /config /transcode +VOLUME /config diff --git a/readme-vars.yml b/readme-vars.yml index 0c79546..614b150 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -24,9 +24,9 @@ common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*" } - - { vol_path: "/data/tvshows", vol_host_path: "", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } - - { vol_path: "/data/movies", vol_host_path: "", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } + - { vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*" } + - { vol_path: "/data/tvshows", vol_host_path: "path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } + - { vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } param_usage_include_ports: true param_ports: - { external_port: "8096", internal_port: "8096", port_desc: "Http webUI." } @@ -39,15 +39,17 @@ opt_param_env_vars: - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Emby, default if left unset is 022."} opt_param_usage_include_vols: true opt_param_volumes: - - { vol_path: "/transcode", vol_host_path: "", desc: "Path for transcoding folder, *optional*." } - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } opt_param_device_map: true opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio)." } + - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } + - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } + - { device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } opt_param_usage_include_ports: true opt_param_ports: - - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to setup your own certificate)." } + - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)." } # application setup block @@ -55,7 +57,7 @@ app_setup_block_enabled: true app_setup_block: | Webui can be found at `http://:8096` - More information can be found in their official documentation [here](https://github.com/MediaBrowser/Wiki/wiki) . + More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . ## Hardware Acceleration @@ -84,8 +86,18 @@ app_setup_block: | -v /opt/vc/lib:/opt/vc/lib ``` + ### V4L2 (Raspberry Pi) + + Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/video1X devices inside of the container by passing the following options when running or creating the container: + ``` + --device=/dev/video10:/dev/video10 + --device=/dev/video11:/dev/video11 + --device=/dev/video12:/dev/video12 + ``` + # changelog changelogs: + - { date: "11.03.20:", desc: "Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 9ebcb11..3c81fdc 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -1,33 +1,24 @@ #!/usr/bin/with-contenv bash -FILES=$(find /dev/dri /dev/dvb /dev/vchiq -type c -print 2>/dev/null) +FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/video1? -type c -print 2>/dev/null) for i in $FILES do VIDEO_GID=$(stat -c '%g' "$i") - if id -G abc | grep -qw "$VIDEO_GID"; then - touch /groupadd - else - if [ ! "${VIDEO_GID}" == '0' ]; then - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [ -z "${VIDEO_NAME}" ]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" - groupadd "$VIDEO_NAME" - groupmod -g "$VIDEO_GID" "$VIDEO_NAME" - fi - usermod -a -G "$VIDEO_NAME" abc - touch /groupadd + if ! id -G abc | grep -qw "$VIDEO_GID"; then + VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') + if [ -z "${VIDEO_NAME}" ]; then + VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" + groupadd "$VIDEO_NAME" + groupmod -g "$VIDEO_GID" "$VIDEO_NAME" fi + usermod -a -G "$VIDEO_NAME" abc fi done -if [ -n "${FILES}" ] && [ ! -f "/groupadd" ]; then - usermod -a -G root abc -fi - # openmax lib loading if [ -e "/opt/vc/lib" ] && [ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]; then echo "[jellyfin-init] Pi Libs detected loading" echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" ldconfig -fi +fi From e667c59f3c8b7e0e5e4589cc3b590973164f1361 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Mar 2020 20:12:08 +0000 Subject: [PATCH 0042/2257] Bot Updating Templated Files --- README.md | 38 +++++++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 86ad9a5..a446fd3 100644 --- a/README.md +++ b/README.md @@ -78,13 +78,15 @@ docker create \ -e UMASK_SET=<022> `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ - -v :/config \ - -v :/data/tvshows \ - -v :/data/movies \ - -v :/transcode `#optional` \ + -v /path/to/library:/config \ + -v path/to/tvseries:/data/tvshows \ + -v /path/to/movies:/data/movies \ -v /opt/vc/lib:/opt/vc/lib `#optional` \ --device /dev/dri:/dev/dri `#optional` \ --device /dev/vchiq:/dev/vchiq `#optional` \ + --device /dev/video10:/dev/video10 `#optional` \ + --device /dev/video11:/dev/video11 `#optional` \ + --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ linuxserver/jellyfin ``` @@ -107,10 +109,9 @@ services: - TZ=Europe/London - UMASK_SET=<022> #optional volumes: - - :/config - - :/data/tvshows - - :/data/movies - - :/transcode #optional + - /path/to/library:/config + - path/to/tvseries:/data/tvshows + - /path/to/movies:/data/movies - /opt/vc/lib:/opt/vc/lib #optional ports: - 8096:8096 @@ -118,6 +119,9 @@ services: devices: - /dev/dri:/dev/dri #optional - /dev/vchiq:/dev/vchiq #optional + - /dev/video10:/dev/video10 #optional + - /dev/video11:/dev/video11 #optional + - /dev/video12:/dev/video12 #optional restart: unless-stopped ``` @@ -128,7 +132,7 @@ Container images are configured using parameters passed at runtime (such as thos | Parameter | Function | | :----: | --- | | `-p 8096` | Http webUI. | -| `-p 8920` | Https webUI (you need to setup your own certificate). | +| `-p 8920` | Https webUI (you need to set up your own certificate). | | `-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 | @@ -136,10 +140,12 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /transcode` | Path for transcoding folder, *optional*. | | `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | | `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | | `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). | +| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | ## Environment variables from files (Docker secrets) @@ -172,7 +178,7 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Webui can be found at `http://:8096` -More information can be found in their official documentation [here](https://github.com/MediaBrowser/Wiki/wiki) . +More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . ## Hardware Acceleration @@ -201,6 +207,15 @@ Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /d -v /opt/vc/lib:/opt/vc/lib ``` +### V4L2 (Raspberry Pi) + +Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/video1X devices inside of the container by passing the following options when running or creating the container: +``` +--device=/dev/video10:/dev/video10 +--device=/dev/video11:/dev/video11 +--device=/dev/video12:/dev/video12 +``` + ## Support Info @@ -267,6 +282,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **11.03.20:** - Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. * **02.10.19:** - Improve permission fixing for render & dvb devices. From 08a4008bdf8bdae7c6ade82c292494d19c1418d9 Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 24 Feb 2020 15:35:19 -0500 Subject: [PATCH 0043/2257] Add v4l2 support, remove transcode volume --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- README.md | 39 ++++++++++++++++++++++--------- readme-vars.yml | 26 ++++++++++++++++----- root/etc/cont-init.d/40-gid-video | 2 +- 6 files changed, 52 insertions(+), 21 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8693d69..891e5f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,4 +49,4 @@ COPY root/ / # ports and volumes EXPOSE 8096 8920 -VOLUME /config /transcode +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 65462e5..d68d57a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -49,4 +49,4 @@ COPY root/ / # ports and volumes EXPOSE 8096 8920 -VOLUME /config /transcode +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index dddd603..9523d9f 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -52,4 +52,4 @@ COPY root/ / # ports and volumes EXPOSE 8096 8920 -VOLUME /config /transcode +VOLUME /config diff --git a/README.md b/README.md index 86ad9a5..a8d8dfa 100644 --- a/README.md +++ b/README.md @@ -78,13 +78,15 @@ docker create \ -e UMASK_SET=<022> `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ - -v :/config \ - -v :/data/tvshows \ - -v :/data/movies \ - -v :/transcode `#optional` \ + -v /path/to/library:/config \ + -v /path/to/tvseries:/data/tvshows \ + -v /path/to/movies:/data/movies \ -v /opt/vc/lib:/opt/vc/lib `#optional` \ --device /dev/dri:/dev/dri `#optional` \ --device /dev/vchiq:/dev/vchiq `#optional` \ + --device /dev/video10:/dev/video10 `#optional` \ + --device /dev/video11:/dev/video11 `#optional` \ + --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ linuxserver/jellyfin ``` @@ -107,10 +109,9 @@ services: - TZ=Europe/London - UMASK_SET=<022> #optional volumes: - - :/config - - :/data/tvshows - - :/data/movies - - :/transcode #optional + - /path/to/library:/config + - /path/to/tvseries:/data/tvshows + - /path/to/movies:/data/movies - /opt/vc/lib:/opt/vc/lib #optional ports: - 8096:8096 @@ -118,6 +119,9 @@ services: devices: - /dev/dri:/dev/dri #optional - /dev/vchiq:/dev/vchiq #optional + - /dev/video10:/dev/video10 #optional + - /dev/video11:/dev/video11 #optional + - /dev/video12:/dev/video12 #optional restart: unless-stopped ``` @@ -136,10 +140,12 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /transcode` | Path for transcoding folder, *optional*. | | `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | | `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | -| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). | +| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding. | +| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | ## Environment variables from files (Docker secrets) @@ -172,7 +178,7 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Webui can be found at `http://:8096` -More information can be found in their official documentation [here](https://github.com/MediaBrowser/Wiki/wiki) . +More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . ## Hardware Acceleration @@ -201,6 +207,16 @@ Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /d -v /opt/vc/lib:/opt/vc/lib ``` +### V4L2 (Raspberry Pi) + +Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/videoX video devices inside of the container by passing the following options when running or creating the container: + +``` +--device=/dev/video10:/dev/video10 +--device=/dev/video11:/dev/video11 +--device=/dev/video12:/dev/video12 +``` + ## Support Info @@ -267,6 +283,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **24.02.20:** - Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. * **02.10.19:** - Improve permission fixing for render & dvb devices. diff --git a/readme-vars.yml b/readme-vars.yml index 0c79546..8a8d18a 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -24,9 +24,9 @@ common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*" } - - { vol_path: "/data/tvshows", vol_host_path: "", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } - - { vol_path: "/data/movies", vol_host_path: "", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } + - { vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*" } + - { vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } + - { vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } param_usage_include_ports: true param_ports: - { external_port: "8096", internal_port: "8096", port_desc: "Http webUI." } @@ -39,12 +39,14 @@ opt_param_env_vars: - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Emby, default if left unset is 022."} opt_param_usage_include_vols: true opt_param_volumes: - - { vol_path: "/transcode", vol_host_path: "", desc: "Path for transcoding folder, *optional*." } - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } opt_param_device_map: true opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } - - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio)." } + - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding." } + - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } + - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } + - { device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } opt_param_usage_include_ports: true opt_param_ports: - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to setup your own certificate)." } @@ -55,7 +57,7 @@ app_setup_block_enabled: true app_setup_block: | Webui can be found at `http://:8096` - More information can be found in their official documentation [here](https://github.com/MediaBrowser/Wiki/wiki) . + More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . ## Hardware Acceleration @@ -84,8 +86,20 @@ app_setup_block: | -v /opt/vc/lib:/opt/vc/lib ``` + ### V4L2 (Raspberry Pi) + + Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/videoX video devices inside of the container by passing the following options when running or creating the container: + + ``` + --device=/dev/video10:/dev/video10 + --device=/dev/video11:/dev/video11 + --device=/dev/video12:/dev/video12 + ``` + + # changelog changelogs: + - { date: "24.02.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 9ebcb11..371891f 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -1,6 +1,6 @@ #!/usr/bin/with-contenv bash -FILES=$(find /dev/dri /dev/dvb /dev/vchiq -type c -print 2>/dev/null) +FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/video1? -type c -print 2>/dev/null) for i in $FILES do From 2cac61779c5ffacdcec3d002189e91461d6f6756 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 11 Mar 2020 15:29:12 -0400 Subject: [PATCH 0044/2257] improve vide gid fix --- root/etc/cont-init.d/40-gid-video | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 371891f..3c81fdc 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -5,29 +5,20 @@ FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/video1? -type c -print 2>/dev/nul for i in $FILES do VIDEO_GID=$(stat -c '%g' "$i") - if id -G abc | grep -qw "$VIDEO_GID"; then - touch /groupadd - else - if [ ! "${VIDEO_GID}" == '0' ]; then - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [ -z "${VIDEO_NAME}" ]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" - groupadd "$VIDEO_NAME" - groupmod -g "$VIDEO_GID" "$VIDEO_NAME" - fi - usermod -a -G "$VIDEO_NAME" abc - touch /groupadd + if ! id -G abc | grep -qw "$VIDEO_GID"; then + VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') + if [ -z "${VIDEO_NAME}" ]; then + VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" + groupadd "$VIDEO_NAME" + groupmod -g "$VIDEO_GID" "$VIDEO_NAME" fi + usermod -a -G "$VIDEO_NAME" abc fi done -if [ -n "${FILES}" ] && [ ! -f "/groupadd" ]; then - usermod -a -G root abc -fi - # openmax lib loading if [ -e "/opt/vc/lib" ] && [ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]; then echo "[jellyfin-init] Pi Libs detected loading" echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" ldconfig -fi +fi From c4f5a137506642f3d2d45a9fee6a9bd848b504ef Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 11 Mar 2020 15:44:44 -0400 Subject: [PATCH 0045/2257] update readme --- README.md | 4 ++-- readme-vars.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a8d8dfa..14a261a 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ Container images are configured using parameters passed at runtime (such as thos | Parameter | Function | | :----: | --- | | `-p 8096` | Http webUI. | -| `-p 8920` | Https webUI (you need to setup your own certificate). | +| `-p 8920` | Https webUI (you need to set up your own certificate). | | `-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 | @@ -283,7 +283,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **24.02.20:** - Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). +* **11.03.20:** - Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. * **02.10.19:** - Improve permission fixing for render & dvb devices. diff --git a/readme-vars.yml b/readme-vars.yml index 8a8d18a..27e1388 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -49,7 +49,7 @@ opt_param_devices: - { device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } opt_param_usage_include_ports: true opt_param_ports: - - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to setup your own certificate)." } + - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)." } # application setup block @@ -99,7 +99,7 @@ app_setup_block: | # changelog changelogs: - - { date: "24.02.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } + - { date: "11.03.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } From cfb5e6967aaca29f2fc53738d4783347a8aa300b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Mar 2020 20:22:11 +0000 Subject: [PATCH 0046/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7d23a69..94933a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,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.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 From 31ed3dbc9579a5584da935140108f23c4a7d9cdc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Mar 2020 20:29:09 +0000 Subject: [PATCH 0047/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e811219..3bf9c01 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,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.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 From 53fb169f751332cd27e1eeff2b50910b9d9bd67b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 12 Mar 2020 07:44:26 +0000 Subject: [PATCH 0048/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3bf9c01..9f44afc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200311 +jellyfin-nightly20200312 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 805bfa4cb1dc9e5dbb6962cb71e7c4e82a37b969 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Mar 2020 03:34:22 -0400 Subject: [PATCH 0049/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9f44afc..0a67a8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200312 +jellyfin-nightly20200313 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 9a5d2d4bdf54e6860ec34b1a443224bc31f48920 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 14 Mar 2020 03:40:04 -0400 Subject: [PATCH 0050/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0a67a8c..9e5de64 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200313 +jellyfin-nightly20200314 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From e77c1f89f57b6115d8591cee83b3b7d9eb591b66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 15 Mar 2020 02:37:39 -0400 Subject: [PATCH 0051/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9e5de64..4c8d6aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200314 +jellyfin-nightly20200315 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 3bea00068aeb10cc7f70ac79af7a409638e8e230 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 16 Mar 2020 06:36:57 +0000 Subject: [PATCH 0052/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4c8d6aa..7babc86 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200315 +jellyfin-nightly20200316 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 60151405a49f9bfa9a3e0041d876f5f9a10db955 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 17 Mar 2020 06:40:13 +0000 Subject: [PATCH 0053/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7babc86..3912730 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200316 +jellyfin-nightly20200317 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 6db31705a8880f89cb463d6bdebc982f9a737418 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Mar 2020 01:16:48 -0400 Subject: [PATCH 0054/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a446fd3..448d0f5 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ Container images are configured using parameters passed at runtime (such as thos | `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | | `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | + ## Environment variables from files (Docker secrets) You can set any environment variable from a file by using a special prepend `FILE__`. From 684c61be329704c8fdfe5686beb7e3adad206452 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Mar 2020 05:27:33 +0000 Subject: [PATCH 0055/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3912730..624a957 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 -libicu6060.2-3ubuntu3 +libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 libk5crypto31.16-2ubuntu0.1 libkeyutils11.5.9-9.2ubuntu2 From 92e06faa82451f5e2912c722058d82a9b485733b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Mar 2020 07:43:35 +0000 Subject: [PATCH 0056/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 624a957..58cc678 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200317 +jellyfin-nightly20200318 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From cff45bdfc1e43951694cb2b19aca44ba9f1ee66a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 19 Mar 2020 07:27:06 +0000 Subject: [PATCH 0057/2257] Bot Updating Templated Files --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 448d0f5..a446fd3 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,6 @@ Container images are configured using parameters passed at runtime (such as thos | `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | | `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | - ## Environment variables from files (Docker secrets) You can set any environment variable from a file by using a special prepend `FILE__`. From e5545a6965fa06f31bb0f326e170246561d4602e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 19 Mar 2020 07:46:42 +0000 Subject: [PATCH 0058/2257] 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 58cc678..ca2cc1d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,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 @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200318 +jellyfin-nightly20200319 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -76,7 +76,7 @@ libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 libfribidi00.19.7-2 -libgcc11:8.3.0-6ubuntu1~18.04.1 +libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 @@ -141,7 +141,7 @@ libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 From b484207a0f5f470e9284e380af5a6ef962e7f500 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 20 Mar 2020 07:38:20 +0000 Subject: [PATCH 0059/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ca2cc1d..5bb49dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200319 +jellyfin-nightly20200320 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 808a335fdfedecc6726b92244f0e6c080747e09f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 22 Mar 2020 03:37:52 -0400 Subject: [PATCH 0060/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5bb49dc..b60ce0b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200320 +jellyfin-nightly20200322 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 443e77c33ee4a3c8b3f0043d0a653d4009bd44aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 23 Mar 2020 01:28:31 +0000 Subject: [PATCH 0061/2257] 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 94933a4..26349ff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,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 @@ -37,7 +37,7 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.5.0-1 +jellyfin10.5.2-1 jellyfin-ffmpeg4.2.1-5-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 @@ -76,7 +76,7 @@ libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 libfribidi00.19.7-2 -libgcc11:8.3.0-6ubuntu1~18.04.1 +libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgmp102:6.1.2+dfsg-2 @@ -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 -libicu6060.2-3ubuntu3 +libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 libk5crypto31.16-2ubuntu0.1 libkeyutils11.5.9-9.2ubuntu2 @@ -141,7 +141,7 @@ libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 From 5d641f3c1512117fc324f95bb46c9808b82f1830 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 23 Mar 2020 07:37:56 +0100 Subject: [PATCH 0062/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b60ce0b..72b02c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200322 +jellyfin-nightly20200323 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From d3b25869b633fbf70acb6f9939bcb6399e7f3d44 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Mar 2020 06:34:28 +0000 Subject: [PATCH 0063/2257] 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 72b02c9..89d6795 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200323 +jellyfin-nightly20200324 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -78,7 +78,7 @@ libfreetype62.8.1-2ubuntu2 libfribidi00.19.7-2 libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 -libglib2.0-02.56.4-0ubuntu0.18.04.4 +libglib2.0-02.56.4-0ubuntu0.18.04.5 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.3 libgpg-error01.27-6 From 81456f39e674d4efd1a2c7c8c876953c24fd3474 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Mar 2020 01:33:43 -0400 Subject: [PATCH 0064/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 89d6795..7198555 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -78,7 +78,7 @@ libfreetype62.8.1-2ubuntu2 libfribidi00.19.7-2 libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 -libglib2.0-02.56.4-0ubuntu0.18.04.5 +libglib2.0-02.56.4-0ubuntu0.18.04.6 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.3 libgpg-error01.27-6 From b159ad51c22a0ac0e91c4fed8497e68e9cc2d60c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Mar 2020 07:31:05 +0100 Subject: [PATCH 0065/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7198555..c2ad26f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200324 +jellyfin-nightly20200325 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From e04926e0d2133a88bcc2d4334b68e3dc3440cb34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Mar 2020 02:38:12 -0400 Subject: [PATCH 0066/2257] 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 c2ad26f..c1df347 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ at3.1.20-3.1ubuntu2 base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.5 +bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 coreutils8.28-1ubuntu1 @@ -17,7 +17,7 @@ diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.5 +fdisk2.31.1-0.4ubuntu3.6 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200325 +jellyfin-nightly20200326 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -49,7 +49,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.5 +libblkid12.31.1-0.4ubuntu3.6 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -71,7 +71,7 @@ libedit23.1-20170329-1 libelf10.170-0.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 @@ -104,7 +104,7 @@ libldap-common2.4.45+dfsg-1ubuntu1.4 libllvm91:9-2~ubuntu18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.5 +libmount12.31.1-0.4ubuntu3.6 libmp3lame03.100-2 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -136,7 +136,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.0.01.0.2n-1ubuntu5.3 @@ -148,7 +148,7 @@ libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.5 +libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 libva-drm22.1.0-3 libvdpau11.1.1-3ubuntu1 @@ -184,7 +184,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers19.2.8-0ubuntu0~18.04.3 -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 @@ -202,5 +202,5 @@ tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 -util-linux2.31.1-0.4ubuntu3.5 +util-linux2.31.1-0.4ubuntu3.6 zlib1g1:1.2.11.dfsg-0ubuntu2 From 3a51c0a413d42b65cf70c4aea41a9386c575703e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Mar 2020 02:34:55 -0400 Subject: [PATCH 0067/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c1df347..e7efe79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200326 +jellyfin-nightly20200327 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From a4e2101e08aedce9a97c8e165a034e40cddf6bab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Mar 2020 02:36:13 -0400 Subject: [PATCH 0068/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e7efe79..f294417 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200327 +jellyfin-nightly20200328 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 39d8d8ded252f095237867648de10316e8800476 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 29 Mar 2020 06:18:51 +0000 Subject: [PATCH 0069/2257] 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 26349ff..07bb069 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ at3.1.20-3.1ubuntu2 base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.5 +bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 coreutils8.28-1ubuntu1 @@ -17,7 +17,7 @@ diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.5 +fdisk2.31.1-0.4ubuntu3.6 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -49,7 +49,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.5 +libblkid12.31.1-0.4ubuntu3.6 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -71,14 +71,14 @@ libedit23.1-20170329-1 libelf10.170-0.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 libfribidi00.19.7-2 libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 -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 @@ -104,7 +104,7 @@ libldap-common2.4.45+dfsg-1ubuntu1.4 libllvm91:9-2~ubuntu18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.5 +libmount12.31.1-0.4ubuntu3.6 libmp3lame03.100-2 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -136,7 +136,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.0.01.0.2n-1ubuntu5.3 @@ -148,7 +148,7 @@ libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.5 +libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 libva-drm22.1.0-3 libvdpau11.1.1-3ubuntu1 @@ -184,7 +184,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers19.2.8-0ubuntu0~18.04.3 -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 @@ -202,5 +202,5 @@ tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 -util-linux2.31.1-0.4ubuntu3.5 +util-linux2.31.1-0.4ubuntu3.6 zlib1g1:1.2.11.dfsg-0ubuntu2 From 153ab8bfc46a63044c761468bd6cd12e8710a084 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 30 Mar 2020 06:32:27 +0000 Subject: [PATCH 0070/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f294417..fae866a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200328 +jellyfin-nightly20200330 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 325f45a75f0544a37c815db91777fc1ef146da16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 31 Mar 2020 02:30:53 -0400 Subject: [PATCH 0071/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fae866a..f56f779 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200330 +jellyfin-nightly20200331 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 276871c0b724f7c21565088de18737c91f47e528 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Apr 2020 02:35:53 -0400 Subject: [PATCH 0072/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f56f779..7b7aba6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200331 +jellyfin-nightly20200401 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From b50258c34296014bc35db2acfaf5f4c206e338d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Apr 2020 02:35:15 -0400 Subject: [PATCH 0073/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7b7aba6..8ab9e0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200401 +jellyfin-nightly20200402 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From b1ae3592bee26c1aa7df5499b6429edae821aa95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Apr 2020 08:36:21 +0200 Subject: [PATCH 0074/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8ab9e0e..b047244 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200402 +jellyfin-nightly20200403 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From afd8895f73fdc870751c90cfc3e7780800b92946 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Apr 2020 08:31:18 +0200 Subject: [PATCH 0075/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b047244..c1601bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200403 +jellyfin-nightly20200404 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 203612c0688dde7a9eff22077acd39f897fe1d87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 5 Apr 2020 08:44:06 +0200 Subject: [PATCH 0076/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c1601bc..bb46acc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200404 +jellyfin-nightly20200405 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 07516c8f802577b5bdd975d3508cda5e09e65d52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 5 Apr 2020 18:11:01 -0400 Subject: [PATCH 0077/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 07bb069..ea009cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.5.2-1 +jellyfin10.5.3-1 jellyfin-ffmpeg4.2.1-5-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 From 48b0131647a638847dfd1cd6306d1e39627302bb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Apr 2020 02:43:00 -0400 Subject: [PATCH 0078/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bb46acc..8894b61 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200405 +jellyfin-nightly20200406 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 06f019e586404084c9520036b896b32055b8cb2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 7 Apr 2020 06:38:29 +0000 Subject: [PATCH 0079/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8894b61..b0f3aa6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200406 +jellyfin-nightly20200407 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 3da3f7d92015bd7a3e9587b752e57b068238a04c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 05:17:28 +0100 Subject: [PATCH 0080/2257] Bot Updating Templated Files --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a446fd3..d095bc3 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) @@ -98,7 +98,7 @@ Compatible with docker-compose v2 schemas. ``` --- -version: "2" +version: "2.1" services: jellyfin: image: linuxserver/jellyfin @@ -217,6 +217,11 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/ ``` +## Docker Mods +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 86ed194e5470d85213b3ab6210c97d065f168878 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 04:26:37 +0000 Subject: [PATCH 0081/2257] 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 b0f3aa6..368c7bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,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 @@ -76,7 +76,7 @@ libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 libfribidi00.19.7-2 -libgcc11:8.3.0-26ubuntu1~18.04 +libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libglib2.0-02.56.4-0ubuntu0.18.04.6 libgmp102:6.1.2+dfsg-2 @@ -141,7 +141,7 @@ libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 From 4d802ef7d59dc7674cc65f1fdf807fc6e3d3df3d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 07:33:09 +0100 Subject: [PATCH 0082/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 368c7bf..d19daed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-5-bionic -jellyfin-nightly20200407 +jellyfin-nightly20200408 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 From 3e7e072fc81ebbd235f55f7fd5d248af880478b6 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Apr 2020 14:52:12 -0400 Subject: [PATCH 0083/2257] enable rpi hw decode, readme updates also create missing default transcodes folder --- .github/FUNDING.yml | 1 + Jenkinsfile | 2 +- README.md | 11 ++++++++--- jenkins-vars.yml | 2 ++ readme-vars.yml | 9 ++++++--- root/donate.txt | 1 + root/etc/cont-init.d/30-config | 2 +- root/etc/cont-init.d/40-gid-video | 2 +- 8 files changed, 21 insertions(+), 9 deletions(-) create mode 100644 root/donate.txt diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 7972213..b91c388 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ open_collective: linuxserver +custom: ["https://opencollective.com/jellyfin",] diff --git a/Jenkinsfile b/Jenkinsfile index 9a7b10a..349d936 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' + 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 d095bc3..a3d3c52 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ docker create \ -v /path/to/movies:/data/movies \ -v /opt/vc/lib:/opt/vc/lib `#optional` \ --device /dev/dri:/dev/dri `#optional` \ + --device /dev/vc-mem:/dev/vc-mem `#optional` \ --device /dev/vchiq:/dev/vchiq `#optional` \ --device /dev/video10:/dev/video10 `#optional` \ --device /dev/video11:/dev/video11 `#optional` \ @@ -118,6 +119,7 @@ services: - 8920:8920 #optional devices: - /dev/dri:/dev/dri #optional + - /dev/vc-mem:/dev/vc-mem #optional - /dev/vchiq:/dev/vchiq #optional - /dev/video10:/dev/video10 #optional - /dev/video11:/dev/video11 #optional @@ -142,6 +144,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | | `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | +| `--device /dev/vc-mem` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | | `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). | | `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | | `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | @@ -198,18 +201,19 @@ https://github.com/NVIDIA/nvidia-docker We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. -### OpenMAX (Raspberry Pi) +### MMAL/OpenMAX (Raspberry Pi) -Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /dev/vchiq video device inside of the container and their system OpenMax libs by passing the following options when running or creating the container: +Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` +--device=/dev/vc-mem:/dev/vc-mem --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` ### V4L2 (Raspberry Pi) -Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/video1X devices inside of the container by passing the following options when running or creating the container: +Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: ``` --device=/dev/video10:/dev/video10 --device=/dev/video11:/dev/video11 @@ -287,6 +291,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. * **11.03.20:** - Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index d38cb83..2676788 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -25,3 +25,5 @@ repo_vars: - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' - CI_WEBPATH='' +sponsor_links: + - { name: "Jellyfin", url: "https://opencollective.com/jellyfin" } diff --git a/readme-vars.yml b/readme-vars.yml index 614b150..10d13d8 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -43,6 +43,7 @@ opt_param_volumes: opt_param_device_map: true opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } + - { device_path: "/dev/vc-mem", device_host_path: "/dev/vc-mem", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio)." } - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } @@ -77,18 +78,19 @@ app_setup_block: | We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - ### OpenMAX (Raspberry Pi) + ### MMAL/OpenMAX (Raspberry Pi) - Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /dev/vchiq video device inside of the container and their system OpenMax libs by passing the following options when running or creating the container: + Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` + --device=/dev/vc-mem:/dev/vc-mem --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` ### V4L2 (Raspberry Pi) - Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/video1X devices inside of the container by passing the following options when running or creating the container: + Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: ``` --device=/dev/video10:/dev/video10 --device=/dev/video11:/dev/video11 @@ -97,6 +99,7 @@ app_setup_block: | # changelog changelogs: + - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - { date: "11.03.20:", desc: "Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } diff --git a/root/donate.txt b/root/donate.txt new file mode 100644 index 0000000..0646520 --- /dev/null +++ b/root/donate.txt @@ -0,0 +1 @@ +Jellyfin: https://opencollective.com/jellyfin diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 1193147..d79adc0 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -2,7 +2,7 @@ # create directories mkdir -p \ - /config/{log,data,cache} \ + /config/{log,data/transcodes,cache} \ /data \ /transcode diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 3c81fdc..e4512de 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -1,6 +1,6 @@ #!/usr/bin/with-contenv bash -FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/video1? -type c -print 2>/dev/null) +FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) for i in $FILES do From 445de2ba0122ed584dbc651e57aa27e9df8b259e Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Apr 2020 16:51:58 -0400 Subject: [PATCH 0084/2257] enable rpi hw decode, readme updates also create missing default transcodes folder --- .github/FUNDING.yml | 1 + Jenkinsfile | 2 +- README.md | 18 ++++++++++++++---- jenkins-vars.yml | 2 ++ readme-vars.yml | 7 +++++-- root/donate.txt | 1 + root/etc/cont-init.d/30-config | 3 ++- root/etc/cont-init.d/40-gid-video | 2 +- 8 files changed, 27 insertions(+), 9 deletions(-) create mode 100644 root/donate.txt diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 7972213..b91c388 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ open_collective: linuxserver +custom: ["https://opencollective.com/jellyfin",] diff --git a/Jenkinsfile b/Jenkinsfile index 5877b1d..ca1f725 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,7 +58,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 14a261a..7d5f959 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) @@ -83,6 +83,7 @@ docker create \ -v /path/to/movies:/data/movies \ -v /opt/vc/lib:/opt/vc/lib `#optional` \ --device /dev/dri:/dev/dri `#optional` \ + --device /dev/vc-mem:/dev/vc-mem `#optional` \ --device /dev/vchiq:/dev/vchiq `#optional` \ --device /dev/video10:/dev/video10 `#optional` \ --device /dev/video11:/dev/video11 `#optional` \ @@ -98,7 +99,7 @@ Compatible with docker-compose v2 schemas. ``` --- -version: "2" +version: "2.1" services: jellyfin: image: linuxserver/jellyfin @@ -118,6 +119,7 @@ services: - 8920:8920 #optional devices: - /dev/dri:/dev/dri #optional + - /dev/vc-mem:/dev/vc-mem #optional - /dev/vchiq:/dev/vchiq #optional - /dev/video10:/dev/video10 #optional - /dev/video11:/dev/video11 #optional @@ -142,6 +144,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | | `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | +| `--device /dev/vc-mem` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | | `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding. | | `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | | `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | @@ -200,16 +203,17 @@ We automatically add the necessary environment variable that will utilise all th ### OpenMAX (Raspberry Pi) -Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /dev/vchiq video device inside of the container and their system OpenMax libs by passing the following options when running or creating the container: +Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` +--device=/dev/vc-mem:/dev/vc-mem --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` ### V4L2 (Raspberry Pi) -Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/videoX video devices inside of the container by passing the following options when running or creating the container: +Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: ``` --device=/dev/video10:/dev/video10 @@ -218,6 +222,11 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/ ``` +## Docker Mods +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 @@ -283,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. * **11.03.20:** - Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. * **09.01.20:** - Add Pi OpenMax support. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 24b9d53..40054d7 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -27,3 +27,5 @@ repo_vars: - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' - CI_WEBPATH='' +sponsor_links: + - { name: "Jellyfin", url: "https://opencollective.com/jellyfin" } diff --git a/readme-vars.yml b/readme-vars.yml index 27e1388..95daa31 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -43,6 +43,7 @@ opt_param_volumes: opt_param_device_map: true opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } + - { device_path: "/dev/vc-mem", device_host_path: "/dev/vc-mem", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding." } - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } @@ -79,16 +80,17 @@ app_setup_block: | ### OpenMAX (Raspberry Pi) - Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /dev/vchiq video device inside of the container and their system OpenMax libs by passing the following options when running or creating the container: + Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` + --device=/dev/vc-mem:/dev/vc-mem --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` ### V4L2 (Raspberry Pi) - Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/videoX video devices inside of the container by passing the following options when running or creating the container: + Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: ``` --device=/dev/video10:/dev/video10 @@ -99,6 +101,7 @@ app_setup_block: | # changelog changelogs: + - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - { date: "11.03.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } - { date: "09.01.20:", desc: "Add Pi OpenMax support." } diff --git a/root/donate.txt b/root/donate.txt new file mode 100644 index 0000000..0646520 --- /dev/null +++ b/root/donate.txt @@ -0,0 +1 @@ +Jellyfin: https://opencollective.com/jellyfin diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 1193147..6d7eda0 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -2,7 +2,7 @@ # create directories mkdir -p \ - /config/{log,data,cache} \ + /config/{log,data/transcodes,cache} \ /data \ /transcode @@ -11,6 +11,7 @@ chown abc:abc \ /config \ /config/* \ /data \ + /data/transcodes /transcode if [ -n "$(ls -A /data 2>/dev/null)" ]; then chown abc:abc \ diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 3c81fdc..e4512de 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -1,6 +1,6 @@ #!/usr/bin/with-contenv bash -FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/video1? -type c -print 2>/dev/null) +FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) for i in $FILES do From 50fb13f879f2436b4a545ec430722619be1aa12b Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Apr 2020 16:56:08 -0400 Subject: [PATCH 0085/2257] fix typo --- root/etc/cont-init.d/30-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 6d7eda0..a3c2946 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -11,7 +11,7 @@ chown abc:abc \ /config \ /config/* \ /data \ - /data/transcodes + /data/transcodes \ /transcode if [ -n "$(ls -A /data 2>/dev/null)" ]; then chown abc:abc \ From 45cb4581eb86070e2b22b940a72b165bb32dc47e Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Apr 2020 17:12:46 -0400 Subject: [PATCH 0086/2257] docs doesn't render three backticks for a single line correctly --- README.md | 2 +- readme-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d5f959..89f23f9 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,7 @@ More information can be found in their official documentation [here](https://jel Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: -```--device=/dev/dri:/dev/dri``` +`--device=/dev/dri:/dev/dri` We will automatically ensure the abc user inside of the container has the proper permissions to access this device. diff --git a/readme-vars.yml b/readme-vars.yml index 95daa31..aa17cee 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -66,7 +66,7 @@ app_setup_block: | Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: - ```--device=/dev/dri:/dev/dri``` + `--device=/dev/dri:/dev/dri` We will automatically ensure the abc user inside of the container has the proper permissions to access this device. From 5e6b95ac1dfe1d45b5cc004becd3a084410c7305 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 11 Apr 2020 22:09:00 +0000 Subject: [PATCH 0087/2257] 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 ea009cb..7ee4229 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,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 @@ -76,7 +76,7 @@ libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 libfribidi00.19.7-2 -libgcc11:8.3.0-26ubuntu1~18.04 +libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libglib2.0-02.56.4-0ubuntu0.18.04.6 libgmp102:6.1.2+dfsg-2 @@ -141,7 +141,7 @@ libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 From 8f8a80294bf7d2b48fa8cc914889fc3cbf1acf74 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Apr 2020 18:31:42 -0400 Subject: [PATCH 0088/2257] fix typo in folder location --- root/etc/cont-init.d/30-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index a3c2946..a272525 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -11,7 +11,7 @@ chown abc:abc \ /config \ /config/* \ /data \ - /data/transcodes \ + /config/data/transcodes \ /transcode if [ -n "$(ls -A /data 2>/dev/null)" ]; then chown abc:abc \ From 555e56d12ee72554a4fcbfeb89767f8f4265f7d5 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Apr 2020 16:55:35 -0400 Subject: [PATCH 0089/2257] fix perms of transcodes --- root/etc/cont-init.d/30-config | 1 + 1 file changed, 1 insertion(+) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index d79adc0..a272525 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -11,6 +11,7 @@ chown abc:abc \ /config \ /config/* \ /data \ + /config/data/transcodes \ /transcode if [ -n "$(ls -A /data 2>/dev/null)" ]; then chown abc:abc \ From a5868beab4dc285411fd8b34ecfcb0fbe6c1448b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 13 Apr 2020 13:35:57 +0000 Subject: [PATCH 0090/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7ee4229..a83fca5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.5.3-1 +jellyfin10.5.4-1 jellyfin-ffmpeg4.2.1-5-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 From f24862fd47a38d9f1729ca19962a9750159d5d47 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 18 Apr 2020 20:13:37 -0700 Subject: [PATCH 0091/2257] add back web ci --- jenkins-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 2676788..3d027f8 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -18,7 +18,7 @@ repo_vars: - DIST_IMAGE = 'ubuntu' - MULTIARCH='true' - CI='true' - - CI_WEB='false' + - CI_WEB='true' - CI_PORT='8096' - CI_SSL='false' - CI_DELAY='120' From a9eaf38190c9a641c5bd2628ba867c6b6621f3d4 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 18 Apr 2020 20:14:46 -0700 Subject: [PATCH 0092/2257] turn web ci back on --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 349d936..db79c4a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,7 @@ pipeline { DIST_IMAGE = 'ubuntu' MULTIARCH='true' CI='true' - CI_WEB='false' + CI_WEB='true' CI_PORT='8096' CI_SSL='false' CI_DELAY='120' From fd34aceac98da75407e8bd1b1273f3b31c81f64a Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 18 Apr 2020 20:12:47 -0700 Subject: [PATCH 0093/2257] turning ci web back on --- jenkins-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 40054d7..2daed9a 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -20,7 +20,7 @@ repo_vars: - DIST_IMAGE = 'ubuntu' - MULTIARCH='true' - CI='true' - - CI_WEB='false' + - CI_WEB='true' - CI_PORT='8096' - CI_SSL='false' - CI_DELAY='120' From 296c6e5337c849df90bd81e9cec999933beae6ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 19 Apr 2020 18:35:45 +0000 Subject: [PATCH 0094/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ca1f725..03f0b96 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { DIST_IMAGE = 'ubuntu' MULTIARCH='true' CI='true' - CI_WEB='false' + CI_WEB='true' CI_PORT='8096' CI_SSL='false' CI_DELAY='120' From 52f82c3f07d17a3f34da89b0cdac634924b92ad1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 22 Apr 2020 05:31:40 +0100 Subject: [PATCH 0095/2257] Bot Updating Package Versions --- package_versions.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d19daed..e5afed8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin-ffmpeg4.2.1-5-bionic +jellyfin-ffmpeg4.2.1-7-bionic jellyfin-nightly20200408 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 @@ -150,8 +150,6 @@ libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 -libva-drm22.1.0-3 -libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 libwebp60.6.1-2 From 0da0a00b5527e4cd611110082b99e18bb45d889f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 26 Apr 2020 08:23:29 +0200 Subject: [PATCH 0096/2257] Bot Updating Package Versions --- package_versions.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a83fca5..1294c82 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin10.5.4-1 -jellyfin-ffmpeg4.2.1-5-bionic +jellyfin-ffmpeg4.2.1-7-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12 @@ -150,8 +150,6 @@ libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 -libva-drm22.1.0-3 -libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 libwebp60.6.1-2 From 32434df5a2ec3191eb2a27540bdc195f9187925b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 27 Apr 2020 01:08:43 +0000 Subject: [PATCH 0097/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1294c82..5b12f3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.5.4-1 +jellyfin10.5.5-1 jellyfin-ffmpeg4.2.1-7-bionic krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 From f8323051ccd8803b9ce3a70f9955b1d69a2cf52e Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 28 Apr 2020 16:10:17 -0400 Subject: [PATCH 0098/2257] Update MMAL device in readme --- .github/FUNDING.yml | 1 + Jenkinsfile | 142 ++++++++++++++++++++++++-------------------- README.md | 11 ++-- readme-vars.yml | 7 ++- 4 files changed, 87 insertions(+), 74 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index b91c388..e1a0207 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ +github: linuxserver open_collective: linuxserver custom: ["https://opencollective.com/jellyfin",] diff --git a/Jenkinsfile b/Jenkinsfile index 03f0b96..3e061e2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -357,7 +357,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} || :''' @@ -384,7 +386,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} || :''' @@ -549,18 +553,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}:latest + docker push ${PUSHIMAGE}:latest + 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}:latest - docker push ${PUSHIMAGE}:latest - docker push ${PUSHIMAGE}:${META_TAG} - done for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ @@ -591,59 +599,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-latest - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest - docker push ${MANIFESTIMAGE}:amd64-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:amd64-latest - docker push ${MANIFESTIMAGE}:arm32v7-latest - docker push ${MANIFESTIMAGE}:arm64v8-latest - docker manifest push --purge ${MANIFESTIMAGE}:latest || : - docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest - docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --os linux --arch arm - docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}: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}:latest - 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}:latest - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} - docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-latest - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-latest - docker push ${LEGACYIMAGE}:amd64-${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker push ${LEGACYIMAGE}:latest - docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-latest - docker push ${LEGACYIMAGE}:arm64v8-latest - 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-latest + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest + docker push ${MANIFESTIMAGE}:amd64-${META_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:amd64-latest + docker push ${MANIFESTIMAGE}:arm32v7-latest + docker push ${MANIFESTIMAGE}:arm64v8-latest + docker manifest push --purge ${MANIFESTIMAGE}:latest || : + docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest + docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : + docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}: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}:latest + 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}:latest + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} + docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-latest + docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-latest + docker push ${LEGACYIMAGE}:amd64-${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker push ${LEGACYIMAGE}:latest + docker push ${LEGACYIMAGE}:${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-latest + docker push ${LEGACYIMAGE}:arm64v8-latest + done + ''' + } sh '''#! /bin/bash for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker rmi \ diff --git a/README.md b/README.md index 89f23f9..1c283da 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ docker create \ -v /path/to/movies:/data/movies \ -v /opt/vc/lib:/opt/vc/lib `#optional` \ --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vc-mem:/dev/vc-mem `#optional` \ + --device /dev/vcsm:/dev/vcsm `#optional` \ --device /dev/vchiq:/dev/vchiq `#optional` \ --device /dev/video10:/dev/video10 `#optional` \ --device /dev/video11:/dev/video11 `#optional` \ @@ -119,7 +119,7 @@ services: - 8920:8920 #optional devices: - /dev/dri:/dev/dri #optional - - /dev/vc-mem:/dev/vc-mem #optional + - /dev/vcsm:/dev/vcsm #optional - /dev/vchiq:/dev/vchiq #optional - /dev/video10:/dev/video10 #optional - /dev/video11:/dev/video11 #optional @@ -144,7 +144,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | | `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | -| `--device /dev/vc-mem` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | +| `--device /dev/vcsm` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | | `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding. | | `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | | `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | @@ -203,10 +203,10 @@ We automatically add the necessary environment variable that will utilise all th ### OpenMAX (Raspberry Pi) -Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: +Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` ---device=/dev/vc-mem:/dev/vc-mem +--device=/dev/vcsm:/dev/vcsm --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` @@ -292,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **28.04.20:** - Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian. * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. * **11.03.20:** - Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. diff --git a/readme-vars.yml b/readme-vars.yml index aa17cee..7f0ddd1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -43,7 +43,7 @@ opt_param_volumes: opt_param_device_map: true opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } - - { device_path: "/dev/vc-mem", device_host_path: "/dev/vc-mem", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } + - { device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding." } - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } @@ -80,10 +80,10 @@ app_setup_block: | ### OpenMAX (Raspberry Pi) - Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: + Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` - --device=/dev/vc-mem:/dev/vc-mem + --device=/dev/vcsm:/dev/vcsm --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` @@ -101,6 +101,7 @@ app_setup_block: | # changelog changelogs: + - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - { date: "11.03.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } From 5d5619faa8e844b248854de16cbc20ce263341ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Apr 2020 04:16:52 +0000 Subject: [PATCH 0099/2257] 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 b91c388..e1a0207 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ +github: linuxserver open_collective: linuxserver custom: ["https://opencollective.com/jellyfin",] diff --git a/Jenkinsfile b/Jenkinsfile index db79c4a..985d7b7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -347,7 +347,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} || :''' @@ -374,7 +376,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} || :''' @@ -539,18 +543,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} \ @@ -581,59 +589,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 86eaa1ca2f063e4f01da308783c4ee2a66e46129 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 May 2020 06:23:56 +0000 Subject: [PATCH 0100/2257] 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 5b12f3f..da43adf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -99,8 +99,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 libllvm91:9-2~ubuntu18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 @@ -142,11 +142,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.39 +libudev1237-3ubuntu10.40 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 From 87ec4e1fc27127e9bfda9558e06d96bc9481f502 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 May 2020 04:22:21 +0000 Subject: [PATCH 0101/2257] 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 e5afed8..b251d8b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -99,8 +99,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 libllvm91:9-2~ubuntu18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 @@ -142,11 +142,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.39 +libudev1237-3ubuntu10.40 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 From e5b65ba5c0c607fb53a74ddd62573d60f95c781b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 May 2020 06:25:16 +0000 Subject: [PATCH 0102/2257] 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 da43adf..bbfa44d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 -apt1.6.12 -apt-utils1.6.12 +apt1.6.12ubuntu0.1 +apt-utils1.6.12ubuntu0.1 at3.1.20-3.1ubuntu2 base-files10.1ubuntu2.8 base-passwd3.5.44 @@ -41,8 +41,8 @@ jellyfin10.5.5-1 jellyfin-ffmpeg4.2.1-7-bionic 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 libass91:0.14.0-1 libassuan02.5.1-2 @@ -197,7 +197,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2019c-0ubuntu0.18.04 +tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 util-linux2.31.1-0.4ubuntu3.6 From beac6f47319b840bf5b6f0c37ab7999ed973c188 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 May 2020 00:32:34 -0400 Subject: [PATCH 0103/2257] Bot Updating Package Versions --- package_versions.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b251d8b..d3b03c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 -apt1.6.12 -apt-utils1.6.12 +apt1.6.12ubuntu0.1 +apt-utils1.6.12ubuntu0.1 at3.1.20-3.1ubuntu2 base-files10.1ubuntu2.8 base-passwd3.5.44 @@ -38,11 +38,13 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200408 +jellyfin-nightly20200524 +jellyfin-server-nightly20200524 +jellyfin-web-nightly20200524 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 libass91:0.14.0-1 libassuan02.5.1-2 @@ -197,7 +199,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2019c-0ubuntu0.18.04 +tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 util-linux2.31.1-0.4ubuntu3.6 From c08a1a0378c70d7d7346249165a197dc31ca7e80 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 May 2020 09:32:43 +0200 Subject: [PATCH 0104/2257] 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 d3b03c9..8ad962c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200524 -jellyfin-server-nightly20200524 -jellyfin-web-nightly20200524 +jellyfin-nightly20200525 +jellyfin-server-nightly20200525 +jellyfin-web-nightly20200525 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 0853677de66a59e00b960181f5a06c17c0cd42cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 May 2020 07:31:34 +0000 Subject: [PATCH 0105/2257] 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 8ad962c..71dc46d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200525 -jellyfin-server-nightly20200525 -jellyfin-web-nightly20200525 +jellyfin-nightly20200526 +jellyfin-server-nightly20200526 +jellyfin-web-nightly20200526 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 0bad092ef9fd2999e3a27ac639f54953a2cd861a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 May 2020 03:31:40 -0400 Subject: [PATCH 0106/2257] 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 71dc46d..933fad4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200526 -jellyfin-server-nightly20200526 -jellyfin-web-nightly20200526 +jellyfin-nightly20200527 +jellyfin-server-nightly20200527 +jellyfin-web-nightly20200527 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 082a175a1df5ed74bb614773a2bc166ca85ea1e2 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 27 May 2020 12:47:46 -0400 Subject: [PATCH 0107/2257] set web directory path --- README.md | 1 + readme-vars.yml | 1 + root/etc/services.d/jellyfin/run | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a3d3c52..162cc03 100644 --- a/README.md +++ b/README.md @@ -291,6 +291,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **27.05.20:** - Set web directory path. * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. * **11.03.20:** - Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). * **30.01.20:** - Add nightly tag. diff --git a/readme-vars.yml b/readme-vars.yml index 10d13d8..41a4c3d 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -99,6 +99,7 @@ app_setup_block: | # changelog changelogs: + - { date: "27.05.20:", desc: "Set web directory path." } - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - { date: "11.03.20:", desc: "Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - { date: "30.01.20:", desc: "Add nightly tag." } diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run index e369b04..2d975f1 100644 --- a/root/etc/services.d/jellyfin/run +++ b/root/etc/services.d/jellyfin/run @@ -3,7 +3,8 @@ export JELLYFIN_DATA_DIR="/config/data" \ JELLYFIN_CONFIG_DIR="/config" \ JELLYFIN_LOG_DIR="/config/log" \ -JELLYFIN_CACHE_DIR="/config/cache" +JELLYFIN_CACHE_DIR="/config/cache" \ +JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" # set umask UMASK_SET=${UMASK_SET:-022} From 45ac9b2cba98f901f58745bf710a6db9e5aeb8d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 May 2020 18:04:11 +0000 Subject: [PATCH 0108/2257] 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 933fad4..c86c7c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -144,11 +144,11 @@ libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.40 +libsystemd0237-3ubuntu10.41 libtasn1-64.13-2 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.40 +libudev1237-3ubuntu10.41 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 From 058dd74b5574253c1c86ab339647ec8ff6d08ccb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 May 2020 07:31:46 +0000 Subject: [PATCH 0109/2257] 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 c86c7c7..b104368 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200527 -jellyfin-server-nightly20200527 -jellyfin-web-nightly20200527 +jellyfin-nightly20200528 +jellyfin-server-nightly20200528 +jellyfin-web-nightly20200528 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 710a4ddc9db188096fbd922138bfb240194a9039 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 May 2020 09:27:05 +0200 Subject: [PATCH 0110/2257] Bot Updating Templated Files --- Jenkinsfile | 53 +++++++++++++++++------------------------------------ README.md | 40 ++++++++++++++++++++++------------------ 2 files changed, 39 insertions(+), 54 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 985d7b7..5a03f70 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -128,7 +128,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') { @@ -149,7 +148,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') { @@ -170,7 +168,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') { @@ -535,22 +532,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 @@ -559,7 +549,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 || : @@ -581,18 +571,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 @@ -626,26 +609,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 162cc03..0811666 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/jellyfin](https://github.com/linuxserver/docker-jellyfin) -[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-jellyfin) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/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/jellyfin) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/jellyfin) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/jellyfin) -[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) -[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/index.html) +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/container_registry) +[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) +[![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. @@ -152,7 +151,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: @@ -162,6 +161,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`. @@ -222,7 +226,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ## Docker Mods -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 a93a85c4a8e9eba6d37214c7806b70585c101f71 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 May 2020 09:33:20 +0200 Subject: [PATCH 0111/2257] 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 b104368..24b4d66 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200528 -jellyfin-server-nightly20200528 -jellyfin-web-nightly20200528 +jellyfin-nightly20200530 +jellyfin-server-nightly20200530 +jellyfin-web-nightly20200530 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -142,7 +142,7 @@ libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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.41 libtasn1-64.13-2 @@ -188,7 +188,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 perl-base5.26.1-6ubuntu0.3 pinentry-curses1.1.0-1 From 68ee0c56609ed0a3af122488c6ef36a76e44d424 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 31 May 2020 02:14:01 -0400 Subject: [PATCH 0112/2257] Bot Updating Templated Files --- Jenkinsfile | 53 +++++++++++++++++------------------------------------ README.md | 40 ++++++++++++++++++++++------------------ 2 files changed, 39 insertions(+), 54 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3e061e2..982a0af 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -138,7 +138,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') { @@ -159,7 +158,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') { @@ -180,7 +178,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') { @@ -545,22 +542,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}:latest docker push ${PUSHIMAGE}:latest @@ -569,7 +559,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}:latest || : @@ -591,18 +581,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 @@ -636,26 +619,24 @@ pipeline { docker manifest push --purge ${MANIFESTIMAGE}:latest 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}:latest - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} - docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-latest - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-latest - docker push ${LEGACYIMAGE}:amd64-${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker push ${LEGACYIMAGE}:latest - docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-latest - docker push ${LEGACYIMAGE}:arm64v8-latest - 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}:latest + docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${META_TAG} + docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-latest + docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-latest + docker push ${GITHUBIMAGE}:amd64-${META_TAG} + docker push ${GITHUBIMAGE}:arm32v7-${META_TAG} + docker push ${GITHUBIMAGE}:arm64v8-${META_TAG} + docker push ${GITHUBIMAGE}:latest + docker push ${GITHUBIMAGE}:${META_TAG} + docker push ${GITHUBIMAGE}:arm32v7-latest + docker push ${GITHUBIMAGE}:arm64v8-latest ''' } 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-latest \ diff --git a/README.md b/README.md index 1c283da..a0e9c28 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/jellyfin](https://github.com/linuxserver/docker-jellyfin) -[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-jellyfin) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/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/jellyfin) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/jellyfin) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/jellyfin) -[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) -[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/index.html) +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/container_registry) +[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) +[![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-jellyfin%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) +[![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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. @@ -152,7 +151,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: @@ -162,6 +161,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`. @@ -223,7 +227,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ## Docker Mods -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 8d22268be463ff3b8a9d7ea0dc40a77ffa13514e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 31 May 2020 06:20:51 +0000 Subject: [PATCH 0113/2257] 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 bbfa44d..8b2f9b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -140,13 +140,13 @@ libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.0.01.0.2n-1ubuntu5.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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.40 +libudev1237-3ubuntu10.41 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 @@ -186,7 +186,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 perl-base5.26.1-6ubuntu0.3 pinentry-curses1.1.0-1 From 8dc747a9a8f1a1ff73b8c91d8d68befb1b711e5e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 31 May 2020 07:32:34 +0000 Subject: [PATCH 0114/2257] 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 24b4d66..c25d5dd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200530 -jellyfin-server-nightly20200530 -jellyfin-web-nightly20200530 +jellyfin-nightly20200531 +jellyfin-server-nightly20200531 +jellyfin-web-nightly20200531 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 227b57fc79b0f01ac29347099e12d2fa8d250ae7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Jun 2020 09:31:33 +0200 Subject: [PATCH 0115/2257] 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 c25d5dd..fd9d26d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200531 -jellyfin-server-nightly20200531 -jellyfin-web-nightly20200531 +jellyfin-nightly20200601 +jellyfin-server-nightly20200601 +jellyfin-web-nightly20200601 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 3217fb05ed1d67d1610b96899264c133071ee2a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Jun 2020 07:29:37 +0000 Subject: [PATCH 0116/2257] 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 fd9d26d..91e8848 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200601 -jellyfin-server-nightly20200601 -jellyfin-web-nightly20200601 +jellyfin-nightly20200602 +jellyfin-server-nightly20200602 +jellyfin-web-nightly20200602 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 1006caad2bd911e2f3c4897ea30d412a6cb3eb64 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Jun 2020 07:27:01 +0000 Subject: [PATCH 0117/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0811666..c7c4286 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. From 86d32c6aaaead4e594f364e48fa086eabe23b8b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Jun 2020 07:33:29 +0000 Subject: [PATCH 0118/2257] 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 91e8848..cf3f1b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20180409 +ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.8 dash0.5.8-2.10 @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200602 -jellyfin-server-nightly20200602 -jellyfin-web-nightly20200602 +jellyfin-nightly20200605 +jellyfin-server-nightly20200605 +jellyfin-web-nightly20200605 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From abc1cc4fc33e11c470eab331e3277d555e9efbe4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Jun 2020 09:32:26 +0200 Subject: [PATCH 0119/2257] 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 cf3f1b0..88a90fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200605 -jellyfin-server-nightly20200605 -jellyfin-web-nightly20200605 +jellyfin-nightly20200606 +jellyfin-server-nightly20200606 +jellyfin-web-nightly20200606 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 2f93ec8a03b765f125507b4d9fa59984b4e090d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Jun 2020 02:13:57 -0400 Subject: [PATCH 0120/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0e9c28..66c6f95 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) -[![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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. From 072bca12a1dbcbee402c529349a2a23d8baec264 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Jun 2020 08:18:59 +0200 Subject: [PATCH 0121/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8b2f9b8..74ee97a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20180409 +ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.8 dash0.5.8-2.10 From 94516fbb989cf5df97ca5154ed9bb08ed676b98c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Jun 2020 03:31:39 -0400 Subject: [PATCH 0122/2257] 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 88a90fc..14713dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200606 -jellyfin-server-nightly20200606 -jellyfin-web-nightly20200606 +jellyfin-nightly20200607 +jellyfin-server-nightly20200607 +jellyfin-web-nightly20200607 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From b13d28c45c0bf841e6387757a11a566f7c94227e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Jun 2020 03:32:27 -0400 Subject: [PATCH 0123/2257] 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 14713dc..2222277 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200607 -jellyfin-server-nightly20200607 -jellyfin-web-nightly20200607 +jellyfin-nightly20200608 +jellyfin-server-nightly20200608 +jellyfin-web-nightly20200608 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From bad5ceb85001aaebf2d3844dd0419cd3d6194437 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Jun 2020 03:31:56 -0400 Subject: [PATCH 0124/2257] 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 2222277..91d76d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200608 -jellyfin-server-nightly20200608 -jellyfin-web-nightly20200608 +jellyfin-nightly20200609 +jellyfin-server-nightly20200609 +jellyfin-web-nightly20200609 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From e665804c20c9fddf3a88cbad6b39eba60274e9d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Jun 2020 03:31:31 -0400 Subject: [PATCH 0125/2257] 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 91d76d3..0c5e222 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200609 -jellyfin-server-nightly20200609 -jellyfin-web-nightly20200609 +jellyfin-nightly20200610 +jellyfin-server-nightly20200610 +jellyfin-web-nightly20200610 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From f4bd2720d8a2bcff8aafa915e557c325be027fcb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Jun 2020 03:32:24 -0400 Subject: [PATCH 0126/2257] 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 0c5e222..bd437e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200610 -jellyfin-server-nightly20200610 -jellyfin-web-nightly20200610 +jellyfin-nightly20200611 +jellyfin-server-nightly20200611 +jellyfin-web-nightly20200611 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -139,7 +139,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.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 From aceaf82cc401a1e7d45035fabadd43cdd31001f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Jun 2020 03:31:29 -0400 Subject: [PATCH 0127/2257] 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 bd437e4..5a5cdd5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200611 -jellyfin-server-nightly20200611 -jellyfin-web-nightly20200611 +jellyfin-nightly20200612 +jellyfin-server-nightly20200612 +jellyfin-web-nightly20200612 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From e5cad4d4ce23cef75ab815b2449bdc954d0378ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Jun 2020 07:33:03 +0000 Subject: [PATCH 0128/2257] 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 5a5cdd5..55551b6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200612 -jellyfin-server-nightly20200612 -jellyfin-web-nightly20200612 +jellyfin-nightly20200613 +jellyfin-server-nightly20200613 +jellyfin-web-nightly20200613 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From feee635019f6b273d10d03223bd1a63dfe620dba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Jun 2020 06:17:58 +0000 Subject: [PATCH 0129/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 74ee97a..e1a08d1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,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.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 From 39b604442242f1e33ff26a5b5934e8029031919e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Jun 2020 03:32:49 -0400 Subject: [PATCH 0130/2257] 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 55551b6..473ecda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200613 -jellyfin-server-nightly20200613 -jellyfin-web-nightly20200613 +jellyfin-nightly20200615 +jellyfin-server-nightly20200615 +jellyfin-web-nightly20200615 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 14283f39602bf98f39ee31e5a3dec66e4f6c71f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Jun 2020 07:14:13 +0200 Subject: [PATCH 0131/2257] 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 473ecda..cae7f9a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200615 -jellyfin-server-nightly20200615 -jellyfin-web-nightly20200615 +jellyfin-nightly20200617 +jellyfin-server-nightly20200617 +jellyfin-web-nightly20200617 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -63,12 +63,12 @@ libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdrm22.4.99-1ubuntu1~18.04.2 -libdrm-amdgpu12.4.99-1ubuntu1~18.04.2 -libdrm-common2.4.99-1ubuntu1~18.04.2 -libdrm-intel12.4.99-1ubuntu1~18.04.2 -libdrm-nouveau22.4.99-1ubuntu1~18.04.2 -libdrm-radeon12.4.99-1ubuntu1~18.04.2 +libdrm22.4.101-2~18.04.1 +libdrm-amdgpu12.4.101-2~18.04.1 +libdrm-common2.4.101-2~18.04.1 +libdrm-intel12.4.101-2~18.04.1 +libdrm-nouveau22.4.101-2~18.04.1 +libdrm-radeon12.4.101-2~18.04.1 libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 libexpat12.2.5-3ubuntu0.2 From 9c4124b5e42c833a351c1f3fcbce1af2ba6aebe7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Jun 2020 06:19:16 +0000 Subject: [PATCH 0132/2257] 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 e1a08d1..b707e88 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -61,12 +61,12 @@ libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdrm22.4.99-1ubuntu1~18.04.2 -libdrm-amdgpu12.4.99-1ubuntu1~18.04.2 -libdrm-common2.4.99-1ubuntu1~18.04.2 -libdrm-intel12.4.99-1ubuntu1~18.04.2 -libdrm-nouveau22.4.99-1ubuntu1~18.04.2 -libdrm-radeon12.4.99-1ubuntu1~18.04.2 +libdrm22.4.101-2~18.04.1 +libdrm-amdgpu12.4.101-2~18.04.1 +libdrm-common2.4.101-2~18.04.1 +libdrm-intel12.4.101-2~18.04.1 +libdrm-nouveau22.4.101-2~18.04.1 +libdrm-radeon12.4.101-2~18.04.1 libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 libexpat12.2.5-3ubuntu0.2 From d47d7b224941c5ee0ba3f1181c5ff12df9f4a79f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Jun 2020 11:32:27 -0400 Subject: [PATCH 0133/2257] 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 cae7f9a..c25477d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200617 -jellyfin-server-nightly20200617 -jellyfin-web-nightly20200617 +jellyfin-nightly20200622 +jellyfin-server-nightly20200622 +jellyfin-web-nightly20200622 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 62cf96ebdd65eff354e025c6696a31497aa09264 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Jun 2020 17:31:59 +0000 Subject: [PATCH 0134/2257] 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 c25477d..1f8b86a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200622 -jellyfin-server-nightly20200622 -jellyfin-web-nightly20200622 +jellyfin-nightly20200623 +jellyfin-server-nightly20200623 +jellyfin-web-nightly20200623 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From d5bcb612eafa493c58208438a31d873c2e45a6fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 28 Jun 2020 02:18:02 -0400 Subject: [PATCH 0135/2257] 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 b707e88..0ede834 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.8 +curl7.58.0-2ubuntu3.9 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -58,7 +58,7 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.8 +libcurl47.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdrm22.4.101-2~18.04.1 From af3413a695e9a2e3d4f8efc9dd07963394519631 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 5 Jul 2020 08:18:22 +0200 Subject: [PATCH 0136/2257] 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 0ede834..7b5373b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -131,7 +131,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 @@ -160,7 +160,7 @@ libx11-data2:1.6.4-3ubuntu0.2 libx11-xcb12:1.6.4-3ubuntu0.2 libx264-1522:0.152.2854+gite9a5903-2 libx265-1462.6-3 -libxau61:1.0.8-1 +libxau61:1.0.8-1ubuntu1 libxcb11.13-2~ubuntu18.04 libxcb-dri2-01.13-2~ubuntu18.04 libxcb-dri3-01.13-2~ubuntu18.04 From e6c67bc96cea9f30fe6ea2ffbe6021cdace5249d Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 10 Jul 2020 08:11:12 -0700 Subject: [PATCH 0137/2257] new package endpoints for nightly --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 4 ++-- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 876e94d..e3a7854 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,9 +30,9 @@ RUN \ mesa-va-drivers && \ echo "**** install jellyfin *****" && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-nightly"; \ + JELLYFIN="jellyfin-server-nightly jellyfin-web-nightly"; \ else \ - JELLYFIN="jellyfin-nightly=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server-nightly=${JELLYFIN_RELEASE} jellyfin-web-nightly=${JELLYFIN_RELEASE}"; \ fi && \ apt-get install -y \ ${JELLYFIN} && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3ecc686..c2c107f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,9 +30,9 @@ RUN \ libssl1.0.0 && \ echo "**** install jellyfin *****" && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-nightly"; \ + JELLYFIN="jellyfin-server-nightly jellyfin-web-nightly"; \ else \ - JELLYFIN="jellyfin-nightly=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server-nightly=${JELLYFIN_RELEASE} jellyfin-web-nightly=${JELLYFIN_RELEASE}"; \ fi && \ apt-get install -y \ ${JELLYFIN} && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 262c282..f272bed 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -33,9 +33,9 @@ RUN \ libssl1.0.0 && \ echo "**** install jellyfin *****" && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-nightly"; \ + JELLYFIN="jellyfin-server-nightly jellyfin-web-nightly"; \ else \ - JELLYFIN="jellyfin-nightly=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server-nightly=${JELLYFIN_RELEASE} jellyfin-web-nightly=${JELLYFIN_RELEASE}"; \ fi && \ apt-get install -y \ ${JELLYFIN} && \ diff --git a/Jenkinsfile b/Jenkinsfile index 5a03f70..4d9928a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-nightly' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server-nightly' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 3d027f8..762de46 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-nightly' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server-nightly' | awk -F ': ' '/Version/{print $2;exit}'" release_type: prerelease release_tag: nightly ls_branch: nightly From a0357c838ea33bbbb2a5178b918305948a1deccb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 10 Jul 2020 11:39:15 -0400 Subject: [PATCH 0138/2257] 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 1f8b86a..9fa31ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.8 +curl7.58.0-2ubuntu3.9 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -38,9 +38,8 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-nightly20200623 -jellyfin-server-nightly20200623 -jellyfin-web-nightly20200623 +jellyfin-server-nightly20200710 +jellyfin-web-nightly20200710 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -60,7 +59,7 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.8 +libcurl47.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdrm22.4.101-2~18.04.1 @@ -133,7 +132,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 @@ -162,7 +161,7 @@ libx11-data2:1.6.4-3ubuntu0.2 libx11-xcb12:1.6.4-3ubuntu0.2 libx264-1522:0.152.2854+gite9a5903-2 libx265-1462.6-3 -libxau61:1.0.8-1 +libxau61:1.0.8-1ubuntu1 libxcb11.13-2~ubuntu18.04 libxcb-dri2-01.13-2~ubuntu18.04 libxcb-dri3-01.13-2~ubuntu18.04 @@ -179,13 +178,13 @@ libxshmfence11.3-1 libzstd11.3.3+dfsg-2ubuntu1.1 libzvbi00.2.35-13 libzvbi-common0.2.35-13 -locales2.27-3ubuntu1 +locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers19.2.8-0ubuntu0~18.04.3 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 930c17783180a8b55143097a2eff5da6c936ca03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 12 Jul 2020 02:18:52 -0400 Subject: [PATCH 0139/2257] 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 7b5373b..802664c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,13 +177,13 @@ libxshmfence11.3-1 libzstd11.3.3+dfsg-2ubuntu1.1 libzvbi00.2.35-13 libzvbi-common0.2.35-13 -locales2.27-3ubuntu1 +locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers19.2.8-0ubuntu0~18.04.3 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 3a36dd53eaa4549dccb6bb14f7cff269885a6d99 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 12 Jul 2020 09:29:43 +0200 Subject: [PATCH 0140/2257] 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 9fa31ab..8b015e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-server-nightly20200710 -jellyfin-web-nightly20200710 +jellyfin-server-nightly20200712 +jellyfin-web-nightly20200712 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 6402055710495dd3fd203155dd9d7cf48c769442 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 19 Jul 2020 02:18:03 -0400 Subject: [PATCH 0141/2257] 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 802664c..eb5d5a2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -53,10 +53,10 @@ libblkid12.31.1-0.4ubuntu3.6 libbluray21:1.0.2-3 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 libcurl47.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 @@ -80,7 +80,7 @@ libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 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 libgraphite2-31.3.11-2 libgssapi3-heimdal7.5.0+dfsg-1 @@ -101,7 +101,7 @@ libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 libldap-2.4-22.4.45+dfsg-1ubuntu1.5 libldap-common2.4.45+dfsg-1ubuntu1.5 -libllvm91:9-2~ubuntu18.04.2 +libllvm101:10.0.0-4ubuntu1~18.04.1 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.6 @@ -181,7 +181,7 @@ locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.8-0ubuntu0~18.04.3 +mesa-va-drivers20.0.8-0ubuntu1~18.04.1 mount2.31.1-0.4ubuntu3.6 multiarch-support2.27-3ubuntu1.2 ncurses-base6.1-1ubuntu1.18.04 From 1b313bdbf34ffde109cf7990d16d01b121bf19da Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 07:42:55 -0700 Subject: [PATCH 0142/2257] ingest from repos and add web path to run --- Dockerfile | 25 ++++++++----------------- Dockerfile.aarch64 | 21 +++++++++------------ Dockerfile.armhf | 19 +++++++------------ jenkins-vars.yml | 6 ++---- root/etc/services.d/jellyfin/run | 3 ++- 5 files changed, 28 insertions(+), 46 deletions(-) diff --git a/Dockerfile b/Dockerfile index 891e5f3..82223bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,32 +12,23 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** add jellyfin deps *****" && \ + echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ i965-va-driver \ - jellyfin-ffmpeg \ + ${JELLYFIN} \ libfontconfig1 \ libfreetype6 \ - libssl1.0.0 \ + libssl1.1 \ mesa-va-drivers && \ - echo "**** install jellyfin *****" && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET "https://api.github.com/repos/jellyfin/jellyfin/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ - fi && \ - VERSION=$(echo "${JELLYFIN_RELEASE}" | sed 's/^v//g') && \ - curl -o \ - /tmp/jellyfin.deb -L \ - "https://github.com/jellyfin/jellyfin/releases/download/v${VERSION}/jellyfin_${VERSION}-1_ubuntu-amd64.deb" && \ - dpkg -i /tmp/jellyfin.deb && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d68d57a..d201412 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -16,28 +16,25 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ gnupg && \ - echo "**** add jellyfin deps *****" && \ + echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - jellyfin-ffmpeg \ + ${JELLYFIN} \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libssl1.0.0 && \ - echo "**** install jellyfin *****" && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET "https://api.github.com/repos/jellyfin/jellyfin/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ - fi && \ - VERSION=$(echo "${JELLYFIN_RELEASE}" | sed 's/^v//g') && \ - curl -o \ - /tmp/jellyfin.deb -L \ - "https://github.com/jellyfin/jellyfin/releases/download/v${VERSION}/jellyfin_${VERSION}-1_ubuntu-arm64.deb" && \ - dpkg -i /tmp/jellyfin.deb && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 9523d9f..99b44d3 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -16,31 +16,26 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ gnupg && \ - echo "**** add jellyfin deps *****" && \ + echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - jellyfin-ffmpeg \ + ${JELLYFIN} \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ libssl1.0.0 && \ - echo "**** install jellyfin *****" && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET "https://api.github.com/repos/jellyfin/jellyfin/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ - fi && \ - VERSION=$(echo "${JELLYFIN_RELEASE}" | sed 's/^v//g') && \ - curl -o \ - /tmp/jellyfin.deb -L \ - "https://github.com/jellyfin/jellyfin/releases/download/v${VERSION}/jellyfin_${VERSION}-1_ubuntu-armhf.deb" && \ - dpkg -i /tmp/jellyfin.deb && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 2daed9a..3249901 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -2,14 +2,12 @@ # jenkins variables project_name: docker-jellyfin -external_type: github_stable +external_type: na +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" release_type: stable release_tag: latest ls_branch: master repo_vars: - - EXT_GIT_BRANCH = 'master' - - EXT_USER = 'jellyfin' - - EXT_REPO = 'jellyfin' - BUILD_VERSION_ARG = 'JELLYFIN_RELEASE' - LS_USER = 'linuxserver' - LS_REPO = 'docker-jellyfin' diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run index e369b04..b222572 100644 --- a/root/etc/services.d/jellyfin/run +++ b/root/etc/services.d/jellyfin/run @@ -11,4 +11,5 @@ umask "$UMASK_SET" exec \ s6-setuidgid abc /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg + --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg \ + --webdir=/usr/share/jellyfin/web From 075f0925fd4cadf4db53761a8dda08fb9d510481 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 07:43:36 -0700 Subject: [PATCH 0143/2257] templating --- Jenkinsfile | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 982a0af..236b646 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,9 +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') - EXT_GIT_BRANCH = 'master' - EXT_USER = 'jellyfin' - EXT_REPO = 'jellyfin' BUILD_VERSION_ARG = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -101,23 +98,16 @@ pipeline { /* ######################## External Release Tagging ######################## */ - // If this is a stable github release use the latest endpoint from github to determine the ext tag - stage("Set ENV github_stable"){ - steps{ - script{ - env.EXT_RELEASE = sh( - script: '''curl -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases/latest | jq -r '. | .tag_name' ''', - 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 - } - } + // 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 -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', + returnStdout: true).trim() + env.RELEASE_LINK = 'custom_command' + } + } } // Sanitize the release tag and strip illegal docker or github characters stage("Sanitize tag"){ @@ -672,11 +662,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/latest | jq '. |.body' | sed 's:^.\\(.*\\).$:\\1:' > releasebody.json + echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "target_commitish": "master",\ "name": "'${EXT_RELEASE_CLEAN}'-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 c406a696a10994d8595dbbd371e71e95912b1bf3 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 07:46:38 -0700 Subject: [PATCH 0144/2257] forgot pulling out gnupg when testing rebase to focal --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 82223bf..40d737a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,10 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ From a6f6d7bde004c1dfee8bb023bcb53d647c996026 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 07:47:52 -0700 Subject: [PATCH 0145/2257] update readme --- README.md | 1 + readme-vars.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 66c6f95..e1e83d9 100644 --- a/README.md +++ b/README.md @@ -296,6 +296,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **22.07.20:** - Ingest releases from Jellyfin repo. * **28.04.20:** - Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian. * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. * **11.03.20:** - Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). diff --git a/readme-vars.yml b/readme-vars.yml index 7f0ddd1..1a22461 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -101,6 +101,7 @@ app_setup_block: | # changelog changelogs: + - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - { date: "11.03.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } From 7fc983e36f203b9a823c5e1bc188218ee872a270 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 08:21:04 -0700 Subject: [PATCH 0146/2257] use bionic repo for version command --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 236b646..f4b35d9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 3249901..6b1b060 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" release_type: stable release_tag: latest ls_branch: master From 4bbf461bf3e852cada20f0b545a1da88bbfc4c03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 21 Jul 2020 15:26:23 +0000 Subject: [PATCH 0147/2257] Bot Updating Package Versions --- package_versions.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index eb5d5a2..20dcbc7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.5.5-1 -jellyfin-ffmpeg4.2.1-7-bionic +jellyfin10.6.0-2 +jellyfin-ffmpeg4.3.1-1-bionic +jellyfin-server10.6.0-2 +jellyfin-web10.6.0-1 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -139,7 +141,6 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 -libssl1.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 libsystemd0237-3ubuntu10.41 @@ -150,6 +151,7 @@ libudev1237-3ubuntu10.41 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 +libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 libwebp60.6.1-2 @@ -186,6 +188,7 @@ mount2.31.1-0.4ubuntu3.6 multiarch-support2.27-3ubuntu1.2 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 +ocl-icd-libopencl12.2.11-1ubuntu1 openssl1.1.1-1ubuntu2.1~18.04.6 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.3 From 8491af4a841bdb305a63f3dd362a97a18a3f6e96 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 22:41:01 -0700 Subject: [PATCH 0148/2257] ingest unstable for nightly tag --- Dockerfile | 21 +++++++++++---------- Dockerfile.aarch64 | 23 +++++++++++++---------- Dockerfile.armhf | 19 ++++++++++--------- Jenkinsfile | 2 +- README.md | 3 ++- jenkins-vars.yml | 2 +- readme-vars.yml | 3 ++- 7 files changed, 40 insertions(+), 33 deletions(-) diff --git a/Dockerfile b/Dockerfile index e3a7854..0ba7e27 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,26 +16,27 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ gnupg && \ - echo "**** add jellyfin deps *****" && \ + echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ i965-va-driver \ + ${JELLYFIN} \ jellyfin-ffmpeg \ + jellyfin-server \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ - libssl1.0.0 \ + libssl1.1 \ mesa-va-drivers && \ - echo "**** install jellyfin *****" && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server-nightly jellyfin-web-nightly"; \ - else \ - JELLYFIN="jellyfin-server-nightly=${JELLYFIN_RELEASE} jellyfin-web-nightly=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get install -y \ - ${JELLYFIN} && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index c2c107f..fae873c 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -16,26 +16,29 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ gnupg && \ - echo "**** add jellyfin deps *****" && \ + echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ + ${JELLYFIN} \ jellyfin-ffmpeg \ + jellyfin-server \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ - libssl1.0.0 && \ - echo "**** install jellyfin *****" && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server-nightly jellyfin-web-nightly"; \ - else \ - JELLYFIN="jellyfin-server-nightly=${JELLYFIN_RELEASE} jellyfin-web-nightly=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get install -y \ - ${JELLYFIN} && \ + libssl1.1 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f272bed..00fd818 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -16,29 +16,30 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ gnupg && \ - echo "**** add jellyfin deps *****" && \ + echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ + ${JELLYFIN} \ jellyfin-ffmpeg \ + jellyfin-server \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ libssl1.0.0 && \ - echo "**** install jellyfin *****" && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server-nightly jellyfin-web-nightly"; \ - else \ - JELLYFIN="jellyfin-server-nightly=${JELLYFIN_RELEASE} jellyfin-web-nightly=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get install -y \ - ${JELLYFIN} && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Jenkinsfile b/Jenkinsfile index 4d9928a..5f141ab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server-nightly' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index c7c4286..61c43e4 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Jellyfin releases | -| nightly | Nightly Jellyfin releases | +| nightly | Unstable Jellyfin releases | ## Usage @@ -295,6 +295,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **22.07.20:** - Install nightly from unstable. * **27.05.20:** - Set web directory path. * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. * **11.03.20:** - Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`). diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 762de46..ad52b0f 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server-nightly' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" release_type: prerelease release_tag: nightly ls_branch: nightly diff --git a/readme-vars.yml b/readme-vars.yml index 41a4c3d..d8f1c22 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -17,7 +17,7 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Jellyfin releases" } - - { tag: "nightly", desc: "Nightly Jellyfin releases" } + - { tag: "nightly", desc: "Unstable Jellyfin releases" } # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc @@ -99,6 +99,7 @@ app_setup_block: | # changelog changelogs: + - { date: "22.07.20:", desc: "Install nightly from unstable." } - { date: "27.05.20:", desc: "Set web directory path." } - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - { date: "11.03.20:", desc: "Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } From ba990e0c527f93bbb600909b122ba70d80a77890 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 21 Jul 2020 22:42:22 -0700 Subject: [PATCH 0149/2257] use new libssl --- Dockerfile.armhf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 00fd818..eb0df55 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -39,7 +39,7 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl1.0.0 && \ + libssl1.1 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From 8d3a78ba2fa738c8c4d47742ffe3cf266ef9a2ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 22 Jul 2020 15:58:56 -0400 Subject: [PATCH 0150/2257] Bot Updating Package Versions --- package_versions.txt | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8b015e7..a2016c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,9 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin-ffmpeg4.2.1-7-bionic -jellyfin-server-nightly20200712 -jellyfin-web-nightly20200712 +jellyfin20200722.17-unstable +jellyfin-ffmpeg4.3.1-1-bionic +jellyfin-server20200722.17-unstable +jellyfin-web20200722.9-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -54,10 +55,10 @@ libblkid12.31.1-0.4ubuntu3.6 libbluray21:1.0.2-3 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 libcurl47.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 @@ -81,7 +82,7 @@ libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 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 libgraphite2-31.3.11-2 libgssapi3-heimdal7.5.0+dfsg-1 @@ -100,9 +101,9 @@ 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 -libllvm91:9-2~ubuntu18.04.2 +libldap-2.4-22.4.45+dfsg-1ubuntu1.6 +libldap-common2.4.45+dfsg-1ubuntu1.6 +libllvm101:10.0.0-4ubuntu1~18.04.1 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.6 @@ -140,7 +141,6 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 -libssl1.0.01.0.2n-1ubuntu5.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 libsystemd0237-3ubuntu10.41 @@ -151,6 +151,7 @@ libudev1237-3ubuntu10.41 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 +libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 libwebp60.6.1-2 @@ -182,11 +183,12 @@ locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mesa-va-drivers19.2.8-0ubuntu0~18.04.3 +mesa-va-drivers20.0.8-0ubuntu1~18.04.1 mount2.31.1-0.4ubuntu3.6 multiarch-support2.27-3ubuntu1.2 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 +ocl-icd-libopencl12.2.11-1ubuntu1 openssl1.1.1-1ubuntu2.1~18.04.6 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.3 From 53e3b07f04a01c7c2beb9a80158b187a4a8aa05e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 26 Jul 2020 02:18:00 -0400 Subject: [PATCH 0151/2257] 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 20dcbc7..8b1cbba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -101,8 +101,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 libllvm101:10.0.0-4ubuntu1~18.04.1 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 From bfbba03ce06933ecfc17ddd4bcf6f2d1dd80695a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 28 Jul 2020 01:07:23 +0000 Subject: [PATCH 0152/2257] 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 8b1cbba..5745149 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.6.0-2 +jellyfin10.6.1-1 jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server10.6.0-2 -jellyfin-web10.6.0-1 +jellyfin-server10.6.1-1 +jellyfin-web10.6.1-1 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From c3fbea12631a7cea8e31a892172c7e82bcca1b8b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Jul 2020 04:27:06 +0000 Subject: [PATCH 0153/2257] 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 a2016c9..c8c7c6a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200722.17-unstable +jellyfin20200729.2-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200722.17-unstable -jellyfin-web20200722.9-unstable +jellyfin-server20200729.2-unstable +jellyfin-web20200729.1-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From bd402174b97c6cd2a1b4e7d8d266266dd496d2fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 Aug 2020 06:14:05 +0000 Subject: [PATCH 0154/2257] Bot Updating Templated Files --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f4b35d9..b5cf990 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 master 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=master -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 d9327f51e586a46e539b9a40a2c5cb9744c9b1f1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 Aug 2020 06:15:15 +0000 Subject: [PATCH 0155/2257] 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..cbea149 --- /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-jellyfin/.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-jellyfin/.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 0cefe54aa06c9525202f64ded2e6194f6c3d75ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 Aug 2020 06:20:40 +0000 Subject: [PATCH 0156/2257] 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 5745149..92d4600 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -103,7 +103,7 @@ libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 libldap-2.4-22.4.45+dfsg-1ubuntu1.6 libldap-common2.4.45+dfsg-1ubuntu1.6 -libllvm101:10.0.0-4ubuntu1~18.04.1 +libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.6 @@ -133,7 +133,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 2db1b45267b6a32a9ce0237da8578aacc42e8821 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 Aug 2020 22:07:18 -0400 Subject: [PATCH 0157/2257] 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 92d4600..d8561e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.6.1-1 +jellyfin10.6.2-1 jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server10.6.1-1 -jellyfin-web10.6.1-1 +jellyfin-server10.6.2-1 +jellyfin-web10.6.2-1 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From afe03272a3c107641a1b363eb2f0b8f1e2e013e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Aug 2020 04:16:54 +0000 Subject: [PATCH 0158/2257] Bot Updating Templated Files --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5f141ab..a5aa6a0 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 df7a304d7381e08f12987700e42846d78bde1d26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Aug 2020 04:17:47 +0000 Subject: [PATCH 0159/2257] 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..cbea149 --- /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-jellyfin/.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-jellyfin/.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 51f193fa1e6dc03601fbac34f3f0f17d2ed92adc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Aug 2020 04:22:52 +0000 Subject: [PATCH 0160/2257] 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 c8c7c6a..388835b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200729.2-unstable +jellyfin20200805.4-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200729.2-unstable -jellyfin-web20200729.1-unstable +jellyfin-server20200805.2-unstable +jellyfin-web20200805.4-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -103,7 +103,7 @@ libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 libldap-2.4-22.4.45+dfsg-1ubuntu1.6 libldap-common2.4.45+dfsg-1ubuntu1.6 -libllvm101:10.0.0-4ubuntu1~18.04.1 +libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.6 @@ -133,7 +133,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 6081ef012002970af830c71e1522a7d9ed6e916e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Aug 2020 06:21:05 +0200 Subject: [PATCH 0161/2257] 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 388835b..38f96de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200805.4-unstable +jellyfin20200811.25-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200805.2-unstable -jellyfin-web20200805.4-unstable +jellyfin-server20200811.8-unstable +jellyfin-web20200811.25-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From c8794ff553c3428436fafe91d07be992cd23ae52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Aug 2020 02:19:01 -0400 Subject: [PATCH 0162/2257] 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 d8561e4..a38a0c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-utils1.6.12ubuntu0.1 at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.8 +base-files10.1ubuntu2.9 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 @@ -143,11 +143,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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.41 +libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 From d1f20a9744db81c657228ca0781fc4dcd4c42b24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Aug 2020 21:06:58 -0400 Subject: [PATCH 0163/2257] 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 a38a0c2..75e668a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.6.2-1 +jellyfin10.6.3-1 jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server10.6.2-1 -jellyfin-web10.6.2-1 +jellyfin-server10.6.3-1 +jellyfin-web10.6.3-1 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From d90b15bd50fca273a71c06f7a75550ceaea055cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Aug 2020 04:22:18 +0000 Subject: [PATCH 0164/2257] 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 38f96de..8cdd95e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-utils1.6.12ubuntu0.1 at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.8 +base-files10.1ubuntu2.9 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200811.25-unstable +jellyfin20200818.19-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200811.8-unstable -jellyfin-web20200811.25-unstable +jellyfin-server20200818.9-unstable +jellyfin-web20200818.19-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -143,11 +143,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 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.41 +libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libva22.1.0-3 From 11ad747cbc9161576eb8efb0fee57f58b881bef8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 23 Aug 2020 02:13:48 -0400 Subject: [PATCH 0165/2257] 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 cbea149..973cce2 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 ef90716eee218a0c83681deb4343864120fef8a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 23 Aug 2020 02:19:52 -0400 Subject: [PATCH 0166/2257] 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 75e668a..243ff7d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.9 +curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -60,7 +60,7 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.9 +libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdrm22.4.101-2~18.04.1 From 2eba1bebca561e2cc8ef777bfb4acfb5ebb5cbd6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 Aug 2020 00:16:59 -0400 Subject: [PATCH 0167/2257] 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 cbea149..973cce2 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 2f3851121c7c2e1ce5132b681aa4b8e06711425b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 Aug 2020 00:23:23 -0400 Subject: [PATCH 0168/2257] 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 8cdd95e..726fd7c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.9 +curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200818.19-unstable +jellyfin20200825.12-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200818.9-unstable -jellyfin-web20200818.19-unstable +jellyfin-server20200825.12-unstable +jellyfin-web20200825.11-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -60,7 +60,7 @@ libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.9 +libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdrm22.4.101-2~18.04.1 From 10447ea6307ca13ceeecb127d8a4efcd5b78389f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 30 Aug 2020 19:06:30 -0400 Subject: [PATCH 0169/2257] 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 243ff7d..3983b37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin10.6.3-1 +jellyfin10.6.4-1 jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server10.6.3-1 -jellyfin-web10.6.3-1 +jellyfin-server10.6.4-1 +jellyfin-web10.6.4-1 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 9d06cd36b39dbe898a6332537b58898acf586705 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 2 Sep 2020 04:21:36 +0000 Subject: [PATCH 0170/2257] 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 726fd7c..15d9bd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200825.12-unstable +jellyfin20200902.1-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200825.12-unstable -jellyfin-web20200825.11-unstable +jellyfin-server20200901.24-unstable +jellyfin-web20200902.1-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From dee71ac3e956a3ce62027ae9d1a74710fcb2a45f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Sep 2020 07:18:05 +0100 Subject: [PATCH 0171/2257] 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 3983b37..438e1b6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -157,9 +157,9 @@ libvorbisenc21.3.5-4.2 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.2 -libx11-data2:1.6.4-3ubuntu0.2 -libx11-xcb12:1.6.4-3ubuntu0.2 +libx11-62:1.6.4-3ubuntu0.3 +libx11-data2:1.6.4-3ubuntu0.3 +libx11-xcb12:1.6.4-3ubuntu0.3 libx264-1522:0.152.2854+gite9a5903-2 libx265-1462.6-3 libxau61:1.0.8-1ubuntu1 From 513bb624eab9faa0de3a34d444fe255389218de3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Sep 2020 00:21:16 -0400 Subject: [PATCH 0172/2257] 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 15d9bd4..9d6c773 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200902.1-unstable +jellyfin20200909.2-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200901.24-unstable -jellyfin-web20200902.1-unstable +jellyfin-server20200905.6-unstable +jellyfin-web20200909.2-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -157,9 +157,9 @@ libvorbisenc21.3.5-4.2 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.2 -libx11-data2:1.6.4-3ubuntu0.2 -libx11-xcb12:1.6.4-3ubuntu0.2 +libx11-62:1.6.4-3ubuntu0.3 +libx11-data2:1.6.4-3ubuntu0.3 +libx11-xcb12:1.6.4-3ubuntu0.3 libx264-1522:0.152.2854+gite9a5903-2 libx265-1462.6-3 libxau61:1.0.8-1ubuntu1 From 5f887681711659c0a2b86a093a147f022e01f45b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Sep 2020 07:19:20 +0100 Subject: [PATCH 0173/2257] 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 438e1b6..2878362 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-utils1.6.12ubuntu0.1 at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.9 +base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 @@ -117,10 +117,10 @@ libnuma12.0.11-2.1ubuntu0.1 libogg01.3.2-1 libopus01.1.2-1ubuntu1 libp11-kit00.23.9-2 -libpam0g1.1.8-3.6ubuntu2.18.04.1 -libpam-modules1.1.8-3.6ubuntu2.18.04.1 -libpam-modules-bin1.1.8-3.6ubuntu2.18.04.1 -libpam-runtime1.1.8-3.6ubuntu2.18.04.1 +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 libpciaccess00.14-1 libpcre32:8.39-9 libpixman-1-00.34.0-2 From 1c8502a17717981b07d817a07a11db170210575f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Sep 2020 05:22:03 +0100 Subject: [PATCH 0174/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9d6c773..5b7c8aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-utils1.6.12ubuntu0.1 at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.9 +base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200909.2-unstable +jellyfin20200915.18-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200905.6-unstable -jellyfin-web20200909.2-unstable +jellyfin-server20200913.1-unstable +jellyfin-web20200915.18-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -117,10 +117,10 @@ libnuma12.0.11-2.1ubuntu0.1 libogg01.3.2-1 libopus01.1.2-1ubuntu1 libp11-kit00.23.9-2 -libpam0g1.1.8-3.6ubuntu2.18.04.1 -libpam-modules1.1.8-3.6ubuntu2.18.04.1 -libpam-modules-bin1.1.8-3.6ubuntu2.18.04.1 -libpam-runtime1.1.8-3.6ubuntu2.18.04.1 +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 libpciaccess00.14-1 libpcre32:8.39-9 libpixman-1-00.34.0-2 From 33482b68eff48dcde7696fe4ae00caae5bf6f381 Mon Sep 17 00:00:00 2001 From: IronicBadger Date: Thu, 17 Sep 2020 21:24:09 -0400 Subject: [PATCH 0175/2257] proposed changes for extra optional ports as per #60 --- readme-vars.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 1a22461..11c2c44 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -51,7 +51,8 @@ opt_param_devices: opt_param_usage_include_ports: true opt_param_ports: - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)." } - + - { external_port: "1900/udp", internal_port: "1900/udp", port_desc: "#optional - Service discovery and DNLA." } + - { external_port: "7539/udp", internal_port: "7539/udp", port_desc: "#optional - Client discovery - Allows clients to discover Jellyfin on the local network." } # application setup block app_setup_block_enabled: true @@ -98,6 +99,10 @@ app_setup_block: | --device=/dev/video12:/dev/video12 ``` + ## Optional extra ports + + The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has several additional ports that can provide auto discovery. + # changelog changelogs: From c5ae0a99a2fdbed28dc2079b72611d3a9ed50ad8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Sep 2020 02:18:03 -0400 Subject: [PATCH 0176/2257] 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 2878362..7019065 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ 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 e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.6 @@ -22,16 +22,16 @@ 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 From 8614537e31896967f483b54bd429ec48e0732174 Mon Sep 17 00:00:00 2001 From: alexktz Date: Sun, 20 Sep 2020 15:48:53 -0400 Subject: [PATCH 0177/2257] incorporates changes from PR60 discussed with original author --- readme-vars.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 11c2c44..b41e6c6 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -50,9 +50,20 @@ opt_param_devices: - { device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } opt_param_usage_include_ports: true opt_param_ports: - - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)." } - - { external_port: "1900/udp", internal_port: "1900/udp", port_desc: "#optional - Service discovery and DNLA." } - - { external_port: "7539/udp", internal_port: "7539/udp", port_desc: "#optional - Client discovery - Allows clients to discover Jellyfin on the local network." } + - { external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)." } + - { external_port: "7359/udp", internal_port: "7359/udp", port_desc: "Optional - Allows clients to discover Jellyfin on the local network." } + - { external_port: "1900/udp", internal_port: "1900/udp", port_desc: "Optional - Service discovery used by DNLA and clients." } +optional_parameters: | + The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. + + Service Discovery (`1900/udp`) - Since client auto-discover would break if this option were configurable, you cannot change this in the settings at this time. DLNA also uses this port and is required to be in the local subnet. + + Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local network. A broadcast message to this port with "Who is Jellyfin Server?" will get a JSON response that includes the server address, ID, and name. + + ``` + -p 7359:7359/udp \ + -p 1900:1900/udp \ + ``` # application setup block app_setup_block_enabled: true @@ -99,10 +110,6 @@ app_setup_block: | --device=/dev/video12:/dev/video12 ``` - ## Optional extra ports - - The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has several additional ports that can provide auto discovery. - # changelog changelogs: From 29f31f2b3719ac22baf72f280d3d9b09b2d19c88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Sep 2020 00:11:07 +0100 Subject: [PATCH 0178/2257] Bot Updating Templated Files --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e1e83d9..49a2d29 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,8 @@ docker create \ -e UMASK_SET=<022> `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ + -p 7359/udp:7359/udp `#optional` \ + -p 1900/udp:1900/udp `#optional` \ -v /path/to/library:/config \ -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ @@ -116,6 +118,8 @@ services: ports: - 8096:8096 - 8920:8920 #optional + - 7359/udp:7359/udp #optional + - 1900/udp:1900/udp #optional devices: - /dev/dri:/dev/dri #optional - /dev/vcsm:/dev/vcsm #optional @@ -133,7 +137,9 @@ Container images are configured using parameters passed at runtime (such as thos | Parameter | Function | | :----: | --- | | `-p 8096` | Http webUI. | -| `-p 8920` | Https webUI (you need to set up your own certificate). | +| `-p 8920` | Optional - Https webUI (you need to set up your own certificate). | +| `-p 7359/udp` | Optional - Allows clients to discover Jellyfin on the local network. | +| `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | | `-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 | @@ -166,6 +172,20 @@ Will set the environment variable `PASSWORD` based on the contents of the `/run/ 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. +## Optional Parameters + +The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. + +Service Discovery (`1900/udp`) - Since client auto-discover would break if this option were configurable, you cannot change this in the settings at this time. DLNA also uses this port and is required to be in the local subnet. + +Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local network. A broadcast message to this port with "Who is Jellyfin Server?" will get a JSON response that includes the server address, ID, and name. + +``` + -p 7359:7359/udp \ + -p 1900:1900/udp \ +``` + + ## 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 a9f3b4155c8058c5b8ed31e5556dd3fe1acbefb2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Sep 2020 00:21:35 -0400 Subject: [PATCH 0179/2257] 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 5b7c8aa..c01b5a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ 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 e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.6 @@ -22,25 +22,25 @@ 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 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200915.18-unstable +jellyfin20200922.5-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200913.1-unstable -jellyfin-web20200915.18-unstable +jellyfin-server20200921.7-unstable +jellyfin-web20200922.5-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 005c13fcc344b21d762d7d8260faa63e8ba94c0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Sep 2020 07:18:06 +0100 Subject: [PATCH 0180/2257] 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 7019065..2b65f5d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ at3.1.20-3.1ubuntu2 base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.6 +bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 @@ -17,7 +17,7 @@ diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.3 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.6 +fdisk2.31.1-0.4ubuntu3.7 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -51,7 +51,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.6 +libblkid12.31.1-0.4ubuntu3.7 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -73,7 +73,7 @@ libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 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 @@ -106,7 +106,7 @@ libldap-common2.4.45+dfsg-1ubuntu1.6 libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.6 +libmount12.31.1-0.4ubuntu3.7 libmp3lame03.100-2 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -138,7 +138,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 @@ -149,7 +149,7 @@ libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.6 +libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 @@ -184,7 +184,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers20.0.8-0ubuntu1~18.04.1 -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 @@ -203,5 +203,5 @@ tar1.29b-2ubuntu0.1 tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 -util-linux2.31.1-0.4ubuntu3.6 +util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From 4d50aca6895af42e15e819acb5e1dedef3cc9d54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Sep 2020 04:22:25 +0000 Subject: [PATCH 0181/2257] 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 c01b5a0..f4fc310 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ at3.1.20-3.1ubuntu2 base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.6 +bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 @@ -17,7 +17,7 @@ diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.3 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.6 +fdisk2.31.1-0.4ubuntu3.7 findutils4.6.0+git+20170828-2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200922.5-unstable +jellyfin20200929.17-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200921.7-unstable -jellyfin-web20200922.5-unstable +jellyfin-server20200927.6-unstable +jellyfin-web20200929.17-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -51,7 +51,7 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.6 +libblkid12.31.1-0.4ubuntu3.7 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -73,7 +73,7 @@ libedit23.1-20170329-1 libelf10.170-0.4ubuntu0.1 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 @@ -106,7 +106,7 @@ libldap-common2.4.45+dfsg-1ubuntu1.6 libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.6 +libmount12.31.1-0.4ubuntu3.7 libmp3lame03.100-2 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 @@ -138,7 +138,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 @@ -149,7 +149,7 @@ libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.6 +libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 @@ -184,7 +184,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers20.0.8-0ubuntu1~18.04.1 -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 @@ -203,5 +203,5 @@ tar1.29b-2ubuntu0.1 tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 -util-linux2.31.1-0.4ubuntu3.6 +util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From d2d47e2a889a6bcd77f160f4cf891b58c20d8a25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Oct 2020 02:13:49 -0400 Subject: [PATCH 0182/2257] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 12 +++-- .github/PULL_REQUEST_TEMPLATE.md | 10 ++-- .github/workflows/greetings.yml | 4 +- Jenkinsfile | 28 +++++++++- README.md | 92 +++++++++++++++++--------------- 5 files changed, 91 insertions(+), 55 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 1d3fb7a..ad69165 100755 --- 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..ef2f1bc 100755 --- 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-jellyfin/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 973cce2..ed5690e 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-jellyfin/.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-jellyfin/.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-jellyfin/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-jellyfin/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Jenkinsfile b/Jenkinsfile index b5cf990..cd80562 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}:latest + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} docker push ${PUSHIMAGE}:latest 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}:latest || : done ''' @@ -592,12 +598,18 @@ pipeline { docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-latest docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest + 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-latest docker push ${MANIFESTIMAGE}:arm32v7-latest docker push ${MANIFESTIMAGE}:arm64v8-latest + 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}:latest || : docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --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}:latest 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-latest docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-latest + 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-latest docker push ${GITHUBIMAGE}:arm64v8-latest + 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=master -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 49a2d29..fd495aa 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ + + + [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") @@ -66,39 +69,11 @@ This image provides various versions that are available via tags. `latest` tag u Here are some example snippets to help you get started creating a container. -### docker - -``` -docker create \ - --name=jellyfin \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -e UMASK_SET=<022> `#optional` \ - -p 8096:8096 \ - -p 8920:8920 `#optional` \ - -p 7359/udp:7359/udp `#optional` \ - -p 1900/udp:1900/udp `#optional` \ - -v /path/to/library:/config \ - -v /path/to/tvseries:/data/tvshows \ - -v /path/to/movies:/data/movies \ - -v /opt/vc/lib:/opt/vc/lib `#optional` \ - --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vcsm:/dev/vcsm `#optional` \ - --device /dev/vchiq:/dev/vchiq `#optional` \ - --device /dev/video10:/dev/video10 `#optional` \ - --device /dev/video11:/dev/video11 `#optional` \ - --device /dev/video12:/dev/video12 `#optional` \ - --restart unless-stopped \ - linuxserver/jellyfin -``` - - -### docker-compose +### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose)) Compatible with docker-compose v2 schemas. -``` +```yaml --- version: "2.1" services: @@ -130,6 +105,34 @@ services: restart: unless-stopped ``` +### docker cli + +``` +docker run -d \ + --name=jellyfin \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -e UMASK_SET=<022> `#optional` \ + -p 8096:8096 \ + -p 8920:8920 `#optional` \ + -p 7359/udp:7359/udp `#optional` \ + -p 1900/udp:1900/udp `#optional` \ + -v /path/to/library:/config \ + -v /path/to/tvseries:/data/tvshows \ + -v /path/to/movies:/data/movies \ + -v /opt/vc/lib:/opt/vc/lib `#optional` \ + --device /dev/dri:/dev/dri `#optional` \ + --device /dev/vcsm:/dev/vcsm `#optional` \ + --device /dev/vchiq:/dev/vchiq `#optional` \ + --device /dev/video10:/dev/video10 `#optional` \ + --device /dev/video11:/dev/video11 `#optional` \ + --device /dev/video12:/dev/video12 `#optional` \ + --restart unless-stopped \ + linuxserver/jellyfin +``` + + ## 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. @@ -247,9 +250,9 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ## 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%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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=jellyfin&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 @@ -267,14 +270,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/jellyfin` -* Stop the running container: `docker stop jellyfin` -* Delete the container: `docker rm jellyfin` -* 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 jellyfin` -* 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 jellyfin` @@ -282,7 +277,14 @@ Below are the instructions for updating containers: * or update a single container: `docker-compose up -d jellyfin` * 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/jellyfin` +* Stop the running container: `docker stop jellyfin` +* Delete the container: `docker rm jellyfin` +* 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 \ @@ -290,11 +292,13 @@ Below are the instructions for updating containers: containrrr/watchtower \ --run-once jellyfin ``` - -**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 9b92ecb2c62187482fae9abaa2729ae5bce3d603 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Oct 2020 07:14:51 +0100 Subject: [PATCH 0183/2257] 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..8af71ca --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,122 @@ +# Contributing to jellyfin + +## 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-jellyfin/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-jellyfin) + +### 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-jellyfin.git +cd docker-jellyfin +docker build \ + --no-cache \ + --pull \ + -t linuxserver/jellyfin: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-jellyfin/tree/master/root), add an entry to the changelog + +```yml +changelogs: + - { date: "DD.MM.YY:", desc: "Added some love to templates" } +``` From 8421351b955dd02efd3f79ab3ac90f2fe5022c6a Mon Sep 17 00:00:00 2001 From: Roxedus Date: Sun, 4 Oct 2020 18:54:13 +0200 Subject: [PATCH 0184/2257] Fix incorrect syntax from #61 --- readme-vars.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index b41e6c6..6a21bb1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -51,8 +51,8 @@ opt_param_devices: opt_param_usage_include_ports: true opt_param_ports: - { external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)." } - - { external_port: "7359/udp", internal_port: "7359/udp", port_desc: "Optional - Allows clients to discover Jellyfin on the local network." } - - { external_port: "1900/udp", internal_port: "1900/udp", port_desc: "Optional - Service discovery used by DNLA and clients." } + - { external_port: "7359", internal_port: "7359/udp", port_desc: "Optional - Allows clients to discover Jellyfin on the local network." } + - { external_port: "1900", internal_port: "1900/udp", port_desc: "Optional - Service discovery used by DNLA and clients." } optional_parameters: | The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. From 5f7a20a3abca008af658b54e627c9595059dfc24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Oct 2020 19:48:51 +0100 Subject: [PATCH 0185/2257] Bot Updating Templated Files --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd495aa..cca7876 100644 --- a/README.md +++ b/README.md @@ -93,8 +93,8 @@ services: ports: - 8096:8096 - 8920:8920 #optional - - 7359/udp:7359/udp #optional - - 1900/udp:1900/udp #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional devices: - /dev/dri:/dev/dri #optional - /dev/vcsm:/dev/vcsm #optional @@ -116,8 +116,8 @@ docker run -d \ -e UMASK_SET=<022> `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ - -p 7359/udp:7359/udp `#optional` \ - -p 1900/udp:1900/udp `#optional` \ + -p 7359:7359/udp `#optional` \ + -p 1900:1900/udp `#optional` \ -v /path/to/library:/config \ -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ From 6ec17c05601595722a3ec50f8d13fb39bae2b2b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 7 Oct 2020 00:17:00 -0400 Subject: [PATCH 0186/2257] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 12 +++-- .github/PULL_REQUEST_TEMPLATE.md | 10 ++-- .github/workflows/greetings.yml | 4 +- Jenkinsfile | 28 +++++++++- README.md | 88 +++++++++++++++++--------------- 5 files changed, 89 insertions(+), 53 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 1d3fb7a..ad69165 100755 --- 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..ef2f1bc 100755 --- 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-jellyfin/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 973cce2..ed5690e 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-jellyfin/.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-jellyfin/.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-jellyfin/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-jellyfin/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Jenkinsfile b/Jenkinsfile index a5aa6a0..885a7d6 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 61c43e4..29f4054 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ + + + [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") @@ -66,37 +69,11 @@ This image provides various versions that are available via tags. `latest` tag u Here are some example snippets to help you get started creating a container. -### docker - -``` -docker create \ - --name=jellyfin \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -e UMASK_SET=<022> `#optional` \ - -p 8096:8096 \ - -p 8920:8920 `#optional` \ - -v /path/to/library:/config \ - -v path/to/tvseries:/data/tvshows \ - -v /path/to/movies:/data/movies \ - -v /opt/vc/lib:/opt/vc/lib `#optional` \ - --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vc-mem:/dev/vc-mem `#optional` \ - --device /dev/vchiq:/dev/vchiq `#optional` \ - --device /dev/video10:/dev/video10 `#optional` \ - --device /dev/video11:/dev/video11 `#optional` \ - --device /dev/video12:/dev/video12 `#optional` \ - --restart unless-stopped \ - linuxserver/jellyfin -``` - - -### docker-compose +### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose)) Compatible with docker-compose v2 schemas. -``` +```yaml --- version: "2.1" services: @@ -126,6 +103,32 @@ services: restart: unless-stopped ``` +### docker cli + +``` +docker run -d \ + --name=jellyfin \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -e UMASK_SET=<022> `#optional` \ + -p 8096:8096 \ + -p 8920:8920 `#optional` \ + -v /path/to/library:/config \ + -v path/to/tvseries:/data/tvshows \ + -v /path/to/movies:/data/movies \ + -v /opt/vc/lib:/opt/vc/lib `#optional` \ + --device /dev/dri:/dev/dri `#optional` \ + --device /dev/vc-mem:/dev/vc-mem `#optional` \ + --device /dev/vchiq:/dev/vchiq `#optional` \ + --device /dev/video10:/dev/video10 `#optional` \ + --device /dev/video11:/dev/video11 `#optional` \ + --device /dev/video12:/dev/video12 `#optional` \ + --restart unless-stopped \ + linuxserver/jellyfin +``` + + ## 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. @@ -226,9 +229,9 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ## 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%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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=jellyfin&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 @@ -246,14 +249,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/jellyfin` -* Stop the running container: `docker stop jellyfin` -* Delete the container: `docker rm jellyfin` -* 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 jellyfin` -* 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 jellyfin` @@ -261,7 +256,14 @@ Below are the instructions for updating containers: * or update a single container: `docker-compose up -d jellyfin` * 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/jellyfin` +* Stop the running container: `docker stop jellyfin` +* Delete the container: `docker rm jellyfin` +* 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 \ @@ -269,11 +271,13 @@ Below are the instructions for updating containers: containrrr/watchtower \ --run-once jellyfin ``` - -**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 98ba2eff6daa9c3609a1819659098db4e2edeb53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 7 Oct 2020 04:18:43 +0000 Subject: [PATCH 0187/2257] 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..8af71ca --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,122 @@ +# Contributing to jellyfin + +## 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-jellyfin/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-jellyfin) + +### 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-jellyfin.git +cd docker-jellyfin +docker build \ + --no-cache \ + --pull \ + -t linuxserver/jellyfin: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-jellyfin/tree/master/root), add an entry to the changelog + +```yml +changelogs: + - { date: "DD.MM.YY:", desc: "Added some love to templates" } +``` From 7f23404b64a1d121095467f64548f132bcfa9beb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 7 Oct 2020 00:28:53 -0400 Subject: [PATCH 0188/2257] 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 f4fc310..fb86c2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20200929.17-unstable +jellyfin20201006.3-unstable jellyfin-ffmpeg4.3.1-1-bionic jellyfin-server20200927.6-unstable -jellyfin-web20200929.17-unstable +jellyfin-web20201006.3-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From b71c3c22cb217394ff176e3465ffa0a2b0d66c57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Oct 2020 04:21:35 +0000 Subject: [PATCH 0189/2257] 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 fb86c2e..f933420 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201006.3-unstable +jellyfin20201013.10-unstable jellyfin-ffmpeg4.3.1-1-bionic jellyfin-server20200927.6-unstable -jellyfin-web20201006.3-unstable +jellyfin-web20201013.10-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 98c63deae55e64486dacbaa806119e9dda3b8f88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Oct 2020 04:22:35 +0000 Subject: [PATCH 0190/2257] 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 f933420..db91730 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201013.10-unstable +jellyfin20201020.33-unstable jellyfin-ffmpeg4.3.1-1-bionic jellyfin-server20200927.6-unstable -jellyfin-web20201013.10-unstable +jellyfin-web20201020.33-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -76,7 +76,7 @@ libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.7 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 -libfreetype62.8.1-2ubuntu2 +libfreetype62.8.1-2ubuntu2.1 libfribidi00.19.7-2 libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 From 0b91c530fe26c15f79bd672673252464e2ddd2d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 25 Oct 2020 03:18:33 -0400 Subject: [PATCH 0191/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2b65f5d..7121892 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -76,7 +76,7 @@ libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.7 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 -libfreetype62.8.1-2ubuntu2 +libfreetype62.8.1-2ubuntu2.1 libfribidi00.19.7-2 libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 From bb4fde9e711a1c6c602f3d328883f7839be00c6a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 28 Oct 2020 01:22:55 -0400 Subject: [PATCH 0192/2257] 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 db91730..16f5514 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201020.33-unstable +jellyfin20201027.24-unstable jellyfin-ffmpeg4.3.1-1-bionic jellyfin-server20200927.6-unstable -jellyfin-web20201020.33-unstable +jellyfin-web20201027.24-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 From 1a1b94189005a437f9aa15e8e3d594d846e25471 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Nov 2020 07:20:26 +0000 Subject: [PATCH 0193/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7121892..b8737ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20190110~18.04.1 +ca-certificates20201027ubuntu0.18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 From 775c79917537828f0e705cb97cdb9f90af5f1aa2 Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 2 Nov 2020 07:12:14 -0800 Subject: [PATCH 0194/2257] update baseimages --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 40d737a..0d93ad9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d201412..a9279d9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm64v8-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 99b44d3..fa21f62 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm32v7-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-bionic # set version label ARG BUILD_DATE From cfaede6897947e93699e46751157282a915e26b2 Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 2 Nov 2020 07:12:39 -0800 Subject: [PATCH 0195/2257] update baseimages --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ba7e27..3dd9100 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index fae873c..a065599 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm64v8-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index eb0df55..3f89e3f 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm32v7-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-bionic # set version label ARG BUILD_DATE From a566ed7bf70095431796be009bbd14e2c0952c95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 15:16:35 +0000 Subject: [PATCH 0196/2257] Bot Updating Templated Files --- Jenkinsfile | 162 ++++++++++++++++++++-------------------------------- README.md | 14 ++--- 2 files changed, 68 insertions(+), 108 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 885a7d6..405467c 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 29f4054..635c6e9 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. @@ -46,7 +46,7 @@ Find us at: Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `linuxserver/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `ghcr.io/linuxserver/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. The architectures supported by this image are: @@ -78,7 +78,7 @@ Compatible with docker-compose v2 schemas. version: "2.1" services: jellyfin: - image: linuxserver/jellyfin + image: ghcr.io/linuxserver/jellyfin container_name: jellyfin environment: - PUID=1000 @@ -125,7 +125,7 @@ docker run -d \ --device /dev/video11:/dev/video11 `#optional` \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ - linuxserver/jellyfin + ghcr.io/linuxserver/jellyfin ``` @@ -241,7 +241,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/jellyfin` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/jellyfin` ## Updating Info @@ -257,7 +257,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/jellyfin` +* Update the image: `docker pull ghcr.io/linuxserver/jellyfin` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` * 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) @@ -287,7 +287,7 @@ cd docker-jellyfin docker build \ --no-cache \ --pull \ - -t linuxserver/jellyfin:latest . + -t ghcr.io/linuxserver/jellyfin:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From be0d9a4f5f826dc9818075ea3ec455e2b21f3cac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 10:16:35 -0500 Subject: [PATCH 0197/2257] Bot Updating Templated Files --- Jenkinsfile | 162 ++++++++++++++++++++-------------------------------- README.md | 14 ++--- 2 files changed, 68 insertions(+), 108 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cd80562..17c1b8f 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}':latest 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}':latest 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=master -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=master -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}:latest - docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${META_TAG} - docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-latest - docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-latest - 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}:latest - docker push ${GITHUBIMAGE}:${META_TAG} - docker push ${GITHUBIMAGE}:arm32v7-latest - docker push ${GITHUBIMAGE}:arm64v8-latest - 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-latest || : 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 cca7876..583681d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) -[![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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. @@ -46,7 +46,7 @@ Find us at: Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `linuxserver/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `ghcr.io/linuxserver/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. The architectures supported by this image are: @@ -78,7 +78,7 @@ Compatible with docker-compose v2 schemas. version: "2.1" services: jellyfin: - image: linuxserver/jellyfin + image: ghcr.io/linuxserver/jellyfin container_name: jellyfin environment: - PUID=1000 @@ -129,7 +129,7 @@ docker run -d \ --device /dev/video11:/dev/video11 `#optional` \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ - linuxserver/jellyfin + ghcr.io/linuxserver/jellyfin ``` @@ -262,7 +262,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/jellyfin` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/jellyfin` ## Updating Info @@ -278,7 +278,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/jellyfin` +* Update the image: `docker pull ghcr.io/linuxserver/jellyfin` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` * 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) @@ -308,7 +308,7 @@ cd docker-jellyfin docker build \ --no-cache \ --pull \ - -t linuxserver/jellyfin:latest . + -t ghcr.io/linuxserver/jellyfin:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From c491cdfe0e69ee3843f56a3eaaae32188488b494 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 10:27:39 -0500 Subject: [PATCH 0198/2257] 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 16f5514..b2fa99c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20190110~18.04.1 +ca-certificates20201027ubuntu0.18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201027.24-unstable +jellyfin20201102.25-unstable jellyfin-ffmpeg4.3.1-1-bionic jellyfin-server20200927.6-unstable -jellyfin-web20201027.24-unstable +jellyfin-web20201102.25-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -200,7 +200,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2020a-0ubuntu0.18.04 +tzdata2020d-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 util-linux2.31.1-0.4ubuntu3.7 From f0ff8d628f97a3adf9f98459998b36130aa078c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 15:28:23 +0000 Subject: [PATCH 0199/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b8737ec..e5a08db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -200,7 +200,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2020a-0ubuntu0.18.04 +tzdata2020d-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 util-linux2.31.1-0.4ubuntu3.7 From 47ade591270cf7610791c5824ede646112fe647c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 Nov 2020 00:21:10 -0500 Subject: [PATCH 0200/2257] 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 b2fa99c..cd5483e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201102.25-unstable +jellyfin20201103.12-unstable jellyfin-ffmpeg4.3.1-1-bionic jellyfin-server20200927.6-unstable -jellyfin-web20201102.25-unstable +jellyfin-web20201103.12-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -185,7 +185,7 @@ lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers20.0.8-0ubuntu1~18.04.1 mount2.31.1-0.4ubuntu3.7 -multiarch-support2.27-3ubuntu1.2 +multiarch-support2.27-3ubuntu1.3 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 ocl-icd-libopencl12.2.11-1ubuntu1 From db207765b8a4039b919c2d8f2529e99569a43882 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 8 Nov 2020 02:20:04 -0500 Subject: [PATCH 0201/2257] 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 e5a08db..546c847 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -55,10 +55,10 @@ libblkid12.31.1-0.4ubuntu3.7 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 +libc62.27-3ubuntu1.3 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 +libc-bin2.27-3ubuntu1.3 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 @@ -143,11 +143,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.42 +libsystemd0237-3ubuntu10.43 libtasn1-64.13-2 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 +libudev1237-3ubuntu10.43 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 @@ -179,19 +179,19 @@ libxshmfence11.3-1 libzstd11.3.3+dfsg-2ubuntu1.1 libzvbi00.2.35-13 libzvbi-common0.2.35-13 -locales2.27-3ubuntu1.2 +locales2.27-3ubuntu1.3 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mesa-va-drivers20.0.8-0ubuntu1~18.04.1 mount2.31.1-0.4ubuntu3.7 -multiarch-support2.27-3ubuntu1.2 +multiarch-support2.27-3ubuntu1.3 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 ocl-icd-libopencl12.2.11-1ubuntu1 openssl1.1.1-1ubuntu2.1~18.04.6 passwd1:4.5-1ubuntu2 -perl-base5.26.1-6ubuntu0.3 +perl-base5.26.1-6ubuntu0.5 pinentry-curses1.1.0-1 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 From c7b45693e45596ca8abb5dd28d10ee2eba8f43d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Nov 2020 05:21:57 +0000 Subject: [PATCH 0202/2257] 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 cd5483e..cf952e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201103.12-unstable +jellyfin20201111.1-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20200927.6-unstable -jellyfin-web20201103.12-unstable +jellyfin-server20201110.18-unstable +jellyfin-web20201111.1-unstable krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 @@ -55,10 +55,10 @@ libblkid12.31.1-0.4ubuntu3.7 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 +libc62.27-3ubuntu1.3 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 +libc-bin2.27-3ubuntu1.3 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 @@ -143,11 +143,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.42 +libsystemd0237-3ubuntu10.43 libtasn1-64.13-2 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 +libudev1237-3ubuntu10.43 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 @@ -179,7 +179,7 @@ libxshmfence11.3-1 libzstd11.3.3+dfsg-2ubuntu1.1 libzvbi00.2.35-13 libzvbi-common0.2.35-13 -locales2.27-3ubuntu1.2 +locales2.27-3ubuntu1.3 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 @@ -191,7 +191,7 @@ ncurses-bin6.1-1ubuntu1.18.04 ocl-icd-libopencl12.2.11-1ubuntu1 openssl1.1.1-1ubuntu2.1~18.04.6 passwd1:4.5-1ubuntu2 -perl-base5.26.1-6ubuntu0.3 +perl-base5.26.1-6ubuntu0.5 pinentry-curses1.1.0-1 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 From b24d1806a7c0f1c008d3eba4e1f550d2bdf98f02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 15 Nov 2020 07:18:51 +0000 Subject: [PATCH 0203/2257] 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 546c847..d6f44dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -101,8 +101,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.6 -libldap-common2.4.45+dfsg-1ubuntu1.6 +libldap-2.4-22.4.45+dfsg-1ubuntu1.7 +libldap-common2.4.45+dfsg-1ubuntu1.7 libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 From 51228d2ae95ef997d4a016e5e45e8466cd58f2aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Nov 2020 00:23:05 -0500 Subject: [PATCH 0204/2257] 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 cf952e7..7c6645c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,11 +37,11 @@ gzip1.6-5ubuntu1 hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 -jellyfin20201111.1-unstable +jellyfin20201118.1-unstable jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20201110.18-unstable -jellyfin-web20201111.1-unstable -krb5-locales1.16-2ubuntu0.1 +jellyfin-server20201118.1-unstable +jellyfin-web20201117.7-unstable +krb5-locales1.16-2ubuntu0.2 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 libapt-pkg5.01.6.12ubuntu0.1 @@ -55,10 +55,10 @@ libblkid12.31.1-0.4ubuntu3.7 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.3 +libc62.27-3ubuntu1.2 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.3 +libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 @@ -86,7 +86,7 @@ libgnutls303.5.18-1ubuntu1.4 libgpg-error01.27-6 libgraphite2-31.3.11-2 libgssapi3-heimdal7.5.0+dfsg-1 -libgssapi-krb5-21.16-2ubuntu0.1 +libgssapi-krb5-21.16-2ubuntu0.2 libharfbuzz0b1.7.2-1ubuntu1 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 @@ -95,14 +95,14 @@ libhogweed43.4-1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 -libk5crypto31.16-2ubuntu0.1 +libk5crypto31.16-2ubuntu0.2 libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.1 -libkrb5support01.16-2ubuntu0.1 +libkrb5-31.16-2ubuntu0.2 +libkrb5support01.16-2ubuntu0.2 libksba81.3.5-2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.6 -libldap-common2.4.45+dfsg-1ubuntu1.6 +libldap-2.4-22.4.45+dfsg-1ubuntu1.8 +libldap-common2.4.45+dfsg-1ubuntu1.8 libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 @@ -143,11 +143,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.43 +libsystemd0237-3ubuntu10.42 libtasn1-64.13-2 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.43 +libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 From 4d03dee3c5660fc2b8a8dace196bd07802c368df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 22 Nov 2020 02:20:06 -0500 Subject: [PATCH 0205/2257] Bot Updating Package Versions --- package_versions.txt | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d6f44dc..32f9b81 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.20 i965-va-driver2.1.0-0ubuntu1 init-system-helpers1.51 jellyfin10.6.4-1 -jellyfin-ffmpeg4.3.1-1-bionic +jellyfin-ffmpeg4.3.1-2-bionic jellyfin-server10.6.4-1 jellyfin-web10.6.4-1 -krb5-locales1.16-2ubuntu0.1 +krb5-locales1.16-2ubuntu0.2 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 libapt-pkg5.01.6.12ubuntu0.1 @@ -55,10 +55,10 @@ libblkid12.31.1-0.4ubuntu3.7 libbluray21:1.0.2-3 libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.3 +libc62.27-3ubuntu1.2 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.3 +libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 @@ -86,7 +86,7 @@ libgnutls303.5.18-1ubuntu1.4 libgpg-error01.27-6 libgraphite2-31.3.11-2 libgssapi3-heimdal7.5.0+dfsg-1 -libgssapi-krb5-21.16-2ubuntu0.1 +libgssapi-krb5-21.16-2ubuntu0.2 libharfbuzz0b1.7.2-1ubuntu1 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 @@ -95,14 +95,14 @@ libhogweed43.4-1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 -libk5crypto31.16-2ubuntu0.1 +libk5crypto31.16-2ubuntu0.2 libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.1 -libkrb5support01.16-2ubuntu0.1 +libkrb5-31.16-2ubuntu0.2 +libkrb5support01.16-2ubuntu0.2 libksba81.3.5-2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.7 -libldap-common2.4.45+dfsg-1ubuntu1.7 +libldap-2.4-22.4.45+dfsg-1ubuntu1.8 +libldap-common2.4.45+dfsg-1ubuntu1.8 libllvm101:10.0.0-4ubuntu1~18.04.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 @@ -143,17 +143,18 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.43 +libsystemd0237-3ubuntu10.42 libtasn1-64.13-2 libtheora01.1.1+dfsg.1-14 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.43 +libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 libvdpau11.1.1-3ubuntu1 libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 +libvpx51.7.0-3ubuntu0.18.04.1 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.5.0+dfsg-1 From c2919e6d2dc55530b6517a3e7729aa46c041b11a Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 23 Nov 2020 21:40:53 -0500 Subject: [PATCH 0206/2257] rebase to focal --- .github/workflows/external_trigger.yml | 90 +++++++++++++++++++ .../workflows/external_trigger_scheduler.yml | 43 +++++++++ .github/workflows/package_trigger.yml | 38 ++++++++ .../workflows/package_trigger_scheduler.yml | 50 +++++++++++ Dockerfile | 4 +- Dockerfile.aarch64 | 6 +- Dockerfile.armhf | 6 +- Jenkinsfile | 2 +- README.md | 4 +- jenkins-vars.yml | 2 +- readme-vars.yml | 4 +- 11 files changed, 237 insertions(+), 12 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..3ff6caf --- /dev/null +++ b/.github/workflows/external_trigger.yml @@ -0,0 +1,90 @@ +name: External Trigger Main + +on: + workflow_dispatch: + +jobs: + external-trigger-master: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + + - name: External Trigger + if: github.ref == 'refs/heads/master' + run: | + if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER }}" ]; then + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER is set; skipping trigger. ****" + exit 0 + fi + echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****" + echo "**** Retrieving external version ****" + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}') + if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then + echo "**** Can't retrieve external version, exiting ****" + FAILURE_REASON="Can't retrieve external version for jellyfin branch master" + 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/jellyfin" + tag="latest" + token=$(curl -sX GET \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fjellyfin%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 jellyfin tag latest" + 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-jellyfin/job/master/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-jellyfin/job/master/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 jellyfin tag latest. 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..85e17f6 --- /dev/null +++ b/.github/workflows/external_trigger_scheduler.yml @@ -0,0 +1,43 @@ +name: External Trigger Scheduler + +on: + schedule: + - cron: '54 * * * *' + 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-jellyfin/${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-jellyfin/${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-jellyfin/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..acb1520 --- /dev/null +++ b/.github/workflows/package_trigger.yml @@ -0,0 +1,38 @@ +name: Package Trigger Main + +on: + workflow_dispatch: + +jobs: + package-trigger-master: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + + - name: Package Trigger + if: github.ref == 'refs/heads/master' + run: | + if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER }}" ]; then + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER is set; skipping trigger. ****" + exit 0 + fi + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\". ****" + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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..2b44346 --- /dev/null +++ b/.github/workflows/package_trigger_scheduler.yml @@ -0,0 +1,50 @@ +name: Package Trigger Scheduler + +on: + schedule: + - cron: '53 5 * * 5' + 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-jellyfin/${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-jellyfin/${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-jellyfin/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 jellyfin** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/Dockerfile b/Dockerfile index 0d93ad9..7cc729c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:focal # set version label ARG BUILD_DATE @@ -18,7 +18,7 @@ RUN \ gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a9279d9..06a618e 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal # set version label ARG BUILD_DATE @@ -19,8 +19,8 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index fa21f62..a6b67d7 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal # set version label ARG BUILD_DATE @@ -19,8 +19,8 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ diff --git a/Jenkinsfile b/Jenkinsfile index 17c1b8f..14df4f2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 583681d..88653e6 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,8 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | -| latest | Stable Jellyfin releases | +| latest | Stable Jellyfin releases - Focal baseimage | +| bionic | Stable Jellyfin releases - Bionic baseimage | | nightly | Nightly Jellyfin releases | ## Usage @@ -320,6 +321,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Ingest releases from Jellyfin repo. * **28.04.20:** - Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian. * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 6b1b060..3249901 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" release_type: stable release_tag: latest ls_branch: master diff --git a/readme-vars.yml b/readme-vars.yml index 6a21bb1..b5c3764 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -16,7 +16,8 @@ available_architectures: # development version development_versions: true development_versions_items: - - { tag: "latest", desc: "Stable Jellyfin releases" } + - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } + - { tag: "bionic", desc: "Stable Jellyfin releases - Bionic baseimage" } - { tag: "nightly", desc: "Nightly Jellyfin releases" } # container parameters @@ -113,6 +114,7 @@ app_setup_block: | # changelog changelogs: + - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } From 44197d77dac3fcca05b9ae2bf9e57c09f182f43e Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 23 Nov 2020 21:55:54 -0500 Subject: [PATCH 0207/2257] fix repos --- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 06a618e..8c9ba5c 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -20,7 +20,7 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ @@ -34,7 +34,7 @@ RUN \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ - libssl1.0.0 && \ + libssl1.1 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a6b67d7..6683ac7 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -20,7 +20,7 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ @@ -35,7 +35,7 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl1.0.0 && \ + libssl1.1 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From f68f4d0cba946d62e01b741aaa30a801cf9b27ab Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 23 Nov 2020 22:46:33 -0500 Subject: [PATCH 0208/2257] rebase nightly to focal --- .github/workflows/external_trigger.yml | 90 +++++++++++++++++++ .../workflows/external_trigger_scheduler.yml | 43 +++++++++ .github/workflows/package_trigger.yml | 38 ++++++++ .../workflows/package_trigger_scheduler.yml | 50 +++++++++++ Dockerfile | 6 +- Dockerfile.aarch64 | 6 +- Dockerfile.armhf | 6 +- Jenkinsfile | 2 +- README.md | 4 +- jenkins-vars.yml | 2 +- readme-vars.yml | 4 +- 11 files changed, 238 insertions(+), 13 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..981eac6 --- /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_JELLYFIN_NIGHTLY }}" ]; then + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_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_JELLYFIN_NIGHTLY\". ****" + echo "**** Retrieving external version ****" + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}') + if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then + echo "**** Can't retrieve external version, exiting ****" + FAILURE_REASON="Can't retrieve external version for jellyfin 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/jellyfin" + tag="nightly" + token=$(curl -sX GET \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fjellyfin%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 jellyfin 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-jellyfin/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-jellyfin/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 jellyfin 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..85e17f6 --- /dev/null +++ b/.github/workflows/external_trigger_scheduler.yml @@ -0,0 +1,43 @@ +name: External Trigger Scheduler + +on: + schedule: + - cron: '54 * * * *' + 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-jellyfin/${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-jellyfin/${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-jellyfin/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..e183a19 --- /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_JELLYFIN_NIGHTLY }}" ]; then + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" + exit 0 + fi + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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_JELLYFIN_NIGHTLY\". ****" + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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..2b44346 --- /dev/null +++ b/.github/workflows/package_trigger_scheduler.yml @@ -0,0 +1,50 @@ +name: Package Trigger Scheduler + +on: + schedule: + - cron: '53 5 * * 5' + 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-jellyfin/${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-jellyfin/${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-jellyfin/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 jellyfin** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/Dockerfile b/Dockerfile index 3dd9100..5ad232d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:focal # set version label ARG BUILD_DATE @@ -18,8 +18,8 @@ RUN \ gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a065599..9c8580a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal # set version label ARG BUILD_DATE @@ -19,8 +19,8 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 3f89e3f..4fe9691 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal # set version label ARG BUILD_DATE @@ -19,8 +19,8 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu bionic unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ diff --git a/Jenkinsfile b/Jenkinsfile index 405467c..b2d8eec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 635c6e9..fce5db8 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,8 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | -| latest | Stable Jellyfin releases | +| latest | Stable Jellyfin releases - Focal baseimage | +| bionic | Stable Jellyfin releases - Bionic baseimage | | nightly | Unstable Jellyfin releases | ## Usage @@ -299,6 +300,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Install nightly from unstable. * **27.05.20:** - Set web directory path. * **11.04.20:** - Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index ad52b0f..e92f9ab 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/bionic/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" release_type: prerelease release_tag: nightly ls_branch: nightly diff --git a/readme-vars.yml b/readme-vars.yml index d8f1c22..4c20f80 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -16,7 +16,8 @@ available_architectures: # development version development_versions: true development_versions_items: - - { tag: "latest", desc: "Stable Jellyfin releases" } + - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } + - { tag: "bionic", desc: "Stable Jellyfin releases - Bionic baseimage" } - { tag: "nightly", desc: "Unstable Jellyfin releases" } # container parameters @@ -99,6 +100,7 @@ app_setup_block: | # changelog changelogs: + - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Install nightly from unstable." } - { date: "27.05.20:", desc: "Set web directory path." } - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } From a8380b45451388accf1e3a3fa7c9300602f5b29a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Nov 2020 03:59:47 +0000 Subject: [PATCH 0209/2257] Bot Updating Package Versions --- package_versions.txt | 400 ++++++++++++++++++++++--------------------- 1 file changed, 202 insertions(+), 198 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 32f9b81..61a172e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,208 +1,212 @@ -adduser3.116ubuntu1 -apt1.6.12ubuntu0.1 -apt-utils1.6.12ubuntu0.1 -at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.10 -base-passwd3.5.44 -bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.7 -bzip21.0.6-8.1ubuntu0.2 -ca-certificates20201027ubuntu0.18.04.1 -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 -e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.7 -findutils4.6.0+git+20170828-2 -fontconfig-config2.12.6-0ubuntu2 +adduser3.118ubuntu2 +apt2.0.2ubuntu0.1 +apt-utils2.0.2ubuntu0.1 +at3.1.23-1ubuntu1 +base-files11ubuntu5.2 +base-passwd3.5.47 +bash5.0-6ubuntu1.1 +bsdutils1:2.34-0.1ubuntu9.1 +bzip21.0.8-2 +ca-certificates20201027ubuntu0.20.04.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 +fontconfig-config2.13.1-2ubuntu3 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 -i965-va-driver2.1.0-0ubuntu1 -init-system-helpers1.51 +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 +grep3.4-1 +gzip1.10-0ubuntu4 +hostname3.23 +i965-va-driver2.4.0-0ubuntu1 +init-system-helpers1.57 jellyfin10.6.4-1 -jellyfin-ffmpeg4.3.1-2-bionic +jellyfin-ffmpeg4.3.1-2-focal jellyfin-server10.6.4-1 jellyfin-web10.6.4-1 -krb5-locales1.16-2ubuntu0.2 -libacl12.2.52-3build1 -libapt-inst2.01.6.12ubuntu0.1 -libapt-pkg5.01.6.12ubuntu0.1 -libasn1-8-heimdal7.5.0+dfsg-1 -libass91:0.14.0-1 -libassuan02.5.1-2 -libattr11:2.4.47-2build1 -libaudit11:2.8.2-1ubuntu1 -libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.7 -libbluray21:1.0.2-3 -libbsd00.8.7-1ubuntu0.1 -libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 -libcairo21.15.10-2ubuntu0.1 -libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 -libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.10 -libdb5.35.3.28-13.1ubuntu1.1 -libdebconfclient00.213ubuntu1 -libdrm22.4.101-2~18.04.1 -libdrm-amdgpu12.4.101-2~18.04.1 -libdrm-common2.4.101-2~18.04.1 -libdrm-intel12.4.101-2~18.04.1 -libdrm-nouveau22.4.101-2~18.04.1 -libdrm-radeon12.4.101-2~18.04.1 -libedit23.1-20170329-1 -libelf10.170-0.4ubuntu0.1 -libexpat12.2.5-3ubuntu0.2 -libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.7 -libffi63.2.1-8 -libfontconfig12.12.6-0ubuntu2 -libfreetype62.8.1-2ubuntu2.1 -libfribidi00.19.7-2 -libgcc11:8.4.0-1ubuntu1~18.04 -libgcrypt201.8.1-4ubuntu1.2 -libglib2.0-02.56.4-0ubuntu0.18.04.6 -libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.4 -libgpg-error01.27-6 -libgraphite2-31.3.11-2 -libgssapi3-heimdal7.5.0+dfsg-1 -libgssapi-krb5-21.16-2ubuntu0.2 -libharfbuzz0b1.7.2-1ubuntu1 -libhcrypto4-heimdal7.5.0+dfsg-1 -libheimbase1-heimdal7.5.0+dfsg-1 -libheimntlm0-heimdal7.5.0+dfsg-1 -libhogweed43.4-1 -libhx509-5-heimdal7.5.0+dfsg-1 -libicu6060.2-3ubuntu3.1 -libidn2-02.0.4-1.1ubuntu0.2 -libk5crypto31.16-2ubuntu0.2 -libkeyutils11.5.9-9.2ubuntu2 -libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.2 -libkrb5support01.16-2ubuntu0.2 +krb5-locales1.17-6ubuntu4.1 +libacl12.2.53-6 +libapt-pkg6.02.0.2ubuntu0.1 +libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 +libass91:0.14.0-2 +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 +libbluray21:1.2.0-1 +libbrotli11.0.7-6ubuntu0.1 +libbsd00.10.0-1 +libbz2-1.01.0.8-2 +libc62.31-0ubuntu9.1 +libcairo21.16.0-4ubuntu1 +libcap-ng00.7.9-2.1build1 +libc-bin2.31-0ubuntu9.1 +libcom-err21.45.5-2ubuntu1 +libcrypt11:4.4.10-10ubuntu4 +libcurl47.68.0-1ubuntu2.2 +libdb5.35.3.28+dfsg1-0.6ubuntu2 +libdebconfclient00.251ubuntu1 +libdrm22.4.101-2 +libdrm-amdgpu12.4.101-2 +libdrm-common2.4.101-2 +libdrm-intel12.4.101-2 +libdrm-nouveau22.4.101-2 +libdrm-radeon12.4.101-2 +libedit23.1-20191231-1 +libelf10.176-1.1build1 +libexpat12.2.9-1build1 +libext2fs21.45.5-2ubuntu1 +libfdisk12.34-0.1ubuntu9.1 +libffi73.3-4 +libfl22.6.4-6.2 +libfontconfig12.13.1-2ubuntu3 +libfreetype62.10.1-2ubuntu0.1 +libfribidi01.0.8-2 +libgcc-s110.2.0-5ubuntu1~20.04 +libgcrypt201.8.5-5ubuntu1 +libglib2.0-02.64.3-1~ubuntu20.04.1 +libgmp102:6.2.0+dfsg-4 +libgnutls303.6.13-2ubuntu1.3 +libgpg-error01.37-1 +libgraphite2-31.3.13-11build1 +libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 +libgssapi-krb5-21.17-6ubuntu4.1 +libharfbuzz0b2.6.4-1ubuntu4 +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 +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.45+dfsg-1ubuntu1.8 -libldap-common2.4.45+dfsg-1ubuntu1.8 -libllvm101:10.0.0-4ubuntu1~18.04.2 -liblz4-10.0~r131-2ubuntu3 -liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.7 -libmp3lame03.100-2 -libncurses56.1-1ubuntu1.18.04 -libncursesw56.1-1ubuntu1.18.04 -libnettle63.4-1 -libnghttp2-141.30.0-1ubuntu1 -libnpth01.5-3 -libnuma12.0.11-2.1ubuntu0.1 -libogg01.3.2-1 -libopus01.1.2-1ubuntu1 -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 -libpciaccess00.14-1 -libpcre32:8.39-9 -libpixman-1-00.34.0-2 -libpng16-161.6.34-1ubuntu0.18.04.2 -libprocps62:3.3.12-3ubuntu1.2 -libpsl50.19.1-5build1 -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 -libtheora01.1.1+dfsg.1-14 -libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 -libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.7 -libva22.1.0-3 -libvdpau11.1.1-3ubuntu1 -libvorbis0a1.3.5-4.2 -libvorbisenc21.3.5-4.2 -libvpx51.7.0-3ubuntu0.18.04.1 +libldap-2.4-22.4.49+dfsg-2ubuntu1.5 +libldap-common2.4.49+dfsg-2ubuntu1.5 +libllvm101:10.0.0-4ubuntu1 +liblz4-11.9.2-2 +liblzma55.2.4-1ubuntu1 +libmount12.34-0.1ubuntu9.1 +libmp3lame03.100-3 +libncurses66.2-0ubuntu2 +libncursesw66.2-0ubuntu2 +libnettle73.5.1+really3.5.1-2 +libnghttp2-141.40.0-1build1 +libnpth01.6-1 +libnuma12.0.12-1 +libogg01.3.4-0ubuntu1 +libopus01.3.1-0ubuntu1 +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 +libpciaccess00.16-0ubuntu1 +libpcre2-8-010.34-7 +libpcre32:8.39-12build1 +libpixman-1-00.38.4-0ubuntu1 +libpng16-161.6.37-2 +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.2.0-5ubuntu1~20.04 +libsystemd0245.4-4ubuntu3.3 +libtasn1-64.16.0-2 +libtheora01.1.1+dfsg.1-15ubuntu2 +libtinfo66.2-0ubuntu2 +libudev1245.4-4ubuntu3.3 +libunistring20.9.10-2 +libuuid12.34-0.1ubuntu9.1 +libva22.7.0-2 +libvdpau11.3-1ubuntu2 +libvorbis0a1.3.6-2ubuntu1 +libvorbisenc21.3.6-2ubuntu1 +libvpx61.8.2-1build1 libwebp60.6.1-2 libwebpmux30.6.1-2 -libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.3 -libx11-data2:1.6.4-3ubuntu0.3 -libx11-xcb12:1.6.4-3ubuntu0.3 -libx264-1522:0.152.2854+gite9a5903-2 -libx265-1462.6-3 -libxau61:1.0.8-1ubuntu1 -libxcb11.13-2~ubuntu18.04 -libxcb-dri2-01.13-2~ubuntu18.04 -libxcb-dri3-01.13-2~ubuntu18.04 -libxcb-present01.13-2~ubuntu18.04 -libxcb-render01.13-2~ubuntu18.04 -libxcb-shm01.13-2~ubuntu18.04 -libxcb-sync11.13-2~ubuntu18.04 -libxcb-xfixes01.13-2~ubuntu18.04 -libxdmcp61:1.1.2-3 -libxext62:1.3.3-1 -libxml22.9.4+dfsg1-6.1ubuntu1.3 +libwind0-heimdal7.7.0+dfsg-1ubuntu1 +libx11-62:1.6.9-2ubuntu1.1 +libx11-data2:1.6.9-2ubuntu1.1 +libx11-xcb12:1.6.9-2ubuntu1.1 +libx264-1552:0.155.2917+git0a84d98-2 +libx265-1793.2.1-1build1 +libxau61:1.0.9-0ubuntu1 +libxcb11.14-2 +libxcb-dri2-01.14-2 +libxcb-dri3-01.14-2 +libxcb-present01.14-2 +libxcb-render01.14-2 +libxcb-shm01.14-2 +libxcb-sync11.14-2 +libxcb-xfixes01.14-2 +libxdmcp61:1.1.3-0ubuntu1 +libxext62:1.3.4-0ubuntu1 +libxml22.9.10+dfsg-5 libxrender11:0.9.10-1 libxshmfence11.3-1 -libzstd11.3.3+dfsg-2ubuntu1.1 -libzvbi00.2.35-13 -libzvbi-common0.2.35-13 -locales2.27-3ubuntu1.3 -login1:4.5-1ubuntu2 -lsb-base9.20170808ubuntu1 -mawk1.3.3-17ubuntu3 -mesa-va-drivers20.0.8-0ubuntu1~18.04.1 -mount2.31.1-0.4ubuntu3.7 -multiarch-support2.27-3ubuntu1.3 -ncurses-base6.1-1ubuntu1.18.04 -ncurses-bin6.1-1ubuntu1.18.04 +libzstd11.4.4+dfsg-3 +libzvbi00.2.35-17 +libzvbi-common0.2.35-17 +locales2.31-0ubuntu9.1 +login1:4.8.1-1ubuntu5.20.04 +logsave1.45.5-2ubuntu1 +lsb-base11.1.0ubuntu2 +mawk1.3.4.20200120-2 +mesa-va-drivers20.0.8-0ubuntu1~20.04.1 +mount2.34-0.1ubuntu9.1 +ncurses-base6.2-0ubuntu2 +ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1-1ubuntu2.1~18.04.6 -passwd1:4.5-1ubuntu2 -perl-base5.26.1-6ubuntu0.5 -pinentry-curses1.1.0-1 -procps2:3.3.12-3ubuntu1.2 -publicsuffix20180223.1310-1 -readline-common7.0-3 -sed4.4-2 -sensible-utils0.0.12 -sysvinit-utils2.88dsf-59.10ubuntu1 -tar1.29b-2ubuntu0.1 -tzdata2020d-0ubuntu0.18.04 -ubuntu-keyring2018.09.18.1~18.04.0 -ucf3.0038 -util-linux2.31.1-0.4ubuntu3.7 -zlib1g1:1.2.11.dfsg-0ubuntu2 +openssl1.1.1f-1ubuntu2 +passwd1:4.8.1-1ubuntu5.20.04 +perl-base5.30.0-9ubuntu0.2 +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 +sysvinit-utils2.96-2.1ubuntu1 +tar1.30+dfsg-7 +tzdata2020d-0ubuntu0.20.04 +ubuntu-keyring2020.02.11.2 +ucf3.0038+nmu1 +util-linux2.34-0.1ubuntu9.1 +zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 9bd46427a39c69b59e339471b626fa11c77b8199 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Nov 2020 09:45:35 -0500 Subject: [PATCH 0210/2257] Bot Updating Package Versions --- package_versions.txt | 405 ++++++++++++++++++++++--------------------- 1 file changed, 205 insertions(+), 200 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7c6645c..3ed4c3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,207 +1,212 @@ -adduser3.116ubuntu1 -apt1.6.12ubuntu0.1 -apt-utils1.6.12ubuntu0.1 -at3.1.20-3.1ubuntu2 -base-files10.1ubuntu2.10 -base-passwd3.5.44 -bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.7 -bzip21.0.6-8.1ubuntu0.2 -ca-certificates20201027ubuntu0.18.04.1 -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 -e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.7 -findutils4.6.0+git+20170828-2 -fontconfig-config2.12.6-0ubuntu2 +adduser3.118ubuntu2 +apt2.0.2ubuntu0.1 +apt-utils2.0.2ubuntu0.1 +at3.1.23-1ubuntu1 +base-files11ubuntu5.2 +base-passwd3.5.47 +bash5.0-6ubuntu1.1 +bsdutils1:2.34-0.1ubuntu9.1 +bzip21.0.8-2 +ca-certificates20201027ubuntu0.20.04.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 +fontconfig-config2.13.1-2ubuntu3 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 -i965-va-driver2.1.0-0ubuntu1 -init-system-helpers1.51 -jellyfin20201118.1-unstable -jellyfin-ffmpeg4.3.1-1-bionic -jellyfin-server20201118.1-unstable -jellyfin-web20201117.7-unstable -krb5-locales1.16-2ubuntu0.2 -libacl12.2.52-3build1 -libapt-inst2.01.6.12ubuntu0.1 -libapt-pkg5.01.6.12ubuntu0.1 -libasn1-8-heimdal7.5.0+dfsg-1 -libass91:0.14.0-1 -libassuan02.5.1-2 -libattr11:2.4.47-2build1 -libaudit11:2.8.2-1ubuntu1 -libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.7 -libbluray21:1.0.2-3 -libbsd00.8.7-1ubuntu0.1 -libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 -libcairo21.15.10-2ubuntu0.1 -libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 -libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.10 -libdb5.35.3.28-13.1ubuntu1.1 -libdebconfclient00.213ubuntu1 -libdrm22.4.101-2~18.04.1 -libdrm-amdgpu12.4.101-2~18.04.1 -libdrm-common2.4.101-2~18.04.1 -libdrm-intel12.4.101-2~18.04.1 -libdrm-nouveau22.4.101-2~18.04.1 -libdrm-radeon12.4.101-2~18.04.1 -libedit23.1-20170329-1 -libelf10.170-0.4ubuntu0.1 -libexpat12.2.5-3ubuntu0.2 -libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.7 -libffi63.2.1-8 -libfontconfig12.12.6-0ubuntu2 -libfreetype62.8.1-2ubuntu2.1 -libfribidi00.19.7-2 -libgcc11:8.4.0-1ubuntu1~18.04 -libgcrypt201.8.1-4ubuntu1.2 -libglib2.0-02.56.4-0ubuntu0.18.04.6 -libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.4 -libgpg-error01.27-6 -libgraphite2-31.3.11-2 -libgssapi3-heimdal7.5.0+dfsg-1 -libgssapi-krb5-21.16-2ubuntu0.2 -libharfbuzz0b1.7.2-1ubuntu1 -libhcrypto4-heimdal7.5.0+dfsg-1 -libheimbase1-heimdal7.5.0+dfsg-1 -libheimntlm0-heimdal7.5.0+dfsg-1 -libhogweed43.4-1 -libhx509-5-heimdal7.5.0+dfsg-1 -libicu6060.2-3ubuntu3.1 -libidn2-02.0.4-1.1ubuntu0.2 -libk5crypto31.16-2ubuntu0.2 -libkeyutils11.5.9-9.2ubuntu2 -libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.2 -libkrb5support01.16-2ubuntu0.2 +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 +grep3.4-1 +gzip1.10-0ubuntu4 +hostname3.23 +i965-va-driver2.4.0-0ubuntu1 +init-system-helpers1.57 +jellyfin20201124.7-unstable +jellyfin-ffmpeg4.3.1-2-focal +jellyfin-server20201124.7-unstable +jellyfin-web20201124.4-unstable +krb5-locales1.17-6ubuntu4.1 +libacl12.2.53-6 +libapt-pkg6.02.0.2ubuntu0.1 +libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 +libass91:0.14.0-2 +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 +libbluray21:1.2.0-1 +libbrotli11.0.7-6ubuntu0.1 +libbsd00.10.0-1 +libbz2-1.01.0.8-2 +libc62.31-0ubuntu9.1 +libcairo21.16.0-4ubuntu1 +libcap-ng00.7.9-2.1build1 +libc-bin2.31-0ubuntu9.1 +libcom-err21.45.5-2ubuntu1 +libcrypt11:4.4.10-10ubuntu4 +libcurl47.68.0-1ubuntu2.2 +libdb5.35.3.28+dfsg1-0.6ubuntu2 +libdebconfclient00.251ubuntu1 +libdrm22.4.101-2 +libdrm-amdgpu12.4.101-2 +libdrm-common2.4.101-2 +libdrm-intel12.4.101-2 +libdrm-nouveau22.4.101-2 +libdrm-radeon12.4.101-2 +libedit23.1-20191231-1 +libelf10.176-1.1build1 +libexpat12.2.9-1build1 +libext2fs21.45.5-2ubuntu1 +libfdisk12.34-0.1ubuntu9.1 +libffi73.3-4 +libfl22.6.4-6.2 +libfontconfig12.13.1-2ubuntu3 +libfreetype62.10.1-2ubuntu0.1 +libfribidi01.0.8-2 +libgcc-s110.2.0-5ubuntu1~20.04 +libgcrypt201.8.5-5ubuntu1 +libglib2.0-02.64.3-1~ubuntu20.04.1 +libgmp102:6.2.0+dfsg-4 +libgnutls303.6.13-2ubuntu1.3 +libgpg-error01.37-1 +libgraphite2-31.3.13-11build1 +libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 +libgssapi-krb5-21.17-6ubuntu4.1 +libharfbuzz0b2.6.4-1ubuntu4 +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 +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.45+dfsg-1ubuntu1.8 -libldap-common2.4.45+dfsg-1ubuntu1.8 -libllvm101:10.0.0-4ubuntu1~18.04.2 -liblz4-10.0~r131-2ubuntu3 -liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.7 -libmp3lame03.100-2 -libncurses56.1-1ubuntu1.18.04 -libncursesw56.1-1ubuntu1.18.04 -libnettle63.4-1 -libnghttp2-141.30.0-1ubuntu1 -libnpth01.5-3 -libnuma12.0.11-2.1ubuntu0.1 -libogg01.3.2-1 -libopus01.1.2-1ubuntu1 -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 -libpciaccess00.14-1 -libpcre32:8.39-9 -libpixman-1-00.34.0-2 -libpng16-161.6.34-1ubuntu0.18.04.2 -libprocps62:3.3.12-3ubuntu1.2 -libpsl50.19.1-5build1 -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 -libtheora01.1.1+dfsg.1-14 -libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 -libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.7 -libva22.1.0-3 -libvdpau11.1.1-3ubuntu1 -libvorbis0a1.3.5-4.2 -libvorbisenc21.3.5-4.2 +libldap-2.4-22.4.49+dfsg-2ubuntu1.5 +libldap-common2.4.49+dfsg-2ubuntu1.5 +libllvm101:10.0.0-4ubuntu1 +liblz4-11.9.2-2 +liblzma55.2.4-1ubuntu1 +libmount12.34-0.1ubuntu9.1 +libmp3lame03.100-3 +libncurses66.2-0ubuntu2 +libncursesw66.2-0ubuntu2 +libnettle73.5.1+really3.5.1-2 +libnghttp2-141.40.0-1build1 +libnpth01.6-1 +libnuma12.0.12-1 +libogg01.3.4-0ubuntu1 +libopus01.3.1-0ubuntu1 +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 +libpciaccess00.16-0ubuntu1 +libpcre2-8-010.34-7 +libpcre32:8.39-12build1 +libpixman-1-00.38.4-0ubuntu1 +libpng16-161.6.37-2 +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.2.0-5ubuntu1~20.04 +libsystemd0245.4-4ubuntu3.3 +libtasn1-64.16.0-2 +libtheora01.1.1+dfsg.1-15ubuntu2 +libtinfo66.2-0ubuntu2 +libudev1245.4-4ubuntu3.3 +libunistring20.9.10-2 +libuuid12.34-0.1ubuntu9.1 +libva22.7.0-2 +libvdpau11.3-1ubuntu2 +libvorbis0a1.3.6-2ubuntu1 +libvorbisenc21.3.6-2ubuntu1 +libvpx61.8.2-1build1 libwebp60.6.1-2 libwebpmux30.6.1-2 -libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.3 -libx11-data2:1.6.4-3ubuntu0.3 -libx11-xcb12:1.6.4-3ubuntu0.3 -libx264-1522:0.152.2854+gite9a5903-2 -libx265-1462.6-3 -libxau61:1.0.8-1ubuntu1 -libxcb11.13-2~ubuntu18.04 -libxcb-dri2-01.13-2~ubuntu18.04 -libxcb-dri3-01.13-2~ubuntu18.04 -libxcb-present01.13-2~ubuntu18.04 -libxcb-render01.13-2~ubuntu18.04 -libxcb-shm01.13-2~ubuntu18.04 -libxcb-sync11.13-2~ubuntu18.04 -libxcb-xfixes01.13-2~ubuntu18.04 -libxdmcp61:1.1.2-3 -libxext62:1.3.3-1 -libxml22.9.4+dfsg1-6.1ubuntu1.3 +libwind0-heimdal7.7.0+dfsg-1ubuntu1 +libx11-62:1.6.9-2ubuntu1.1 +libx11-data2:1.6.9-2ubuntu1.1 +libx11-xcb12:1.6.9-2ubuntu1.1 +libx264-1552:0.155.2917+git0a84d98-2 +libx265-1793.2.1-1build1 +libxau61:1.0.9-0ubuntu1 +libxcb11.14-2 +libxcb-dri2-01.14-2 +libxcb-dri3-01.14-2 +libxcb-present01.14-2 +libxcb-render01.14-2 +libxcb-shm01.14-2 +libxcb-sync11.14-2 +libxcb-xfixes01.14-2 +libxdmcp61:1.1.3-0ubuntu1 +libxext62:1.3.4-0ubuntu1 +libxml22.9.10+dfsg-5 libxrender11:0.9.10-1 libxshmfence11.3-1 -libzstd11.3.3+dfsg-2ubuntu1.1 -libzvbi00.2.35-13 -libzvbi-common0.2.35-13 -locales2.27-3ubuntu1.3 -login1:4.5-1ubuntu2 -lsb-base9.20170808ubuntu1 -mawk1.3.3-17ubuntu3 -mesa-va-drivers20.0.8-0ubuntu1~18.04.1 -mount2.31.1-0.4ubuntu3.7 -multiarch-support2.27-3ubuntu1.3 -ncurses-base6.1-1ubuntu1.18.04 -ncurses-bin6.1-1ubuntu1.18.04 +libzstd11.4.4+dfsg-3 +libzvbi00.2.35-17 +libzvbi-common0.2.35-17 +locales2.31-0ubuntu9.1 +login1:4.8.1-1ubuntu5.20.04 +logsave1.45.5-2ubuntu1 +lsb-base11.1.0ubuntu2 +mawk1.3.4.20200120-2 +mesa-va-drivers20.0.8-0ubuntu1~20.04.1 +mount2.34-0.1ubuntu9.1 +ncurses-base6.2-0ubuntu2 +ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1-1ubuntu2.1~18.04.6 -passwd1:4.5-1ubuntu2 -perl-base5.26.1-6ubuntu0.5 -pinentry-curses1.1.0-1 -procps2:3.3.12-3ubuntu1.2 -publicsuffix20180223.1310-1 -readline-common7.0-3 -sed4.4-2 -sensible-utils0.0.12 -sysvinit-utils2.88dsf-59.10ubuntu1 -tar1.29b-2ubuntu0.1 -tzdata2020d-0ubuntu0.18.04 -ubuntu-keyring2018.09.18.1~18.04.0 -ucf3.0038 -util-linux2.31.1-0.4ubuntu3.7 -zlib1g1:1.2.11.dfsg-0ubuntu2 +openssl1.1.1f-1ubuntu2 +passwd1:4.8.1-1ubuntu5.20.04 +perl-base5.30.0-9ubuntu0.2 +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 +sysvinit-utils2.96-2.1ubuntu1 +tar1.30+dfsg-7 +tzdata2020d-0ubuntu0.20.04 +ubuntu-keyring2020.02.11.2 +ucf3.0038+nmu1 +util-linux2.34-0.1ubuntu9.1 +zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 6dae9479a871b3ccbaadcdcfe363740040ee0ffd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Nov 2020 11:01:11 -0500 Subject: [PATCH 0211/2257] 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 3ed4c3d..bb2cf46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201124.7-unstable +jellyfin20201124.8-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201124.7-unstable -jellyfin-web20201124.4-unstable +jellyfin-server20201124.8-unstable +jellyfin-web20201124.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From f1dd47499d3fb503779f9ba12f57f07a8dbae495 Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 24 Nov 2020 14:12:20 -0500 Subject: [PATCH 0212/2257] custom trigger to limit builds to every 6 hrs --- .github/workflows/external_trigger.yml | 5 ++++- jenkins-vars.yml | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 981eac6..c0512af 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: - external-trigger-nightly: + external-trigger-nightly-customized: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2.3.3 @@ -65,6 +65,9 @@ jobs: elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 + elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp') )) -lt 21600000 ]]; then + echo "**** New version ${EXT_RELEASE} found; but the last build was less than 6 hours ago; skipping trigger ****" + exit 0 else echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" response=$(curl -iX POST \ diff --git a/jenkins-vars.yml b/jenkins-vars.yml index e92f9ab..0db31ce 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,6 +7,7 @@ custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/foc release_type: prerelease release_tag: nightly ls_branch: nightly +custom_external_trigger: true repo_vars: - BUILD_VERSION_ARG = 'JELLYFIN_RELEASE' - LS_USER = 'linuxserver' From cd014db089ea3b502751cf1fd501a48b3a2fe463 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Nov 2020 15:01:20 -0500 Subject: [PATCH 0213/2257] 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 bb2cf46..6df2e46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201124.8-unstable +jellyfin20201124.23-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201124.8-unstable -jellyfin-web20201124.5-unstable +jellyfin-server20201124.23-unstable +jellyfin-web20201124.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From f541ab1a781f015f3f932c06b7386b189949f773 Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 24 Nov 2020 17:14:35 -0500 Subject: [PATCH 0214/2257] update workflow with trigger delay var --- .github/workflows/external_trigger.yml | 4 ++-- jenkins-vars.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index c0512af..5b8c097 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: - external-trigger-nightly-customized: + external-trigger-nightly: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2.3.3 @@ -65,7 +65,7 @@ jobs: elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 - elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp') )) -lt 21600000 ]]; then + elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp') )) -lt $(( 6 * 3600000 )) ]]; then echo "**** New version ${EXT_RELEASE} found; but the last build was less than 6 hours ago; skipping trigger ****" exit 0 else diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 0db31ce..46c65da 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,7 +7,7 @@ custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/foc release_type: prerelease release_tag: nightly ls_branch: nightly -custom_external_trigger: true +external_trigger_delay_hours: 6 repo_vars: - BUILD_VERSION_ARG = 'JELLYFIN_RELEASE' - LS_USER = 'linuxserver' From f5ebc08a7f6ebf2d1c57b99327974987c3b4699e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Nov 2020 19:04:00 -0500 Subject: [PATCH 0215/2257] 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 6df2e46..676faaa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201124.23-unstable +jellyfin20201124.25-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201124.23-unstable -jellyfin-web20201124.9-unstable +jellyfin-web20201124.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 7ade3fb80ed09e24905f61aa0d574d15a50aa854 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Nov 2020 01:20:43 +0000 Subject: [PATCH 0216/2257] 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 676faaa..db0a325 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,9 +37,9 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201124.25-unstable +jellyfin20201124.29-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201124.23-unstable +jellyfin-server20201124.29-unstable jellyfin-web20201124.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ae3d162480533cc9ec96ed5d011d65b8f9570447 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Nov 2020 22:38:13 -0500 Subject: [PATCH 0217/2257] 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 db0a325..2ea0b97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201124.29-unstable +jellyfin20201125.2-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201124.29-unstable -jellyfin-web20201124.25-unstable +jellyfin-server20201125.2-unstable +jellyfin-web20201125.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 6b73930596e0e8f6ca19d5c56e16fd4d2c442c33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Nov 2020 05:04:00 -0500 Subject: [PATCH 0218/2257] 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 2ea0b97..ef123f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201125.2-unstable +jellyfin20201125.10-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201125.2-unstable -jellyfin-web20201125.1-unstable +jellyfin-server20201125.6-unstable +jellyfin-web20201125.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From be13ca481ee51f01b1da993020d0d81d6a8667b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Nov 2020 12:11:00 -0500 Subject: [PATCH 0219/2257] 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 ef123f8..ab19082 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201125.10-unstable +jellyfin20201125.18-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201125.6-unstable -jellyfin-web20201125.10-unstable +jellyfin-server20201125.12-unstable +jellyfin-web20201125.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 472075159f00007263d953507a16ba5e2d0506b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Nov 2020 00:04:36 +0000 Subject: [PATCH 0220/2257] 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 ab19082..e57be95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201125.18-unstable +jellyfin20201125.32-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201125.12-unstable -jellyfin-web20201125.18-unstable +jellyfin-web20201125.32-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 17018e228d9fdbe584d771ded37734eb0ac55f82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Nov 2020 02:53:40 +0000 Subject: [PATCH 0221/2257] 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 e57be95..3b88502 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201125.32-unstable +jellyfin20201125.36-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201125.12-unstable -jellyfin-web20201125.32-unstable +jellyfin-web20201125.36-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 53129eba258a71aec51ccf389a3bfddd99d81513 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Nov 2020 04:02:45 -0500 Subject: [PATCH 0222/2257] 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 3b88502..7afb232 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201125.36-unstable +jellyfin20201126.5-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201125.12-unstable -jellyfin-web20201125.36-unstable +jellyfin-web20201126.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 708de2e1721a65398f0feee354d8e1f34f22e37c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Nov 2020 16:04:11 +0000 Subject: [PATCH 0223/2257] 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 7afb232..d634078 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201126.5-unstable +jellyfin20201126.10-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201125.12-unstable -jellyfin-web20201126.5-unstable +jellyfin-server20201126.10-unstable +jellyfin-web20201126.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 8618783e00420c3c111653b9f23e2ec19575a5af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Nov 2020 18:08:28 -0500 Subject: [PATCH 0224/2257] 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 d634078..9fede9c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201126.10-unstable +jellyfin20201126.14-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201126.10-unstable -jellyfin-web20201126.8-unstable +jellyfin-server20201126.12-unstable +jellyfin-web20201126.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From ef1204fc208b5cd7fd7dbef8d5338ed8df3ee849 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Nov 2020 01:03:45 -0500 Subject: [PATCH 0225/2257] 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 9fede9c..750fff6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201126.14-unstable +jellyfin20201127.2-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201126.12-unstable -jellyfin-web20201126.14-unstable +jellyfin-web20201127.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 251ec1e388149d8441f953c6a969f04928fefe20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Nov 2020 13:01:18 +0000 Subject: [PATCH 0226/2257] 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 750fff6..3edf7fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201127.2-unstable +jellyfin20201127.3-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201126.12-unstable -jellyfin-web20201127.2-unstable +jellyfin-server20201127.1-unstable +jellyfin-web20201127.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 03f2adfefdcf9a65509a305475753197d3bed25d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Nov 2020 20:14:46 +0000 Subject: [PATCH 0227/2257] 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 3edf7fb..0864069 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201127.3-unstable +jellyfin20201127.16-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201127.1-unstable -jellyfin-web20201127.3-unstable +jellyfin-server20201127.16-unstable +jellyfin-web20201127.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From cd99cd87c6eecb754ffb2f13b42d4bd172fe7993 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Nov 2020 22:02:34 -0500 Subject: [PATCH 0228/2257] 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 0864069..7e9275a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201127.16-unstable +jellyfin20201128.3-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201127.16-unstable -jellyfin-web20201127.6-unstable +jellyfin-server20201128.3-unstable +jellyfin-web20201128.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 071994a5f0e1bcb5b7af642f4d20319752d74cb2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Nov 2020 10:02:50 +0000 Subject: [PATCH 0229/2257] 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 7e9275a..202fea5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201128.3-unstable +jellyfin20201128.4-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201128.3-unstable -jellyfin-web20201128.1-unstable +jellyfin-server20201128.4-unstable +jellyfin-web20201128.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 09eaa8d9041ed2c430bd180b92d62321d2f3dd70 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Nov 2020 17:05:24 +0000 Subject: [PATCH 0230/2257] 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 202fea5..5f3b8f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201128.4-unstable +jellyfin20201128.31-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201128.4-unstable -jellyfin-web20201128.4-unstable +jellyfin-server20201128.31-unstable +jellyfin-web20201128.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 218a69f796d7292e9a1b418400d606047e30805e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 29 Nov 2020 00:03:10 +0000 Subject: [PATCH 0231/2257] 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 5f3b8f0..e177486 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201128.31-unstable +jellyfin20201128.36-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201128.31-unstable -jellyfin-web20201128.11-unstable +jellyfin-server20201128.36-unstable +jellyfin-web20201128.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 9aa0f09580ec0403f90c30045e335d78bcb5078b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 29 Nov 2020 05:03:15 -0500 Subject: [PATCH 0232/2257] 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 e177486..7591135 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,9 +37,9 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201128.36-unstable +jellyfin20201129.3-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201128.36-unstable +jellyfin-server20201129.3-unstable jellyfin-web20201128.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 25e0c91460b881f8b09fa223005df31c4e27f2e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 29 Nov 2020 13:04:27 -0500 Subject: [PATCH 0233/2257] 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 7591135..7129c3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201129.3-unstable +jellyfin20201129.9-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201129.3-unstable -jellyfin-web20201128.14-unstable +jellyfin-web20201129.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 9937a42343e6be9c686b4119b5c78b530777f32d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 29 Nov 2020 20:31:03 -0500 Subject: [PATCH 0234/2257] 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 7129c3f..eabd61d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201129.9-unstable +jellyfin20201130.1-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201129.3-unstable -jellyfin-web20201129.9-unstable +jellyfin-server20201130.1-unstable +jellyfin-web20201129.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 473392e57e5dec5fc196c7089449ed64fbc05002 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 30 Nov 2020 13:02:41 +0000 Subject: [PATCH 0235/2257] 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 eabd61d..25a051d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201130.1-unstable +jellyfin20201130.20-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201130.1-unstable -jellyfin-web20201129.14-unstable +jellyfin-web20201130.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 91c7ec8279ffc244619b48c5564edb99d2730a94 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 30 Nov 2020 20:04:34 +0000 Subject: [PATCH 0236/2257] 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 25a051d..9c7852d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201130.20-unstable +jellyfin20201130.37-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201130.1-unstable -jellyfin-web20201130.20-unstable +jellyfin-server20201130.24-unstable +jellyfin-web20201130.37-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From fdcc0cb482990b03f6fe993ec987d03480a23364 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Dec 2020 11:04:36 -0500 Subject: [PATCH 0237/2257] 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 9c7852d..47373ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201130.37-unstable +jellyfin20201201.4-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201130.24-unstable -jellyfin-web20201130.37-unstable +jellyfin-web20201201.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 5b785d6f8483e46dbcec9b81e4e2002c42ea0f34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 2 Dec 2020 01:03:21 -0500 Subject: [PATCH 0238/2257] 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 47373ce..6ee5bff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201201.4-unstable +jellyfin20201202.3-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201130.24-unstable -jellyfin-web20201201.4-unstable +jellyfin-server20201202.3-unstable +jellyfin-web20201202.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 6b9dd680e4658af542704336e5f5780ad3f87fcb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 2 Dec 2020 13:14:40 +0000 Subject: [PATCH 0239/2257] 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 6ee5bff..1929b0f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,9 +37,9 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201202.3-unstable +jellyfin20201202.4-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201202.3-unstable +jellyfin-server20201202.4-unstable jellyfin-web20201202.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 24194902b841ada79128d4ebffa29a84fccf0155 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 2 Dec 2020 15:00:37 -0500 Subject: [PATCH 0240/2257] 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 1929b0f..958c41b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201202.4-unstable +jellyfin20201202.13-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201202.4-unstable -jellyfin-web20201202.3-unstable +jellyfin-server20201202.13-unstable +jellyfin-web20201202.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 2e084255ec8dd2607520a40fbc654e97912ddeb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Dec 2020 03:02:54 +0000 Subject: [PATCH 0241/2257] 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 958c41b..2500048 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201202.13-unstable +jellyfin20201203.1-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201202.13-unstable -jellyfin-web20201202.4-unstable +jellyfin-web20201203.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 5ba578cee795d0787f2070d5a1bdd9ca4abf8c95 Mon Sep 17 00:00:00 2001 From: hotio <26902309+hotio@users.noreply.github.com> Date: Thu, 3 Dec 2020 11:28:39 +0100 Subject: [PATCH 0242/2257] add intel driver --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7cc729c..07d9336 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,8 @@ RUN \ libfontconfig1 \ libfreetype6 \ libssl1.1 \ - mesa-va-drivers && \ + mesa-va-drivers \ + intel-media-va-driver-non-free && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From 9ec9fdebdb0cffc88a6a1b85e28e86d0322f263a Mon Sep 17 00:00:00 2001 From: hotio <26902309+hotio@users.noreply.github.com> Date: Thu, 3 Dec 2020 11:30:32 +0100 Subject: [PATCH 0243/2257] add intel driver --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ad232d..154884a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,8 @@ RUN \ libfontconfig1 \ libfreetype6 \ libssl1.1 \ - mesa-va-drivers && \ + mesa-va-drivers \ + intel-media-va-driver-non-free && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From 24df64247d26ac7c9239725f7d55113cc1e57d8b Mon Sep 17 00:00:00 2001 From: hotio <26902309+hotio@users.noreply.github.com> Date: Thu, 3 Dec 2020 14:22:25 +0100 Subject: [PATCH 0244/2257] make order alphabetical --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 154884a..b6e5c44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,7 @@ RUN \ apt-get install -y --no-install-recommends \ at \ i965-va-driver \ + intel-media-va-driver-non-free \ ${JELLYFIN} \ jellyfin-ffmpeg \ jellyfin-server \ @@ -36,8 +37,7 @@ RUN \ libfontconfig1 \ libfreetype6 \ libssl1.1 \ - mesa-va-drivers \ - intel-media-va-driver-non-free && \ + mesa-va-drivers && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From b2b19bef56045b67bdddd3259be353f64608f708 Mon Sep 17 00:00:00 2001 From: hotio <26902309+hotio@users.noreply.github.com> Date: Thu, 3 Dec 2020 14:23:49 +0100 Subject: [PATCH 0245/2257] make the order alphabetical --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07d9336..89304fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,12 +28,12 @@ RUN \ apt-get install -y --no-install-recommends \ at \ i965-va-driver \ + intel-media-va-driver-non-free \ ${JELLYFIN} \ libfontconfig1 \ libfreetype6 \ libssl1.1 \ - mesa-va-drivers \ - intel-media-va-driver-non-free && \ + mesa-va-drivers && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From e03185e0d41c642f45d4560618c66624fdebce84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Dec 2020 14:13:08 +0000 Subject: [PATCH 0246/2257] Bot Updating Package Versions --- package_versions.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2500048..c4c01a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,11 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -jellyfin20201203.1-unstable +intel-media-va-driver-non-free20.1.1+ds1-1build1 +jellyfin20201203.8-unstable jellyfin-ffmpeg4.3.1-2-focal -jellyfin-server20201202.13-unstable -jellyfin-web20201203.1-unstable +jellyfin-server20201203.8-unstable +jellyfin-web20201203.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 @@ -97,6 +98,7 @@ libhogweed53.5.1+really3.5.1-2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 +libigdgmm1120.1.1+ds1-1 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 From 5ac6945b00712194c8fd9587f42e11bad522a423 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Dec 2020 09:13:43 -0500 Subject: [PATCH 0247/2257] Bot Updating Package Versions --- package_versions.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package_versions.txt b/package_versions.txt index 61a172e..4b31485 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,6 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 +intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin10.6.4-1 jellyfin-ffmpeg4.3.1-2-focal jellyfin-server10.6.4-1 @@ -97,6 +98,7 @@ libhogweed53.5.1+really3.5.1-2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 +libigdgmm1120.1.1+ds1-1 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 From 1f32c085a1c480f5e600cad811a5f8703edda0a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Dec 2020 16:00:54 -0500 Subject: [PATCH 0248/2257] 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 c4c01a8..92d11ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201203.8-unstable +jellyfin20201203.11-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201203.8-unstable -jellyfin-web20201203.5-unstable +jellyfin-web20201203.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From c8eccfe70d9aa51fe53c1d2b9d0e9dc9c9088db6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Dec 2020 23:02:55 -0500 Subject: [PATCH 0249/2257] 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 92d11ba..395a5f6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201203.11-unstable +jellyfin20201204.4-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201203.8-unstable -jellyfin-web20201203.11-unstable +jellyfin-web20201204.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From b42d987501a6c9468339bac358b33476e3559e7e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Dec 2020 08:05:52 -0500 Subject: [PATCH 0250/2257] 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 395a5f6..13fdb42 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201204.4-unstable +jellyfin20201204.19-unstable jellyfin-ffmpeg4.3.1-2-focal jellyfin-server20201203.8-unstable -jellyfin-web20201204.4-unstable +jellyfin-web20201204.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From b47515e6859d4e55bdcec05f794dcbe43afe5342 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Dec 2020 15:01:13 -0500 Subject: [PATCH 0251/2257] 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 13fdb42..99b1db3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201204.19-unstable -jellyfin-ffmpeg4.3.1-2-focal +jellyfin20201204.27-unstable +jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201203.8-unstable -jellyfin-web20201204.19-unstable +jellyfin-web20201204.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 4466751f0ef7cd9a1241fbf2d4ddbfc54f280b02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Dec 2020 03:02:54 +0000 Subject: [PATCH 0252/2257] 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 99b1db3..48dbd56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201204.27-unstable +jellyfin20201205.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201203.8-unstable -jellyfin-web20201204.27-unstable +jellyfin-web20201205.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 01803bf9652482df60463341cda4bcedc252217e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Dec 2020 05:01:57 -0500 Subject: [PATCH 0253/2257] 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 48dbd56..c71eb7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201205.2-unstable +jellyfin20201205.17-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201203.8-unstable +jellyfin-server20201205.17-unstable jellyfin-web20201205.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f21bed119ba89ae0898c51e8bbaf5f0d24f54352 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Dec 2020 12:13:04 -0500 Subject: [PATCH 0254/2257] 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 c71eb7e..c9e961b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201205.17-unstable +jellyfin20201205.29-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201205.17-unstable +jellyfin-server20201205.29-unstable jellyfin-web20201205.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 96d3385f863a33f79b284b994d6c44db65e0bbd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Dec 2020 00:03:08 +0000 Subject: [PATCH 0255/2257] 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 c9e961b..9bfc4c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201205.29-unstable +jellyfin20201205.32-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201205.29-unstable -jellyfin-web20201205.2-unstable +jellyfin-server20201205.32-unstable +jellyfin-web20201205.21-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 7a895500876256717beec7d2fb15762ce0d3e84b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Dec 2020 07:03:54 +0000 Subject: [PATCH 0256/2257] 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 9bfc4c9..ee100b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201205.32-unstable +jellyfin20201206.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201205.32-unstable -jellyfin-web20201205.21-unstable +jellyfin-web20201206.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From b4fa3889d98300a6d2ed637260fc837db50aba98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Dec 2020 14:01:25 +0000 Subject: [PATCH 0257/2257] 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 ee100b7..406fc78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201206.3-unstable +jellyfin20201206.4-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201205.32-unstable -jellyfin-web20201206.3-unstable +jellyfin-web20201206.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 319b3d40a705ebb0d26376a3e4f6482809a81376 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Dec 2020 21:01:43 +0000 Subject: [PATCH 0258/2257] 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 406fc78..5ed94f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201206.4-unstable +jellyfin20201206.11-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201205.32-unstable -jellyfin-web20201206.4-unstable +jellyfin-server20201206.4-unstable +jellyfin-web20201206.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From c1365368a8e8fb869e5b4195fe94faf4d36140b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Dec 2020 07:13:57 +0000 Subject: [PATCH 0259/2257] 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 5ed94f7..59940c8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201206.11-unstable +jellyfin20201207.12-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201206.4-unstable -jellyfin-web20201206.11-unstable +jellyfin-web20201207.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From fdff2cd116f5e882862873ba6abdc116f04f5236 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Dec 2020 09:01:11 -0500 Subject: [PATCH 0260/2257] 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 59940c8..7e6f799 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201207.12-unstable +jellyfin20201207.13-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201206.4-unstable -jellyfin-web20201207.12-unstable +jellyfin-web20201207.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 2d48abe7e34c56c7de5fa40a6d90167c30008676 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Dec 2020 21:01:17 +0000 Subject: [PATCH 0261/2257] 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 7e6f799..c20db7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201207.13-unstable +jellyfin20201207.19-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201206.4-unstable -jellyfin-web20201207.13-unstable +jellyfin-web20201207.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From a54b4ed2e0b025e5ac674bed53b8bc891a9e4116 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Dec 2020 23:02:18 -0500 Subject: [PATCH 0262/2257] 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 c20db7a..f1895a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201207.19-unstable +jellyfin20201208.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201206.4-unstable -jellyfin-web20201207.19-unstable +jellyfin-web20201208.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 1025936e3190a113c8fb0bae35a95c8d00a9d5fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Dec 2020 06:02:01 -0500 Subject: [PATCH 0263/2257] 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 f1895a6..024e871 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201208.1-unstable +jellyfin20201208.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201206.4-unstable +jellyfin-server20201208.4-unstable jellyfin-web20201208.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From df547eb1ed93780612e869a6a0862f92a934a0ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Dec 2020 17:17:07 +0000 Subject: [PATCH 0264/2257] 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 024e871..6cf83df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201208.4-unstable +jellyfin20201208.8-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201208.4-unstable -jellyfin-web20201208.1-unstable +jellyfin-web20201208.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 @@ -147,7 +147,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 From 6005aa7d07f176c44c5f097e05f16fac9f707474 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Dec 2020 00:01:18 +0000 Subject: [PATCH 0265/2257] 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 6cf83df..6bc6e2f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201208.8-unstable +jellyfin20201208.15-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201208.4-unstable +jellyfin-server20201208.15-unstable jellyfin-web20201208.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 49728a8714af42adc1c2860fe16da376f244d56e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Dec 2020 07:03:22 +0000 Subject: [PATCH 0266/2257] 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 6bc6e2f..b9e3fa8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201208.15-unstable +jellyfin20201209.4-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201208.15-unstable -jellyfin-web20201208.8-unstable +jellyfin-web20201209.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 0cf60c13b6599da410fb2d2b7e19abd53f1b13cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Dec 2020 09:04:31 -0500 Subject: [PATCH 0267/2257] 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 b9e3fa8..38d5792 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201209.4-unstable +jellyfin20201209.13-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201208.15-unstable +jellyfin-server20201209.13-unstable jellyfin-web20201209.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b8c4009076ef86d5d21e425a1e37b27b5bb025a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Dec 2020 16:02:13 -0500 Subject: [PATCH 0268/2257] 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 38d5792..cfc4c14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201209.13-unstable +jellyfin20201209.18-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201209.13-unstable -jellyfin-web20201209.4-unstable +jellyfin-web20201209.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From ba3809d998e5dabe39a27e4f289276036b1ace01 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Dec 2020 08:38:12 -0500 Subject: [PATCH 0269/2257] 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 cfc4c14..80ccb56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201209.18-unstable +jellyfin20201210.4-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201209.13-unstable -jellyfin-web20201209.18-unstable +jellyfin-web20201210.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.1 From 082a3976dc695ede18f43156ba91c5369316a3bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Dec 2020 13:44:55 +0000 Subject: [PATCH 0270/2257] 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 80ccb56..76c453c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201210.4-unstable +jellyfin20201210.8-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201209.13-unstable +jellyfin-server20201210.8-unstable jellyfin-web20201210.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b326d2cc5abee40bedf66ce02c1c48f629e1179f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Dec 2020 20:06:20 +0000 Subject: [PATCH 0271/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 76c453c..df338de 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 at3.1.23-1ubuntu1 base-files11ubuntu5.2 base-passwd3.5.47 @@ -9,7 +9,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 @@ -38,13 +38,13 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201210.8-unstable +jellyfin20201210.11-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201210.8-unstable +jellyfin-server20201210.11-unstable jellyfin-web20201210.4-unstable 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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -62,7 +62,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.1 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.2 +libcurl47.68.0-1ubuntu2.4 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.101-2 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 b886e39a2ad30129b51fceadd78e93c77442375f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Dec 2020 21:13:52 -0500 Subject: [PATCH 0272/2257] 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 df338de..7902a36 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201210.11-unstable +jellyfin20201210.25-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201210.11-unstable -jellyfin-web20201210.4-unstable +jellyfin-server20201210.25-unstable +jellyfin-web20201210.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d325d7365b95448db47b1ce33426f3e68dfecf93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Dec 2020 01:02:03 -0500 Subject: [PATCH 0273/2257] 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 7902a36..a5ae599 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201210.25-unstable +jellyfin20201211.5-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201210.25-unstable -jellyfin-web20201210.10-unstable +jellyfin-web20201211.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 844bf1c2e1b091bdfd3166cdeb2a0e5af5a05fc0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Dec 2020 01:02:23 -0500 Subject: [PATCH 0274/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4b31485..0cf2b66 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 at3.1.23-1ubuntu1 base-files11ubuntu5.2 base-passwd3.5.47 @@ -9,7 +9,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 @@ -39,12 +39,12 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin10.6.4-1 -jellyfin-ffmpeg4.3.1-2-focal +jellyfin-ffmpeg4.3.1-3-focal jellyfin-server10.6.4-1 jellyfin-web10.6.4-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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -62,7 +62,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.1 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.2 +libcurl47.68.0-1ubuntu2.4 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.101-2 @@ -147,7 +147,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 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 c586f863765cb0df18c4f33c845e1d056a9be3b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Dec 2020 13:09:38 +0000 Subject: [PATCH 0275/2257] 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 a5ae599..9cfff05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201211.5-unstable +jellyfin20201211.8-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201210.25-unstable +jellyfin-server20201211.8-unstable jellyfin-web20201211.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ee148d3a1f61e16659a1f42cc3b0e0aaba7a56a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Dec 2020 22:02:44 +0000 Subject: [PATCH 0276/2257] 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 9cfff05..257dea0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201211.8-unstable +jellyfin20201211.23-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201211.8-unstable -jellyfin-web20201211.5-unstable +jellyfin-server20201211.23-unstable +jellyfin-web20201211.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d331101594d26ae8fbebdcf80984b80b9d207e26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Dec 2020 14:03:30 -0500 Subject: [PATCH 0277/2257] 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 257dea0..07f42f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201211.23-unstable +jellyfin20201212.5-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201211.23-unstable -jellyfin-web20201211.7-unstable +jellyfin-server20201212.5-unstable +jellyfin-web20201211.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 47a07093648595e8b706b4974bfe8ecd9d513a9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Dec 2020 05:09:49 +0000 Subject: [PATCH 0278/2257] 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 07f42f4..359efc0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201212.5-unstable +jellyfin20201213.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201212.5-unstable +jellyfin-server20201213.1-unstable jellyfin-web20201211.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 981f03a3c0548f7de8ddb5fc520f1596120e6805 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Dec 2020 07:02:19 -0500 Subject: [PATCH 0279/2257] 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 359efc0..a057136 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201213.1-unstable +jellyfin20201213.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201213.1-unstable +jellyfin-server20201213.2-unstable jellyfin-web20201211.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9a9fd532114ecec4a4bda46c19768607ebe1238b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Dec 2020 19:08:16 +0000 Subject: [PATCH 0280/2257] 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 a057136..dbe6b1b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201213.2-unstable +jellyfin20201213.6-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201213.2-unstable +jellyfin-server20201213.6-unstable jellyfin-web20201211.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a681fa4d32fce0e3f6f9149016ec34acc2df7643 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Dec 2020 01:42:26 +0000 Subject: [PATCH 0281/2257] 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 dbe6b1b..6432691 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201213.6-unstable +jellyfin20201213.13-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201213.6-unstable -jellyfin-web20201211.8-unstable +jellyfin-server20201213.13-unstable +jellyfin-web20201213.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 65e07ed339c7853922b0bf03b9185340fb559981 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Dec 2020 03:05:01 -0500 Subject: [PATCH 0282/2257] 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 6432691..2fac5ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201213.13-unstable +jellyfin20201214.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201213.13-unstable -jellyfin-web20201213.1-unstable +jellyfin-web20201214.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From f6583b712d2d5af0dea8091c4b1032eebc0d700f Mon Sep 17 00:00:00 2001 From: artiume Date: Mon, 14 Dec 2020 07:40:37 -0500 Subject: [PATCH 0283/2257] Add Jellyfin binary environmentals --- readme-vars.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index b5c3764..3a13d34 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -37,7 +37,8 @@ param_env_vars: # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Emby, default if left unset is 022."} + - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Jellyfin, default if left unset is 022."} + - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -66,6 +67,8 @@ optional_parameters: | -p 1900:1900/udp \ ``` + The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability. + # application setup block app_setup_block_enabled: true app_setup_block: | From b9aa696afdbffc19055e72a69a8fd9a49a474718 Mon Sep 17 00:00:00 2001 From: artiume Date: Mon, 14 Dec 2020 07:44:52 -0500 Subject: [PATCH 0284/2257] Update readme-vars.yml --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index 3a13d34..90199d7 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -117,6 +117,7 @@ app_setup_block: | # changelog changelogs: + - { date: "14.12.20:", desc: "Add Jellyfin Binary Environmental" } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } From 2e9464f7bbc077f2196b2724e56d9e9148b4db24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Dec 2020 10:05:09 -0500 Subject: [PATCH 0285/2257] 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 2fac5ca..8b7e6af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201214.3-unstable +jellyfin20201214.20-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201213.13-unstable -jellyfin-web20201214.3-unstable +jellyfin-web20201214.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 7399f5d9525ee2e24f050a2d2aea0629c743c08f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Dec 2020 22:05:30 +0000 Subject: [PATCH 0286/2257] 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 8b7e6af..9d11c15 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201214.20-unstable +jellyfin20201214.35-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201213.13-unstable -jellyfin-web20201214.20-unstable +jellyfin-web20201214.35-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From fa905dd166d3ebf0b99b80e59e12c33dce19ebf2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Dec 2020 09:04:51 +0000 Subject: [PATCH 0287/2257] 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 9d11c15..fe5642d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201214.35-unstable +jellyfin20201215.9-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201213.13-unstable +jellyfin-server20201215.9-unstable jellyfin-web20201214.35-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cc4bc0de1dc68141bc1103cb8453c72b0161af81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Dec 2020 11:05:40 -0500 Subject: [PATCH 0288/2257] 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 fe5642d..f189668 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201215.9-unstable +jellyfin20201215.17-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201215.9-unstable +jellyfin-server20201215.17-unstable jellyfin-web20201214.35-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 300e2839e87043e7e4af28ff491570d57209440e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Dec 2020 17:58:02 -0500 Subject: [PATCH 0289/2257] 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 ad69165..8b13789 100755 --- 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 b2d8eec..0662557 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 fce5db8..ff3c7b3 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Find us at: [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/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-jellyfin/container_registry) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) From f913cb4fc6a5d3bd1ef2d2c5cf5f5933825087d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Dec 2020 17:59:12 -0500 Subject: [PATCH 0290/2257] 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 100755 .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 100755 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..a1b8f4e --- /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-jellyfin + 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..7df1f84 --- /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 5b8c097..4487f5c 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/jellyfin" diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 85e17f6..dcacc01 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 2b44346..bb2533f 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 9109f4534fc7ef2e8dcfa0a70ba73d607d915127 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Dec 2020 18:07:30 -0500 Subject: [PATCH 0291/2257] 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 f189668..a6f0dc1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201215.17-unstable +jellyfin20201215.24-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201215.17-unstable +jellyfin-server20201215.24-unstable jellyfin-web20201214.35-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e1e31d1a07121b3ef56dc95b3ddc083460b558ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Dec 2020 12:42:21 -0500 Subject: [PATCH 0292/2257] 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 a6f0dc1..b217458 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201215.24-unstable +jellyfin20201216.4-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201215.24-unstable -jellyfin-web20201214.35-unstable +jellyfin-web20201216.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From f764459f07b48dd4f0bcc0954a7761a3e6438d66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Dec 2020 19:15:23 -0500 Subject: [PATCH 0293/2257] 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 b217458..43577d9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201216.4-unstable +jellyfin20201216.14-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201215.24-unstable -jellyfin-web20201216.4-unstable +jellyfin-server20201216.11-unstable +jellyfin-web20201216.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 3c803bd2c8447410af0c7450ba867ae695b16cc2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Dec 2020 12:03:47 +0000 Subject: [PATCH 0294/2257] 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 43577d9..76d5adb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201216.14-unstable +jellyfin20201217.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201216.11-unstable -jellyfin-web20201216.14-unstable +jellyfin-web20201217.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From b0f1c1ff68501e188925a506735d3212dd3d74a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Dec 2020 14:10:01 -0500 Subject: [PATCH 0295/2257] 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 76d5adb..4ec9dde 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201217.1-unstable +jellyfin20201217.13-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201216.11-unstable -jellyfin-web20201217.1-unstable +jellyfin-server20201217.13-unstable +jellyfin-web20201217.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From b569e580a247be76ae6c0053b8db34330317702d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Dec 2020 20:44:05 -0500 Subject: [PATCH 0296/2257] 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 4ec9dde..e22ceef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201217.13-unstable +jellyfin20201217.15-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201217.13-unstable -jellyfin-web20201217.5-unstable +jellyfin-server20201217.15-unstable +jellyfin-web20201217.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 32628cf9b0a9c03290849dd0bcd7280ad4b5ad83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Dec 2020 00:57:33 -0500 Subject: [PATCH 0297/2257] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 37 ------------------------------- Jenkinsfile | 46 +++++++++++++++++++++++++++++++-------- README.md | 2 +- 3 files changed, 38 insertions(+), 47 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index ad69165..8b13789 100755 --- 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 14df4f2..f7e133b 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( @@ -135,6 +135,7 @@ pipeline { } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } + env.VERSION_TAG = 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 { } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } + env.VERSION_TAG = 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/' @@ -177,6 +179,7 @@ pipeline { } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } + env.VERSION_TAG = 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 @@ -238,9 +241,12 @@ pipeline { git checkout -f master 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-latest \ + ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ ${DELETEIMAGE}:arm32v7-latest \ + ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-latest || : + ${DELETEIMAGE}:arm64v8-latest \ + ${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 88653e6..c858b47 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Find us at: [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/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-jellyfin/container_registry) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) From 355cbdc7e134e952c901776088b43b00b4a988e4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Dec 2020 00:58:53 -0500 Subject: [PATCH 0298/2257] 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 100755 .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 100755 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..a1b8f4e --- /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-jellyfin + 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..7df1f84 --- /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 3ff6caf..3d7ec0e 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/jellyfin" diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 85e17f6..dcacc01 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 2b44346..bb2533f 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 c30a8fef7e2e90a35e9c07184d7714a8f799f890 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Dec 2020 13:18:10 +0000 Subject: [PATCH 0299/2257] 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 e22ceef..cc2395a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201217.15-unstable +jellyfin20201218.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201217.15-unstable -jellyfin-web20201217.6-unstable +jellyfin-server20201218.1-unstable +jellyfin-web20201218.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 4025518066dcd9fcfa820b6add960ecdf3d0bc66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Dec 2020 16:03:26 -0500 Subject: [PATCH 0300/2257] 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 cc2395a..bb34f23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201218.2-unstable +jellyfin20201218.23-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201218.1-unstable -jellyfin-web20201218.2-unstable +jellyfin-server20201218.23-unstable +jellyfin-web20201218.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d0542ed5f8b3a73e6318c2a4d3c91f246f80112e Mon Sep 17 00:00:00 2001 From: artiume Date: Fri, 18 Dec 2020 21:51:41 -0500 Subject: [PATCH 0301/2257] add migration environmentals --- readme-vars.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 90199d7..ed5ee63 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -33,12 +33,16 @@ param_ports: - { external_port: "8096", internal_port: "8096", port_desc: "Http webUI." } param_usage_include_env: true param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Jellyfin, default if left unset is 022."} - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} + - { env_var: "JELLYFIN_DATA_DIR", env_value: "config/data", desc: "sets the data directory. This will allow migration to the native Jellyfin image."} + - { env_var: "JELLYFIN_CONFIG_DIR", env_value: "/config", desc: "sets the config directory. This will allow migration to the native Jellyfin image."} + - { env_var: "JELLYFIN_LOG_DIR", env_value: "config/log", desc: "sets the log directory. This will allow migration to the native Jellyfin image."} + - { env_var: "JELLYFIN_CACHE_DIR", env_value: "config/cache", desc: "sets the cache directory. This will allow migration to the native Jellyfin image."} opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -74,7 +78,7 @@ app_setup_block_enabled: true app_setup_block: | Webui can be found at `http://:8096` - More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . + More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). ## Hardware Acceleration @@ -114,10 +118,9 @@ app_setup_block: | --device=/dev/video12:/dev/video12 ``` - # changelog changelogs: - - { date: "14.12.20:", desc: "Add Jellyfin Binary Environmental" } + - { date: "14.12.20:", desc: "Add Jellyfin Binary Environmentals" } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } From 911b1c606f12aac7327215a1cd0eb9ce1ef80bff Mon Sep 17 00:00:00 2001 From: artiume Date: Fri, 18 Dec 2020 22:11:14 -0500 Subject: [PATCH 0302/2257] Update readme-vars.yml --- readme-vars.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index ed5ee63..5ede7c1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -39,10 +39,6 @@ opt_param_usage_include_env: true opt_param_env_vars: - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Jellyfin, default if left unset is 022."} - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} - - { env_var: "JELLYFIN_DATA_DIR", env_value: "config/data", desc: "sets the data directory. This will allow migration to the native Jellyfin image."} - - { env_var: "JELLYFIN_CONFIG_DIR", env_value: "/config", desc: "sets the config directory. This will allow migration to the native Jellyfin image."} - - { env_var: "JELLYFIN_LOG_DIR", env_value: "config/log", desc: "sets the log directory. This will allow migration to the native Jellyfin image."} - - { env_var: "JELLYFIN_CACHE_DIR", env_value: "config/cache", desc: "sets the cache directory. This will allow migration to the native Jellyfin image."} opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -71,7 +67,7 @@ optional_parameters: | -p 1900:1900/udp \ ``` - The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability. + The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. # application setup block app_setup_block_enabled: true From 03d44f061d3b6426f386acf468edfd79fe649036 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Dec 2020 20:01:39 +0000 Subject: [PATCH 0303/2257] 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 bb34f23..c4688f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201218.23-unstable +jellyfin20201219.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201218.23-unstable -jellyfin-web20201218.8-unstable +jellyfin-web20201219.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 77f45ebbbe32f737222f5ca959c44d56ff674fdb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Dec 2020 05:08:09 -0500 Subject: [PATCH 0304/2257] 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 c4688f4..72d011c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201219.1-unstable +jellyfin20201220.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201218.23-unstable -jellyfin-web20201219.1-unstable +jellyfin-server20201220.2-unstable +jellyfin-web20201220.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From b488ff3056ba1b58e848bd00721a8855e2055d16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Dec 2020 00:09:41 +0000 Subject: [PATCH 0305/2257] 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 72d011c..e9c8244 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201220.4-unstable +jellyfin20201220.13-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201220.2-unstable +jellyfin-server20201220.13-unstable jellyfin-web20201220.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1fc1a08fb90a2aa6fcb7277e3672d98839b8eabf Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 22 Dec 2020 11:24:27 -0500 Subject: [PATCH 0306/2257] update rpi repo, add rpi libs to aarch64 --- Dockerfile.aarch64 | 3 ++- Dockerfile.armhf | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8c9ba5c..802ba4e 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -20,7 +20,7 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ @@ -34,6 +34,7 @@ RUN \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ + libraspberrypi0 \ libssl1.1 && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 6683ac7..4cb899e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -20,7 +20,7 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ From d0bd3071a6e2da2b1294d606081646fed5b32da0 Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 22 Dec 2020 11:05:52 -0500 Subject: [PATCH 0307/2257] update rpi repo, add rpi libs to aarch64 --- Dockerfile.aarch64 | 3 ++- Dockerfile.armhf | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 9c8580a..24c2222 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -21,7 +21,7 @@ RUN \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ @@ -38,6 +38,7 @@ RUN \ libfreetype6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ + libraspberrypi0 \ libssl1.1 && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4fe9691..9647c99 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -21,7 +21,7 @@ RUN \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ From 7c97035b2d0073e725c8678c1e4f771d3b7c019a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Dec 2020 21:10:54 +0000 Subject: [PATCH 0308/2257] 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 e9c8244..bfdac03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201220.13-unstable +jellyfin20201222.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201220.13-unstable -jellyfin-web20201220.4-unstable +jellyfin-server20201221.12-unstable +jellyfin-web20201222.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From aa6bb6cfa4c41586e8750fa28da6600f28410a8a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Dec 2020 11:14:32 +0000 Subject: [PATCH 0309/2257] 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 bfdac03..19b6629 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201222.3-unstable +jellyfin20201223.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201221.12-unstable -jellyfin-web20201222.3-unstable +jellyfin-server20201223.3-unstable +jellyfin-web20201223.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 36a86688851934950ece984a4e4df741fec11d14 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Dec 2020 06:11:42 +0000 Subject: [PATCH 0310/2257] 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 19b6629..5c05327 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201223.3-unstable +jellyfin20201224.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201223.2-unstable +jellyfin-web20201224.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 2ac00851a6cf17b1f864ce574d9e41d3e0d632e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Dec 2020 13:24:16 +0000 Subject: [PATCH 0311/2257] 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 5c05327..63d26fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201224.1-unstable +jellyfin20201224.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201224.1-unstable +jellyfin-web20201224.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From ad307f9c57a661ac6eb3d4311dd8a85a36d08880 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Dec 2020 21:33:27 -0500 Subject: [PATCH 0312/2257] 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 63d26fb..2f1cbab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201224.2-unstable +jellyfin20201224.6-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201224.2-unstable +jellyfin-web20201224.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From f3b18dae1ca2815ffca6e490aa3e199ebd55c656 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 25 Dec 2020 09:05:04 -0500 Subject: [PATCH 0313/2257] 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 2f1cbab..e94fe16 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201224.6-unstable +jellyfin20201225.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201224.6-unstable +jellyfin-web20201225.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 458badf6aa5a6bfce578b1b427adc1d85be6a60f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 25 Dec 2020 16:05:04 -0500 Subject: [PATCH 0314/2257] 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 e94fe16..28ccd5a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201225.3-unstable +jellyfin20201225.6-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201225.3-unstable +jellyfin-web20201225.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 76cb320b75157e4971499ada9a16820c94802422 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Dec 2020 09:07:06 -0500 Subject: [PATCH 0315/2257] 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 28ccd5a..f5ab386 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201225.6-unstable +jellyfin20201227.7-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201225.6-unstable +jellyfin-web20201227.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From bf3de648af7b7e6fbf5f3010be43faa12d251a56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Dec 2020 16:05:32 -0500 Subject: [PATCH 0316/2257] 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 f5ab386..2c26f0c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201227.7-unstable +jellyfin20201227.8-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201223.3-unstable -jellyfin-web20201227.7-unstable +jellyfin-web20201227.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 19c62048e1e8bba109cb831adf1d73132020472a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Dec 2020 06:11:52 -0500 Subject: [PATCH 0317/2257] 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 2c26f0c..36f8c4c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201227.8-unstable +jellyfin20201228.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201223.3-unstable +jellyfin-server20201228.4-unstable jellyfin-web20201227.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a41885177db957e33334d51b1c2e734ae88d3333 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Dec 2020 12:41:57 -0500 Subject: [PATCH 0318/2257] 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 36f8c4c..1c4e89e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201228.4-unstable +jellyfin20201228.33-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201228.4-unstable -jellyfin-web20201227.8-unstable +jellyfin-server20201228.12-unstable +jellyfin-web20201228.33-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 719e211607ef49cceba211a932fe22bf4348b8a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Dec 2020 19:16:10 -0500 Subject: [PATCH 0319/2257] 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 1c4e89e..83f5332 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201228.33-unstable +jellyfin20201228.35-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201228.12-unstable -jellyfin-web20201228.33-unstable +jellyfin-web20201228.35-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From b6b6e141c2bda5e8dcbb8c0c1e93266c4eca9853 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Dec 2020 02:15:58 -0500 Subject: [PATCH 0320/2257] 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 83f5332..9db1bf5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201228.35-unstable +jellyfin20201229.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201228.12-unstable -jellyfin-web20201228.35-unstable +jellyfin-web20201229.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 43166c677d446254d274139cc2b4310084c748ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Dec 2020 17:45:54 +0000 Subject: [PATCH 0321/2257] 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 9db1bf5..b1b4894 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201229.1-unstable +jellyfin20201229.8-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201228.12-unstable -jellyfin-web20201229.1-unstable +jellyfin-server20201229.1-unstable +jellyfin-web20201229.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From aa1f784e1db27b43b8c0c950143ea1ab683c7869 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Dec 2020 05:13:37 -0500 Subject: [PATCH 0322/2257] 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 b1b4894..9edd1d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201229.8-unstable +jellyfin20201230.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201229.1-unstable +jellyfin-server20201230.1-unstable jellyfin-web20201229.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4eaf2efc7489f2ece733f9b9502e64dd3d685487 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Dec 2020 18:32:00 +0000 Subject: [PATCH 0323/2257] 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 9edd1d0..8a63be7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201230.1-unstable +jellyfin20201230.15-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201230.1-unstable +jellyfin-server20201230.15-unstable jellyfin-web20201229.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4bb79b6e500f1beaaeaf25edd6d8831a3ffe0c3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Dec 2020 21:06:05 -0500 Subject: [PATCH 0324/2257] 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 8a63be7..2162cd5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201230.15-unstable +jellyfin20201231.5-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201230.15-unstable -jellyfin-web20201229.8-unstable +jellyfin-server20201231.5-unstable +jellyfin-web20201230.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From edc98d758d24a1eff5014c851d4d565a01cf42d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 31 Dec 2020 04:17:59 -0500 Subject: [PATCH 0325/2257] 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 2162cd5..199a63e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201231.5-unstable +jellyfin20201231.14-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201231.5-unstable +jellyfin-server20201231.14-unstable jellyfin-web20201230.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f2a680aa903b950b5e5be8a8b0dd01dc48ac7b3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 31 Dec 2020 16:19:41 +0000 Subject: [PATCH 0326/2257] 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 199a63e..f9f81db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201231.14-unstable +jellyfin20201231.27-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201231.14-unstable -jellyfin-web20201230.12-unstable +jellyfin-server20201231.27-unstable +jellyfin-web20201231.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From c2e10780faa6d7740ea937512d21ad1218772489 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 31 Dec 2020 21:06:53 -0500 Subject: [PATCH 0327/2257] 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 f9f81db..362f991 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201231.27-unstable +jellyfin20201231.31-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201231.27-unstable -jellyfin-web20201231.4-unstable +jellyfin-server20201231.31-unstable +jellyfin-web20201231.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 8b6cd98416786ff2cf1f5a395ed9583ec03b0562 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Jan 2021 13:26:14 +0000 Subject: [PATCH 0328/2257] 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 362f991..6a426f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20201231.31-unstable +jellyfin20210101.7-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20201231.31-unstable -jellyfin-web20201231.10-unstable +jellyfin-web20210101.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From f290fde1d8513176d1f8f495b2fa9a83d6c365a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Jan 2021 15:09:46 -0500 Subject: [PATCH 0329/2257] 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 6a426f3..1ba402b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210101.7-unstable +jellyfin20210101.15-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20201231.31-unstable -jellyfin-web20210101.7-unstable +jellyfin-server20210101.15-unstable +jellyfin-web20210101.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 0f958cd8ad26a90b96a59e93ad6128a6b8e3fbd5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Jan 2021 02:19:10 -0500 Subject: [PATCH 0330/2257] 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 1ba402b..7556a68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210101.15-unstable +jellyfin20210102.5-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210101.15-unstable +jellyfin-server20210102.5-unstable jellyfin-web20210101.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 964d8f212c39acb29c9d80577a48b9fc72455dbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Jan 2021 09:09:53 -0500 Subject: [PATCH 0331/2257] 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 7556a68..416b1c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210102.5-unstable +jellyfin20210102.6-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210102.5-unstable -jellyfin-web20210101.9-unstable +jellyfin-server20210102.6-unstable +jellyfin-web20210102.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 6ad9db08abe286b3d62eee5e469eb7778e52976c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Jan 2021 21:08:47 +0000 Subject: [PATCH 0332/2257] 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 416b1c2..d0a8778 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210102.6-unstable +jellyfin20210102.13-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210102.6-unstable -jellyfin-web20210102.3-unstable +jellyfin-server20210102.13-unstable +jellyfin-web20210102.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 74ab69ad99e429fc3ea66adb5fa5de2fbafd7760 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Jan 2021 03:25:48 +0000 Subject: [PATCH 0333/2257] 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 d0a8778..f532fff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210102.13-unstable +jellyfin20210103.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210102.13-unstable +jellyfin-server20210103.1-unstable jellyfin-web20210102.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0087153ef56458bb648317390fde900a622a2919 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Jan 2021 07:07:07 -0500 Subject: [PATCH 0334/2257] 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 f532fff..8977a33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210103.1-unstable +jellyfin20210103.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210103.1-unstable -jellyfin-web20210102.8-unstable +jellyfin-web20210103.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d81dc9f60830aae5be388458cacda4055df4f470 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Jan 2021 13:29:34 -0500 Subject: [PATCH 0335/2257] 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 8977a33..dbafd6b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210103.2-unstable +jellyfin20210103.5-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210103.1-unstable -jellyfin-web20210103.2-unstable +jellyfin-server20210103.5-unstable +jellyfin-web20210103.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From bd582cf849c15f11c50b7edd38597cc242e46171 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Jan 2021 07:10:50 -0500 Subject: [PATCH 0336/2257] 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 dbafd6b..436f273 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210103.5-unstable +jellyfin20210104.41-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210103.5-unstable -jellyfin-web20210103.3-unstable +jellyfin-web20210104.41-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 13cf82760194c0bf873b281620b75a8d4d4fb852 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Jan 2021 12:17:55 +0000 Subject: [PATCH 0337/2257] 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 436f273..77abbeb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210104.41-unstable +jellyfin20210104.60-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210103.5-unstable -jellyfin-web20210104.41-unstable +jellyfin-web20210104.60-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 1f625ef6b20d90d064c0158ed1c96d3b10af5272 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Jan 2021 13:31:36 -0500 Subject: [PATCH 0338/2257] 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 77abbeb..7f57894 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210104.60-unstable +jellyfin20210104.65-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210103.5-unstable -jellyfin-web20210104.60-unstable +jellyfin-server20210104.2-unstable +jellyfin-web20210104.65-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 9d957f6c904935b49b62e03c4e2fe9edb802a4b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 5 Jan 2021 02:13:49 +0000 Subject: [PATCH 0339/2257] 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 7f57894..5eab0a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210104.65-unstable +jellyfin20210104.66-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210104.2-unstable -jellyfin-web20210104.65-unstable +jellyfin-web20210104.66-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 0a1ac884a8424f23a2b34de1566edeb70b921776 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 5 Jan 2021 12:09:12 +0000 Subject: [PATCH 0340/2257] 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 5eab0a4..a530909 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210104.66-unstable +jellyfin20210105.13-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210104.2-unstable -jellyfin-web20210104.66-unstable +jellyfin-web20210105.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 45d5f4e061d317c15faf48ed86b94af68e43a7b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 5 Jan 2021 18:32:18 +0000 Subject: [PATCH 0341/2257] 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 a530909..5ae6acd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210105.13-unstable +jellyfin20210105.22-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210104.2-unstable -jellyfin-web20210105.13-unstable +jellyfin-web20210105.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 4c8099a751e0f1ffc4e453ad8e019602adfbf343 Mon Sep 17 00:00:00 2001 From: tobbenb Date: Tue, 5 Jan 2021 19:55:58 +0100 Subject: [PATCH 0342/2257] Add nvidia.icd file to fix missing tonemapping using Nvidia HW --- README.md | 1 + readme-vars.yml | 1 + root/etc/OpenCL/vendors/nvidia.icd | 1 + 3 files changed, 3 insertions(+) create mode 100644 root/etc/OpenCL/vendors/nvidia.icd diff --git a/README.md b/README.md index ff3c7b3..ccf0b14 100644 --- a/README.md +++ b/README.md @@ -300,6 +300,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.01.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Install nightly from unstable. * **27.05.20:** - Set web directory path. diff --git a/readme-vars.yml b/readme-vars.yml index 4c20f80..1647ddb 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -100,6 +100,7 @@ app_setup_block: | # changelog changelogs: + - { date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Install nightly from unstable." } - { date: "27.05.20:", desc: "Set web directory path." } diff --git a/root/etc/OpenCL/vendors/nvidia.icd b/root/etc/OpenCL/vendors/nvidia.icd new file mode 100644 index 0000000..9712af9 --- /dev/null +++ b/root/etc/OpenCL/vendors/nvidia.icd @@ -0,0 +1 @@ +libnvidia-opencl.so.1 From e77d0e4b0c552991e4ccb00051a346b8284c5aae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Jan 2021 02:15:22 +0000 Subject: [PATCH 0343/2257] 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 5ae6acd..f38db70 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210105.22-unstable +jellyfin20210105.27-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210104.2-unstable -jellyfin-web20210105.22-unstable +jellyfin-web20210105.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 6558d26c9c7e4493875a33610217bcd0bf9307b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Jan 2021 09:19:11 +0000 Subject: [PATCH 0344/2257] 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 f38db70..b21ed67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210105.27-unstable +jellyfin20210106.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210104.2-unstable +jellyfin-server20210106.1-unstable jellyfin-web20210105.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -65,12 +65,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.4 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.101-2 -libdrm-amdgpu12.4.101-2 -libdrm-common2.4.101-2 -libdrm-intel12.4.101-2 -libdrm-nouveau22.4.101-2 -libdrm-radeon12.4.101-2 +libdrm22.4.102-1ubuntu1~20.04.1 +libdrm-amdgpu12.4.102-1ubuntu1~20.04.1 +libdrm-common2.4.102-1ubuntu1~20.04.1 +libdrm-intel12.4.102-1ubuntu1~20.04.1 +libdrm-nouveau22.4.102-1ubuntu1~20.04.1 +libdrm-radeon12.4.102-1ubuntu1~20.04.1 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -107,7 +107,7 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.5 libldap-common2.4.49+dfsg-2ubuntu1.5 -libllvm101:10.0.0-4ubuntu1 +libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 @@ -191,7 +191,7 @@ login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers20.0.8-0ubuntu1~20.04.1 +mesa-va-drivers20.2.6-0ubuntu0.20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From 1541aa7b60ed1aeb527185e703c1ddb12a67b2a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Jan 2021 12:52:19 -0500 Subject: [PATCH 0345/2257] 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 b21ed67..5414a29 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210106.1-unstable +jellyfin20210106.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210106.1-unstable +jellyfin-server20210106.4-unstable jellyfin-web20210105.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 571edeb5f59bf6b9620d2c7ce5e90444f769b9b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Jan 2021 19:21:37 -0500 Subject: [PATCH 0346/2257] 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 5414a29..1d0fad7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210106.4-unstable +jellyfin20210106.7-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210106.4-unstable +jellyfin-server20210106.7-unstable jellyfin-web20210105.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 650b1f54066d9c8f3ed2640943c1414b2838b4f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Jan 2021 16:31:41 +0000 Subject: [PATCH 0347/2257] 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 1d0fad7..01062eb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210106.7-unstable +jellyfin20210107.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210106.7-unstable -jellyfin-web20210105.27-unstable +jellyfin-server20210107.3-unstable +jellyfin-web20210107.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 @@ -120,7 +120,7 @@ libnpth01.6-1 libnuma12.0.12-1 libogg01.3.4-0ubuntu1 libopus01.3.1-0ubuntu1 -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 ba2eb286ef01a90597bea0776a1ef989278c697c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Jan 2021 18:23:17 -0500 Subject: [PATCH 0348/2257] 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 01062eb..eb2925a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210107.3-unstable +jellyfin20210107.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210107.3-unstable -jellyfin-web20210107.3-unstable +jellyfin-server20210107.4-unstable +jellyfin-web20210107.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From aaa85325f6a96d2adc066c5674b5fdf011e8a9d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jan 2021 01:16:46 -0500 Subject: [PATCH 0349/2257] 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 0cf2b66..c4fd246 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -65,12 +65,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.4 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.101-2 -libdrm-amdgpu12.4.101-2 -libdrm-common2.4.101-2 -libdrm-intel12.4.101-2 -libdrm-nouveau22.4.101-2 -libdrm-radeon12.4.101-2 +libdrm22.4.102-1ubuntu1~20.04.1 +libdrm-amdgpu12.4.102-1ubuntu1~20.04.1 +libdrm-common2.4.102-1ubuntu1~20.04.1 +libdrm-intel12.4.102-1ubuntu1~20.04.1 +libdrm-nouveau22.4.102-1ubuntu1~20.04.1 +libdrm-radeon12.4.102-1ubuntu1~20.04.1 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -107,7 +107,7 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.5 libldap-common2.4.49+dfsg-2ubuntu1.5 -libllvm101:10.0.0-4ubuntu1 +libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 @@ -120,7 +120,7 @@ libnpth01.6-1 libnuma12.0.12-1 libogg01.3.4-0ubuntu1 libopus01.3.1-0ubuntu1 -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 @@ -191,7 +191,7 @@ login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers20.0.8-0ubuntu1~20.04.1 +mesa-va-drivers20.2.6-0ubuntu0.20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From c7ee05377f8c6acdc0169beeb73777d94376d04e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jan 2021 01:18:05 -0500 Subject: [PATCH 0350/2257] 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 eb2925a..65bb0e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210107.4-unstable +jellyfin20210108.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210107.4-unstable -jellyfin-web20210107.4-unstable +jellyfin-web20210108.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 4abf5b31ba243c71dff411f531dcc98c02d52e74 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jan 2021 08:28:51 -0500 Subject: [PATCH 0351/2257] 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 65bb0e0..8ab9cae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210108.1-unstable +jellyfin20210108.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210107.4-unstable +jellyfin-server20210108.4-unstable jellyfin-web20210108.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e4aa585365a80b86d0ba7e44bfd714c5fb4aa686 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jan 2021 21:11:07 +0000 Subject: [PATCH 0352/2257] 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 8ab9cae..4df802f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210108.4-unstable +jellyfin20210108.11-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210108.4-unstable -jellyfin-web20210108.1-unstable +jellyfin-server20210108.11-unstable +jellyfin-web20210108.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 33e739794e83d5d3340e4448dd9cd187e5fb6eb2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Jan 2021 03:32:14 +0000 Subject: [PATCH 0353/2257] 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 4df802f..07b9dd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210108.11-unstable +jellyfin20210108.22-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210108.11-unstable +jellyfin-server20210108.22-unstable jellyfin-web20210108.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e3f7adf5fdee8ac75ce96a50cb9301abcdc7b3ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Jan 2021 17:59:06 +0000 Subject: [PATCH 0354/2257] 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 07b9dd4..ee031bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210108.22-unstable +jellyfin20210109.12-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210108.22-unstable -jellyfin-web20210108.2-unstable +jellyfin-server20210109.12-unstable +jellyfin-web20210109.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From e2efe9fe450cd5f083aae0fcac6ccd856be0c3c7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Jan 2021 19:19:14 -0500 Subject: [PATCH 0355/2257] 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 ee031bd..e003404 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210109.12-unstable +jellyfin20210109.17-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210109.12-unstable +jellyfin-server20210109.17-unstable jellyfin-web20210109.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 54033e5c4b46724edf97cf353127c960699c1d5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 10 Jan 2021 05:24:40 -0500 Subject: [PATCH 0356/2257] 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 e003404..a57c618 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210109.17-unstable +jellyfin20210110.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210109.17-unstable +jellyfin-server20210110.2-unstable jellyfin-web20210109.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6ec3b77061b3cbc8352eb8c79a4f1708f31fc939 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 10 Jan 2021 13:02:02 -0500 Subject: [PATCH 0357/2257] 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 a57c618..bb55d9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210110.2-unstable +jellyfin20210110.4-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210110.2-unstable -jellyfin-web20210109.1-unstable +jellyfin-web20210110.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 2a84da0f52399c7e02c58a2cf3888362508546ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 11 Jan 2021 10:15:19 -0500 Subject: [PATCH 0358/2257] 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 bb55d9b..7f41545 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210110.4-unstable +jellyfin20210111.8-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210110.2-unstable -jellyfin-web20210110.4-unstable +jellyfin-server20210111.7-unstable +jellyfin-web20210111.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From c5216fbaa966c3c8a94bcfeba748ff4670cefa6e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 11 Jan 2021 22:17:38 +0000 Subject: [PATCH 0359/2257] 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 7f41545..d7d2b88 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210111.8-unstable +jellyfin20210111.12-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210111.7-unstable -jellyfin-web20210111.8-unstable +jellyfin-web20210111.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From dc1ca0375284aa5aa8139879a36ff19483ac998c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 12 Jan 2021 11:17:44 -0500 Subject: [PATCH 0360/2257] 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 4487f5c..a4ec3f0 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 jellyfin branch nightly" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-jellyfin/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 ed5690e..cb747d6 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-jellyfin/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-jellyfin/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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 bb2533f..ee063ae 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 5 * * 5' + - cron: '03 2 * * 4' workflow_dispatch: jobs: diff --git a/Jenkinsfile b/Jenkinsfile index 0662557..a7476cb 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 47ff00bb42bd3db4dfc4397bc77fdb00d3d914e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 12 Jan 2021 11:26:23 -0500 Subject: [PATCH 0361/2257] 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 d7d2b88..905bfd0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210111.12-unstable +jellyfin20210112.20-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210111.7-unstable +jellyfin-server20210112.20-unstable jellyfin-web20210111.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cf1354fac6b348ba5da729b2705d9749bb179f4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 12 Jan 2021 18:30:29 -0500 Subject: [PATCH 0362/2257] 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 905bfd0..2d95c8d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210112.20-unstable +jellyfin20210112.30-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210112.20-unstable -jellyfin-web20210111.12-unstable +jellyfin-server20210112.30-unstable +jellyfin-web20210112.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From a61024c444204534aeacf02315e5d61776de335f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Jan 2021 02:34:53 -0500 Subject: [PATCH 0363/2257] 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 2d95c8d..a890016 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210112.30-unstable +jellyfin20210113.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210112.30-unstable -jellyfin-web20210112.4-unstable +jellyfin-web20210113.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 3cf2c2f0e6baca24f0f0ee7da521e220963a4876 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Jan 2021 08:42:43 -0500 Subject: [PATCH 0364/2257] 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 a890016..5e5817f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210113.1-unstable +jellyfin20210113.5-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210112.30-unstable -jellyfin-web20210113.1-unstable +jellyfin-server20210113.5-unstable +jellyfin-web20210113.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 8488d962f02103b999c1e045344e6a8ffdad24b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Jan 2021 16:24:35 -0500 Subject: [PATCH 0365/2257] 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 5e5817f..c6cc178 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210113.5-unstable +jellyfin20210113.12-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210113.5-unstable -jellyfin-web20210113.2-unstable +jellyfin-server20210113.12-unstable +jellyfin-web20210113.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From b217319726a0190365c43566ffac0fe7898c1f65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Jan 2021 13:20:20 -0500 Subject: [PATCH 0366/2257] 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 c6cc178..e4e1fc9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210113.12-unstable +jellyfin20210114.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210113.12-unstable -jellyfin-web20210113.5-unstable +jellyfin-web20210114.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 @@ -207,7 +207,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7 -tzdata2020d-0ubuntu0.20.04 +tzdata2020f-0ubuntu0.20.04.1 ubuntu-keyring2020.02.11.2 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From b51ea7831cd3dafc8e4e8ccbfc4ac2cfcbe0fade Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Jan 2021 01:22:39 -0500 Subject: [PATCH 0367/2257] 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 3d7ec0e..b793408 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 jellyfin branch master" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-jellyfin/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 ed5690e..cb747d6 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-jellyfin/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-jellyfin/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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 bb2533f..ee063ae 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 5 * * 5' + - cron: '03 2 * * 4' workflow_dispatch: jobs: diff --git a/Jenkinsfile b/Jenkinsfile index f7e133b..0249bfb 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 c95a3de23f26dd7dc9920da14c7f68304b162743 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Jan 2021 01:31:46 -0500 Subject: [PATCH 0368/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4fd246..f6e3d45 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -207,7 +207,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7 -tzdata2020d-0ubuntu0.20.04 +tzdata2020f-0ubuntu0.20.04.1 ubuntu-keyring2020.02.11.2 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 2a3dcbb64944fb96bb5d0106f9e224daa00cc212 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Jan 2021 18:35:43 -0500 Subject: [PATCH 0369/2257] 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 e4e1fc9..8465f5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210114.1-unstable +jellyfin20210115.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210113.12-unstable -jellyfin-web20210114.1-unstable +jellyfin-web20210115.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d13a96a03fdb63fd8babd669ab948bd95c6edcff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 16 Jan 2021 11:34:08 +0000 Subject: [PATCH 0370/2257] 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 8465f5e..51d36e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210115.1-unstable +jellyfin20210116.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210113.12-unstable -jellyfin-web20210115.1-unstable +jellyfin-web20210116.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 13f783a2e18e51abc1bca94d12004d1847a33f17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 16 Jan 2021 13:14:45 -0500 Subject: [PATCH 0371/2257] 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 51d36e5..ef984ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210116.1-unstable +jellyfin20210116.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210113.12-unstable -jellyfin-web20210116.1-unstable +jellyfin-web20210116.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d70971f9cc40e381d544a19853b12dd508e2553c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Jan 2021 02:33:52 -0500 Subject: [PATCH 0372/2257] 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 ef984ae..f2ab2e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210116.2-unstable +jellyfin20210117.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210113.12-unstable -jellyfin-web20210116.2-unstable +jellyfin-server20210116.6-unstable +jellyfin-web20210117.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 7caf4cb373ed71ebf03cb8c7ac56f50f427e9a0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Jan 2021 09:29:31 -0500 Subject: [PATCH 0373/2257] 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 f2ab2e0..2380861 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210117.2-unstable +jellyfin20210117.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210116.6-unstable -jellyfin-web20210117.2-unstable +jellyfin-web20210117.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From ee3aef647dd2b172853eeff05a55ccc6fa4d8254 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Jan 2021 16:18:51 -0500 Subject: [PATCH 0374/2257] 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 2380861..6df9aa8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210117.3-unstable +jellyfin20210117.7-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210116.6-unstable -jellyfin-web20210117.3-unstable +jellyfin-server20210117.3-unstable +jellyfin-web20210117.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 9534953c0392148730a1225ff66f32591592622f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 18 Jan 2021 03:49:33 +0000 Subject: [PATCH 0375/2257] 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 6df9aa8..49caa17 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210117.7-unstable +jellyfin20210118.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210117.3-unstable +jellyfin-server20210118.1-unstable jellyfin-web20210117.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 981917e09e85b6c1d7ffcf359ad2828a5728360b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 18 Jan 2021 14:30:52 +0000 Subject: [PATCH 0376/2257] 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 49caa17..4fa39d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210118.1-unstable +jellyfin20210118.27-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210118.1-unstable +jellyfin-server20210118.27-unstable jellyfin-web20210117.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f11e69112fe952793af9a895dc911278002eadb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 18 Jan 2021 21:26:13 +0000 Subject: [PATCH 0377/2257] 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 4fa39d3..fb76edb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210118.27-unstable +jellyfin20210118.29-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210118.27-unstable -jellyfin-web20210117.7-unstable +jellyfin-server20210118.29-unstable +jellyfin-web20210118.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From a711a00084784ec13fa04e6047b976e6ee956731 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 19 Jan 2021 18:22:26 +0000 Subject: [PATCH 0378/2257] 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 fb76edb..0ba365e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210118.29-unstable +jellyfin20210119.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210118.29-unstable -jellyfin-web20210118.11-unstable +jellyfin-web20210119.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 @@ -149,11 +149,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.3 +libudev1245.4-4ubuntu3.4 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 @@ -206,7 +206,7 @@ readline-common8.0-4 sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 From 0792235e09ace706511437f1f926e445cc0c5a7b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 19 Jan 2021 19:39:32 -0500 Subject: [PATCH 0379/2257] 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 0ba365e..74ae327 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210119.1-unstable +jellyfin20210119.9-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210118.29-unstable -jellyfin-web20210119.1-unstable +jellyfin-server20210119.9-unstable +jellyfin-web20210119.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 748783474928fc9bd9ab145795543bf4cd0cd29f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 07:41:20 +0000 Subject: [PATCH 0380/2257] 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 74ae327..e37455e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210119.9-unstable +jellyfin20210120.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210119.9-unstable -jellyfin-web20210119.2-unstable +jellyfin-web20210120.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 54c0c895e1a48b1dc7ac1c114ae4ba1eb3c6aee3 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Wed, 20 Jan 2021 13:07:49 +0100 Subject: [PATCH 0381/2257] Deprecate UMASK_SET in favor of UMASK in baseimage --- README.md | 4 +--- readme-vars.yml | 6 +++--- root/etc/services.d/jellyfin/run | 9 +++++---- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c858b47..25b5215 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,6 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London - - UMASK_SET=<022> #optional volumes: - /path/to/library:/config - /path/to/tvseries:/data/tvshows @@ -114,7 +113,6 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ - -e UMASK_SET=<022> `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ -p 7359:7359/udp `#optional` \ @@ -147,7 +145,6 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London | -| `-e UMASK_SET=<022>` | for umask setting of Emby, default if left unset is 022. | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | @@ -321,6 +318,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.01.21:"** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Ingest releases from Jellyfin repo. * **28.04.20:** - Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian. diff --git a/readme-vars.yml b/readme-vars.yml index b5c3764..29fed33 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -35,9 +35,8 @@ param_usage_include_env: true param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} # optional container parameters -opt_param_usage_include_env: true -opt_param_env_vars: - - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Emby, default if left unset is 022."} +opt_param_usage_include_env: false + opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -114,6 +113,7 @@ app_setup_block: | # changelog changelogs: + - { date: 20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run index b222572..21632b0 100644 --- a/root/etc/services.d/jellyfin/run +++ b/root/etc/services.d/jellyfin/run @@ -3,11 +3,12 @@ export JELLYFIN_DATA_DIR="/config/data" \ JELLYFIN_CONFIG_DIR="/config" \ JELLYFIN_LOG_DIR="/config/log" \ -JELLYFIN_CACHE_DIR="/config/cache" +JELLYFIN_CACHE_DIR="/config/cache" -# set umask -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 /usr/bin/jellyfin \ From 7badc41d09bf5395f2e46c63789ac4bd005d141d Mon Sep 17 00:00:00 2001 From: Roxedus Date: Wed, 20 Jan 2021 13:11:01 +0100 Subject: [PATCH 0382/2257] Deprecate UMASK_SET in favor of UMASK in baseimage --- README.md | 4 +--- readme-vars.yml | 19 +++++++++---------- root/etc/services.d/jellyfin/run | 7 ++++--- 3 files changed, 14 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index ccf0b14..53ac761 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,6 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London - - UMASK_SET=<022> #optional volumes: - /path/to/library:/config - path/to/tvseries:/data/tvshows @@ -112,7 +111,6 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ - -e UMASK_SET=<022> `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ -v /path/to/library:/config \ @@ -141,7 +139,6 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London | -| `-e UMASK_SET=<022>` | for umask setting of Emby, default if left unset is 022. | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | @@ -300,6 +297,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.01.21:"** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **05.01.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Install nightly from unstable. diff --git a/readme-vars.yml b/readme-vars.yml index 1647ddb..cd1f8d3 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -35,9 +35,7 @@ param_usage_include_env: true param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} # optional container parameters -opt_param_usage_include_env: true -opt_param_env_vars: - - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Emby, default if left unset is 022."} +opt_param_usage_include_env: false opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -62,25 +60,25 @@ app_setup_block: | More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . ## Hardware Acceleration - + ### Intel - + Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: ```--device=/dev/dri:/dev/dri``` We will automatically ensure the abc user inside of the container has the proper permissions to access this device. - + ### Nvidia - + Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: https://github.com/NVIDIA/nvidia-docker We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - + ### MMAL/OpenMAX (Raspberry Pi) - + Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` @@ -90,7 +88,7 @@ app_setup_block: | ``` ### V4L2 (Raspberry Pi) - + Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: ``` --device=/dev/video10:/dev/video10 @@ -100,6 +98,7 @@ app_setup_block: | # changelog changelogs: + - { date: 20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Install nightly from unstable." } diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run index 2d975f1..ccee791 100644 --- a/root/etc/services.d/jellyfin/run +++ b/root/etc/services.d/jellyfin/run @@ -6,9 +6,10 @@ JELLYFIN_LOG_DIR="/config/log" \ JELLYFIN_CACHE_DIR="/config/cache" \ JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" -# set umask -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 /usr/bin/jellyfin \ From bfdbf0c542d72dec997ac0a0d891039aac5846c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 13:10:39 +0000 Subject: [PATCH 0383/2257] 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 f6e3d45..7dc1935 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -149,11 +149,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.3 +libudev1245.4-4ubuntu3.4 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 @@ -206,7 +206,7 @@ readline-common8.0-4 sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 From 1cc9ca9916e92b9ac2b6d8b974a4348ec5e7aa6f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 13:10:45 +0000 Subject: [PATCH 0384/2257] 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 e37455e..a26e180 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210120.1-unstable +jellyfin20210120.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210119.9-unstable -jellyfin-web20210120.1-unstable +jellyfin-server20210120.2-unstable +jellyfin-web20210120.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From e8f8860fd0f7e1bac594fd42c6daf5eef0692bf0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 15:39:15 +0000 Subject: [PATCH 0385/2257] Bot Updating Templated Files --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25b5215..b40ff7e 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,7 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London + - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - /path/to/library:/config - /path/to/tvseries:/data/tvshows @@ -113,6 +114,7 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ + -e JELLYFIN_PublishedServerUrl=192.168.0.5 `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ -p 7359:7359/udp `#optional` \ @@ -144,7 +146,8 @@ Container images are configured using parameters passed at runtime (such as thos | `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | -| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London | +| `-e TZ=Europe/London` | Specify a timezone to use (e.g. Europe/London). | +| `-e JELLYFIN_PublishedServerUrl=192.168.0.5` | Set the autodiscovery response domain or IP address. | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | @@ -186,6 +189,8 @@ Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local -p 1900:1900/udp \ ``` +The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. + ## User / Group Identifiers @@ -206,7 +211,7 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Webui can be found at `http://:8096` -More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . +More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). ## Hardware Acceleration @@ -318,7 +323,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **20.01.21:"** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. +* **20.01.21:** - Add Jellyfin Binary Environmentals +* **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Ingest releases from Jellyfin repo. * **28.04.20:** - Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian. From 54b0af9aeca9793be785acc57655b189f9bc002b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 19:48:33 +0000 Subject: [PATCH 0386/2257] 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 a26e180..fbfbba6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210120.3-unstable +jellyfin20210120.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210120.2-unstable -jellyfin-web20210120.3-unstable +jellyfin-server20210120.4-unstable +jellyfin-web20210120.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 8df5b3c7e05107297627fe386554cfb0f9c08112 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 22:48:32 -0500 Subject: [PATCH 0387/2257] 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 fbfbba6..18a35ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210120.4-unstable +jellyfin20210120.7-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210120.4-unstable -jellyfin-web20210120.4-unstable +jellyfin-server20210120.7-unstable +jellyfin-web20210120.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From c7757c243fbb6fa8df2ea963e11e6695c4323c0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 21 Jan 2021 13:14:28 -0500 Subject: [PATCH 0388/2257] 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 18a35ba..a615b02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210120.7-unstable +jellyfin20210121.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210120.7-unstable -jellyfin-web20210120.6-unstable +jellyfin-web20210121.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 28f86ce128d32608b9dd87734d2e266a1a98bb92 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jan 2021 00:35:07 +0000 Subject: [PATCH 0389/2257] 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 a615b02..b987361 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210121.1-unstable +jellyfin20210121.15-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210120.7-unstable -jellyfin-web20210121.1-unstable +jellyfin-server20210121.5-unstable +jellyfin-web20210121.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 8740616ca3b9d9d5d1c352b8a645d066d29b9334 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jan 2021 07:41:42 +0000 Subject: [PATCH 0390/2257] 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 b987361..ad60b53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210121.15-unstable +jellyfin20210122.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210121.5-unstable -jellyfin-web20210121.15-unstable +jellyfin-server20210121.6-unstable +jellyfin-web20210122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From d59b20cb516363cb704d56fa21639b0f638aafbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jan 2021 14:32:41 +0000 Subject: [PATCH 0391/2257] 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 ad60b53..17c5122 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210122.1-unstable +jellyfin20210122.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210121.6-unstable -jellyfin-web20210122.1-unstable +jellyfin-server20210122.1-unstable +jellyfin-web20210122.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 43ec7ef83360d39826f8ea1a152db36c8b86ccc2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jan 2021 21:25:14 +0000 Subject: [PATCH 0392/2257] 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 17c5122..116f82a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210122.2-unstable +jellyfin20210122.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210122.1-unstable -jellyfin-web20210122.2-unstable +jellyfin-web20210122.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From a85cc38816c879dc243c3c5408f30f057d7b3b28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jan 2021 22:56:22 -0500 Subject: [PATCH 0393/2257] 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 116f82a..01479e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210122.3-unstable +jellyfin20210122.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210122.1-unstable -jellyfin-web20210122.3-unstable +jellyfin-server20210122.2-unstable +jellyfin-web20210122.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 9227b55d5af53e9d09b70befd06b3a072bcd61bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Jan 2021 13:41:15 +0000 Subject: [PATCH 0394/2257] 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 01479e1..50c7db2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210122.4-unstable +jellyfin20210123.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210122.2-unstable +jellyfin-server20210123.2-unstable jellyfin-web20210122.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2aa3c61417912135b3167a490e39485dc567699c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Jan 2021 20:32:14 +0000 Subject: [PATCH 0395/2257] 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 50c7db2..b759d14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210123.2-unstable +jellyfin20210123.12-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210123.2-unstable +jellyfin-server20210123.12-unstable jellyfin-web20210122.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1a9adb8672a355a9ef3fdda3eb9dfdb8027e0a72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Jan 2021 02:43:45 +0000 Subject: [PATCH 0396/2257] 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 b759d14..0dfd708 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210123.12-unstable +jellyfin20210123.19-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210123.12-unstable -jellyfin-web20210122.4-unstable +jellyfin-server20210123.19-unstable +jellyfin-web20210123.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 7cef16fe18e201fadc4f6bf52361f634f4c06544 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Jan 2021 10:37:11 +0000 Subject: [PATCH 0397/2257] 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 0dfd708..421df30 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210123.19-unstable +jellyfin20210124.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210123.19-unstable +jellyfin-server20210124.4-unstable jellyfin-web20210123.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c0aafbb701a788423305a03cb988a5be29a478f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Jan 2021 13:14:59 -0500 Subject: [PATCH 0398/2257] 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 421df30..f3aec91 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210124.4-unstable +jellyfin20210124.10-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210124.4-unstable +jellyfin-server20210124.10-unstable jellyfin-web20210123.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4bae35305408de0c6796378cfbb135babf9b8bab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 Jan 2021 00:32:45 +0000 Subject: [PATCH 0399/2257] 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 f3aec91..431910c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210124.10-unstable +jellyfin20210124.12-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210124.10-unstable -jellyfin-web20210123.4-unstable +jellyfin-server20210124.12-unstable +jellyfin-web20210124.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From b7db45ef6dc86ebb7ad0afbb4905fc2f3fd4fdb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 Jan 2021 07:39:41 +0000 Subject: [PATCH 0400/2257] 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 431910c..097998d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210124.12-unstable +jellyfin20210125.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210124.12-unstable -jellyfin-web20210124.5-unstable +jellyfin-web20210125.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From f93aa3ef4e73c44ddeb9b1e8c33a2c7ab60da568 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 Jan 2021 08:49:24 -0500 Subject: [PATCH 0401/2257] 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 097998d..f7962ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210125.1-unstable +jellyfin20210125.12-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210124.12-unstable -jellyfin-web20210125.1-unstable +jellyfin-server20210125.3-unstable +jellyfin-web20210125.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 1c004d5a5ea0386922bfaf6b4cef709e4a9e3087 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 Jan 2021 15:31:19 -0500 Subject: [PATCH 0402/2257] 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 f7962ec..6722e57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210125.12-unstable +jellyfin20210125.18-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210125.3-unstable -jellyfin-web20210125.12-unstable +jellyfin-server20210125.9-unstable +jellyfin-web20210125.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.2ubuntu0.2 From 65ae30d6dc5ead0bb8fe552c319e987298dad94e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Jan 2021 12:03:59 +0000 Subject: [PATCH 0403/2257] 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 6722e57..dea0f0c 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 at3.1.23-1ubuntu1 base-files11ubuntu5.2 base-passwd3.5.47 @@ -38,13 +38,13 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210125.18-unstable +jellyfin20210126.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210125.9-unstable -jellyfin-web20210125.18-unstable +jellyfin-server20210125.16-unstable +jellyfin-web20210126.1-unstable 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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 From 059035e4a009c0f41eb2da0ed3dcbfdd07d68806 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Jan 2021 18:20:12 +0000 Subject: [PATCH 0404/2257] 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 dea0f0c..1d62714 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210126.1-unstable +jellyfin20210126.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210125.16-unstable -jellyfin-web20210126.1-unstable +jellyfin-server20210126.1-unstable +jellyfin-web20210126.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From f5b7b9ed8d1ae96c926d06f525c0a8e352bfcdbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Jan 2021 20:48:35 -0500 Subject: [PATCH 0405/2257] 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 1d62714..67e088c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210126.4-unstable +jellyfin20210126.13-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210126.4-unstable +jellyfin-web20210126.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From f091eae1c2d305dd40fb55ba6267aa7d159d17f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Jan 2021 08:08:30 +0000 Subject: [PATCH 0406/2257] 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 67e088c..5fbb48f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210126.13-unstable +jellyfin20210127.4-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210126.13-unstable +jellyfin-web20210127.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From b5028d343f11a432c4283016922362d14c541d1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Jan 2021 11:19:35 -0500 Subject: [PATCH 0407/2257] 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 5fbb48f..cddcc38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210127.4-unstable +jellyfin20210127.5-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210127.4-unstable +jellyfin-web20210127.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 204105d31a7d32c8ffada24aaf51ef1adee95f3c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Jan 2021 23:12:36 +0000 Subject: [PATCH 0408/2257] 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 cddcc38..735e8ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210127.5-unstable +jellyfin20210127.8-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210127.5-unstable +jellyfin-web20210127.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From a228c5f6b7f516fa1305a7dd1846663cad269b13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Jan 2021 21:50:35 -0500 Subject: [PATCH 0409/2257] 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 735e8ac..f3714d1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210127.8-unstable +jellyfin20210128.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210127.8-unstable +jellyfin-web20210128.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 1ace1290b961c26f44a19c08f949bb8b6bdb93e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Jan 2021 02:53:37 +0000 Subject: [PATCH 0410/2257] 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 7dc1935..f90d601 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 at3.1.23-1ubuntu1 base-files11ubuntu5.2 base-passwd3.5.47 @@ -44,7 +44,7 @@ jellyfin-server10.6.4-1 jellyfin-web10.6.4-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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 From 8cf4dce3894ab846b69de7d040f7eee931178e0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 29 Jan 2021 02:12:48 -0500 Subject: [PATCH 0411/2257] 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 f3714d1..7877550 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210128.1-unstable +jellyfin20210129.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210128.1-unstable +jellyfin-web20210129.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.3-1~ubuntu20.04.1 +libglib2.0-02.64.6-1~ubuntu20.04.1 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 From d39a77296783d1e82cebb97766d64abec250746d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Jan 2021 08:03:08 +0000 Subject: [PATCH 0412/2257] 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 7877550..4b8ea75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210129.1-unstable +jellyfin20210130.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210129.1-unstable +jellyfin-web20210130.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -186,7 +186,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.1 +locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 @@ -207,7 +207,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 3fb87072ba63718f0ec967f4083a45e468c50fd1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Jan 2021 15:06:40 +0000 Subject: [PATCH 0413/2257] 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 4b8ea75..011ecc5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210130.1-unstable +jellyfin20210130.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210130.1-unstable +jellyfin-web20210130.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From f8237c3b1af44e0865904c10bddfd884328a2361 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Jan 2021 23:09:24 +0000 Subject: [PATCH 0414/2257] 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 011ecc5..a757247 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210130.2-unstable +jellyfin20210130.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210130.2-unstable +jellyfin-web20210130.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 9a57040ba3008e0c3a9c0d79ba912dc2f1a96e2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 31 Jan 2021 13:17:26 +0000 Subject: [PATCH 0415/2257] 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 a757247..15b5b3b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210130.3-unstable +jellyfin20210131.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210126.1-unstable -jellyfin-web20210130.3-unstable +jellyfin-web20210131.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From eaaaa022d5fff38303d880087f5e7917c7571f38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 31 Jan 2021 20:06:21 +0000 Subject: [PATCH 0416/2257] 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 15b5b3b..2fbe0c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210131.1-unstable +jellyfin20210131.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210126.1-unstable -jellyfin-web20210131.1-unstable +jellyfin-server20210131.3-unstable +jellyfin-web20210131.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0dd00c92bb50598be96d49ca044d2b045b94760b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Feb 2021 05:17:15 +0000 Subject: [PATCH 0417/2257] 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 2fbe0c1..8d45ca7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210131.3-unstable +jellyfin20210201.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210131.3-unstable -jellyfin-web20210131.2-unstable +jellyfin-web20210201.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From f65f8bdbdb5925f67dd2de18fa16e70a64203fa2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Feb 2021 01:45:59 +0000 Subject: [PATCH 0418/2257] 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 8d45ca7..283bc4b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210201.1-unstable +jellyfin20210201.17-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210131.3-unstable -jellyfin-web20210201.1-unstable +jellyfin-web20210201.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From d139d2f947106147ab6accb4fe5c5ed3f0b08007 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Feb 2021 08:06:03 +0000 Subject: [PATCH 0419/2257] 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 283bc4b..234a8dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu2 apt2.0.4 apt-utils2.0.4 at3.1.23-1ubuntu1 -base-files11ubuntu5.2 +base-files11ubuntu5.3 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210201.17-unstable +jellyfin20210202.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210131.3-unstable -jellyfin-web20210201.17-unstable +jellyfin-web20210202.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -56,10 +56,10 @@ libbluray21:1.2.0-1 libbrotli11.0.7-6ubuntu0.1 libbsd00.10.0-1 libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.1 +libc62.31-0ubuntu9.2 libcairo21.16.0-4ubuntu1 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 libcurl47.68.0-1ubuntu2.4 From c9afaf0383efa27b2009e8c3b97a7e27f1e9d960 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Feb 2021 15:07:57 +0000 Subject: [PATCH 0420/2257] 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 234a8dc..a705b20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210202.1-unstable +jellyfin20210202.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210131.3-unstable -jellyfin-web20210202.1-unstable +jellyfin-web20210202.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 4535be03ca072275be036a7eb5ee76366319666e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Feb 2021 17:05:02 -0500 Subject: [PATCH 0421/2257] 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 a705b20..d9a9ffe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210202.2-unstable +jellyfin20210202.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210131.3-unstable -jellyfin-web20210202.2-unstable +jellyfin-web20210202.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From e9489b8c765d4d3cda51c5bc344cd87dcd43d19e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Feb 2021 08:02:34 +0000 Subject: [PATCH 0422/2257] 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 d9a9ffe..df196bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210202.3-unstable +jellyfin20210203.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210131.3-unstable +jellyfin-server20210203.2-unstable jellyfin-web20210202.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 934160ab250871c8e7442c89b73ffe7a32c1f18d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Feb 2021 10:04:28 -0500 Subject: [PATCH 0423/2257] 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 df196bd..dffbc5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210203.2-unstable +jellyfin20210203.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210203.2-unstable +jellyfin-server20210203.3-unstable jellyfin-web20210202.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4d964397931860510b84a275e99691008669b75f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Feb 2021 02:35:34 +0000 Subject: [PATCH 0424/2257] 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 f90d601..26ac196 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu2 apt2.0.4 apt-utils2.0.4 at3.1.23-1ubuntu1 -base-files11ubuntu5.2 +base-files11ubuntu5.3 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 @@ -56,10 +56,10 @@ libbluray21:1.2.0-1 libbrotli11.0.7-6ubuntu0.1 libbsd00.10.0-1 libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.1 +libc62.31-0ubuntu9.2 libcairo21.16.0-4ubuntu1 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 libcurl47.68.0-1ubuntu2.4 @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.3-1~ubuntu20.04.1 +libglib2.0-02.64.6-1~ubuntu20.04.1 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 @@ -186,7 +186,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.1 +locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 @@ -207,7 +207,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 02d205338d2eb27abc4f7d0e2b9685c1c6efdd0c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Feb 2021 13:17:16 +0000 Subject: [PATCH 0425/2257] 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 dffbc5b..6303ca0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210203.3-unstable +jellyfin20210204.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210203.3-unstable -jellyfin-web20210202.3-unstable +jellyfin-web20210204.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 36157cd0596382852b3e3bd7fbbae988e03edac0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Feb 2021 15:02:57 -0500 Subject: [PATCH 0426/2257] 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 6303ca0..a6e438b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210204.1-unstable +jellyfin20210204.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210203.3-unstable +jellyfin-server20210204.2-unstable jellyfin-web20210204.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f00157e216d44d2649e96acce1af6973253d83a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Feb 2021 03:15:31 +0000 Subject: [PATCH 0427/2257] 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 a6e438b..48b4e3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210204.2-unstable +jellyfin20210205.1-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210204.2-unstable +jellyfin-server20210205.1-unstable jellyfin-web20210204.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 69848ede12584a7bdafdf76b55029df1af8c3d4f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Feb 2021 05:04:32 -0500 Subject: [PATCH 0428/2257] 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 48b4e3d..4976ba4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210205.1-unstable +jellyfin20210205.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210205.1-unstable +jellyfin-server20210205.2-unstable jellyfin-web20210204.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e1e78bb198b9378848533d0d44f7756a91dd8411 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Feb 2021 17:23:06 +0000 Subject: [PATCH 0429/2257] 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 4976ba4..9c5120a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210205.2-unstable +jellyfin20210205.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210205.2-unstable -jellyfin-web20210204.1-unstable +jellyfin-server20210205.3-unstable +jellyfin-web20210205.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 9c8ab5a60b55c7c814f768db34ac23829b57ca52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Feb 2021 19:05:23 +0000 Subject: [PATCH 0430/2257] 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 9c5120a..5407c00 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210205.3-unstable +jellyfin20210206.6-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210205.3-unstable -jellyfin-web20210205.1-unstable +jellyfin-server20210206.6-unstable +jellyfin-web20210205.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 6bef3ac3552a6ff6d62c7d016aa7e5d273ca92b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Feb 2021 02:13:11 +0000 Subject: [PATCH 0431/2257] 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 5407c00..a0b6d86 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210206.6-unstable +jellyfin20210207.2-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210206.6-unstable -jellyfin-web20210205.2-unstable +jellyfin-web20210207.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From c47c90d62ced86acb73db5361178cc93348926ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Feb 2021 11:02:53 +0000 Subject: [PATCH 0432/2257] 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 a0b6d86..1e80a86 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210207.2-unstable +jellyfin20210207.3-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210206.6-unstable -jellyfin-web20210207.2-unstable +jellyfin-web20210207.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From ddc50347de2c36cb07d482a8cd87e8a82de33569 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Feb 2021 17:19:49 +0000 Subject: [PATCH 0433/2257] 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 1e80a86..82b62b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210207.3-unstable +jellyfin20210207.4-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210206.6-unstable -jellyfin-web20210207.3-unstable +jellyfin-server20210207.2-unstable +jellyfin-web20210207.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 15b72ba9fd40a0cff80060fd582cd36b894c55b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Feb 2021 00:02:28 +0000 Subject: [PATCH 0434/2257] 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 82b62b5..4bc2793 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210207.4-unstable +jellyfin20210207.6-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210207.2-unstable +jellyfin-server20210207.6-unstable jellyfin-web20210207.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0667ccba2bda575f46801cec2efaaffc9d150070 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Feb 2021 02:04:18 -0500 Subject: [PATCH 0435/2257] 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 4bc2793..8e0e892 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210207.6-unstable +jellyfin20210208.21-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210207.6-unstable -jellyfin-web20210207.4-unstable +jellyfin-server20210208.1-unstable +jellyfin-web20210208.21-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 71ca37a92fc85b42553862cbe84bb407a72587ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Feb 2021 13:14:54 +0000 Subject: [PATCH 0436/2257] 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 8e0e892..9c461a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210208.21-unstable +jellyfin20210208.64-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210208.1-unstable -jellyfin-web20210208.21-unstable +jellyfin-web20210208.64-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 3b112617653e610e2dfd9d9915224e013e74cc91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Feb 2021 15:01:40 -0500 Subject: [PATCH 0437/2257] 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 9c461a4..9ba7bb8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210208.64-unstable +jellyfin20210208.87-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210208.1-unstable -jellyfin-web20210208.64-unstable +jellyfin-server20210208.12-unstable +jellyfin-web20210208.87-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From c847c8e454376db7d88b773c794d878bfa76442e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Feb 2021 03:03:04 +0000 Subject: [PATCH 0438/2257] 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 9ba7bb8..ff013ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210208.87-unstable +jellyfin20210209.2-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210208.12-unstable +jellyfin-server20210209.2-unstable jellyfin-web20210208.87-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 81acc7bbae18fdfac3bcb0c7d147cf771227b367 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Feb 2021 10:07:06 +0000 Subject: [PATCH 0439/2257] 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 ff013ce..6055c41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,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 @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210209.2-unstable +jellyfin20210209.3-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210209.2-unstable +jellyfin-server20210209.3-unstable jellyfin-web20210208.87-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -105,8 +105,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 libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 From 17fd87c21f033873f75478a9423d5a5e0ee03e29 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Feb 2021 17:22:50 +0000 Subject: [PATCH 0440/2257] 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 6055c41..ba6d612 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210209.3-unstable +jellyfin20210209.9-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210209.3-unstable +jellyfin-server20210209.9-unstable jellyfin-web20210208.87-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 21af4cdc55c4fbb37ca38d9cbcb9707f1bbeae94 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Feb 2021 01:32:56 +0000 Subject: [PATCH 0441/2257] 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 ba6d612..69b9b14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210209.9-unstable +jellyfin20210210.1-unstable jellyfin-ffmpeg4.3.1-3-focal jellyfin-server20210209.9-unstable -jellyfin-web20210208.87-unstable +jellyfin-web20210210.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 477dba09840f760e06b2359c0469818e01aef54e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Feb 2021 08:02:54 +0000 Subject: [PATCH 0442/2257] 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 69b9b14..9ec5928 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210210.1-unstable +jellyfin20210210.5-unstable jellyfin-ffmpeg4.3.1-3-focal -jellyfin-server20210209.9-unstable -jellyfin-web20210210.1-unstable +jellyfin-server20210210.5-unstable +jellyfin-web20210210.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 9bb85236ff688b43d1dea07db8551edde80d2b95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Feb 2021 15:05:03 +0000 Subject: [PATCH 0443/2257] 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 9ec5928..6e49f8b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210210.5-unstable -jellyfin-ffmpeg4.3.1-3-focal +jellyfin20210210.8-unstable +jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210210.5-unstable -jellyfin-web20210210.2-unstable +jellyfin-web20210210.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0504daaa0896d56bc548ab6c01b8ff22aed50b11 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Feb 2021 22:04:03 +0000 Subject: [PATCH 0444/2257] 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 6e49f8b..510a85c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210210.8-unstable +jellyfin20210210.10-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210210.5-unstable -jellyfin-web20210210.8-unstable +jellyfin-web20210210.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From c8d9830e6d253ae6107d8fafbd7b1d8ca4015695 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Feb 2021 02:34:23 +0000 Subject: [PATCH 0445/2257] 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 26ac196..c45f74a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,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 @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin10.6.4-1 -jellyfin-ffmpeg4.3.1-3-focal +jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.6.4-1 jellyfin-web10.6.4-1 krb5-locales1.17-6ubuntu4.1 @@ -105,8 +105,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 libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 From 2e1799f1efb997529bdf98fcd1bf97b2ce4ea834 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Feb 2021 09:05:29 +0000 Subject: [PATCH 0446/2257] 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 510a85c..b42eb62 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210210.10-unstable +jellyfin20210211.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210210.5-unstable -jellyfin-web20210210.10-unstable +jellyfin-server20210211.2-unstable +jellyfin-web20210211.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 38c973c90825bab5a04722229e575802225aa85b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Feb 2021 17:20:48 +0000 Subject: [PATCH 0447/2257] 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 b42eb62..8bf0798 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210211.2-unstable +jellyfin20210211.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210211.2-unstable -jellyfin-web20210211.1-unstable +jellyfin-server20210211.7-unstable +jellyfin-web20210211.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From e632021a95026484f586ac503949effb3d6b3f7c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Feb 2021 08:59:03 +0000 Subject: [PATCH 0448/2257] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 61 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a7476cb..cee5a51 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 ca1a3a84b2389d417e1e6c10fdbc305f87760cb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Feb 2021 09:00:49 +0000 Subject: [PATCH 0449/2257] Bot Updating Templated Files --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df432a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.jenkins-external From 4e8b2fcc721507b4fd038e9b6732989d3cb8a5cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Feb 2021 09:07:48 +0000 Subject: [PATCH 0450/2257] 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 8bf0798..256cb4d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210211.7-unstable +jellyfin20210212.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210211.7-unstable -jellyfin-web20210211.2-unstable +jellyfin-web20210212.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From ad03cf139311f3ac66819a9a8cb6545d9c27bd84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Feb 2021 19:04:15 +0000 Subject: [PATCH 0451/2257] 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 256cb4d..afcb366 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210212.2-unstable +jellyfin20210212.16-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210211.7-unstable +jellyfin-server20210212.16-unstable jellyfin-web20210212.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9a11a5be5e04a5f10fcdfe17b477870489d3847d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Feb 2021 22:03:17 -0500 Subject: [PATCH 0452/2257] 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 afcb366..45ce6f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210212.16-unstable +jellyfin20210213.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210212.16-unstable +jellyfin-server20210213.1-unstable jellyfin-web20210212.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From bcba69cd5ee3d7c63e72d8001a15ccfeb45dd064 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Feb 2021 10:03:16 +0000 Subject: [PATCH 0453/2257] 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 45ce6f2..0a82619 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210213.1-unstable +jellyfin20210213.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210213.1-unstable -jellyfin-web20210212.2-unstable +jellyfin-server20210213.2-unstable +jellyfin-web20210213.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0ea832559274b174e554a3991faf28e6af210583 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Feb 2021 17:27:31 +0000 Subject: [PATCH 0454/2257] 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 0a82619..f9547b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210213.2-unstable +jellyfin20210213.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210213.2-unstable +jellyfin-server20210213.3-unstable jellyfin-web20210213.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From eb65b3befa9b22f8378ef9637fa4f3a696e72745 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Feb 2021 03:04:05 -0500 Subject: [PATCH 0455/2257] 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 f9547b4..72d018b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210213.3-unstable +jellyfin20210214.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210213.3-unstable -jellyfin-web20210213.1-unstable +jellyfin-server20210214.2-unstable +jellyfin-web20210213.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From aa09b35f66e45f0f0e34a4f757483e97f401375d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Feb 2021 15:05:25 +0000 Subject: [PATCH 0456/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 72d018b..dbcd31b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -41,7 +41,7 @@ intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin20210214.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210214.2-unstable -jellyfin-web20210213.2-unstable +jellyfin-web20210214.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 9134ef534a6dde6a03fc364e5068c4fe65602645 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Feb 2021 17:03:24 -0500 Subject: [PATCH 0457/2257] 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 dbcd31b..82433b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210214.2-unstable +jellyfin20210214.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210214.2-unstable -jellyfin-web20210214.1-unstable +jellyfin-server20210214.5-unstable +jellyfin-web20210214.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 6863a6aaf58cb03715c7f6ad80bb220102d62817 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Feb 2021 10:13:36 +0000 Subject: [PATCH 0458/2257] 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 82433b5..b1b44f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210214.5-unstable +jellyfin20210215.21-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210214.5-unstable -jellyfin-web20210214.2-unstable +jellyfin-web20210215.21-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 3bb006964eb77fbd33966ea4e9b54f3cae033a53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Feb 2021 06:04:02 +0000 Subject: [PATCH 0459/2257] 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 b1b44f3..3c3e2db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ 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 @@ -22,26 +22,26 @@ findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 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 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210215.21-unstable +jellyfin20210216.25-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210214.5-unstable -jellyfin-web20210215.21-unstable +jellyfin-server20210215.17-unstable +jellyfin-web20210216.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From fb6f4113308c16fb1362fa5bb3db70a04e218029 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Feb 2021 11:06:04 -0500 Subject: [PATCH 0460/2257] 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 3c3e2db..4f148f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210216.25-unstable +jellyfin20210216.28-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210215.17-unstable -jellyfin-web20210216.25-unstable +jellyfin-web20210216.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 87e6ccc15a812f5e50a078dd483128cf6bbddb4b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Feb 2021 23:04:14 +0000 Subject: [PATCH 0461/2257] 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 4f148f3..d857f2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210216.28-unstable +jellyfin20210216.29-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210215.17-unstable -jellyfin-web20210216.28-unstable +jellyfin-web20210216.29-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From b644603a0bc5831683ff44debe542fc64177ce58 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Feb 2021 06:13:14 +0000 Subject: [PATCH 0462/2257] 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 d857f2b..7e73203 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210216.29-unstable +jellyfin20210217.19-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210215.17-unstable -jellyfin-web20210216.29-unstable +jellyfin-server20210217.4-unstable +jellyfin-web20210217.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 52821e92e42ad3600b6cfc9ad9db9d5b5cab14be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Feb 2021 08:08:34 -0500 Subject: [PATCH 0463/2257] 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 7e73203..d082b2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210217.19-unstable +jellyfin20210217.23-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210217.4-unstable -jellyfin-web20210217.19-unstable +jellyfin-server20210217.5-unstable +jellyfin-web20210217.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 66d3ffb49133e2317a47e84cea1bc3779ae38f91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Feb 2021 20:03:49 +0000 Subject: [PATCH 0464/2257] 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 d082b2b..ef790ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210217.23-unstable +jellyfin20210217.24-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210217.5-unstable -jellyfin-web20210217.23-unstable +jellyfin-web20210217.24-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0a7b207fb40897b107395038afd033087bc3d263 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Feb 2021 21:30:24 -0500 Subject: [PATCH 0465/2257] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 61 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0249bfb..3366f7d 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=master -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 master + 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 master + 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 master",\ "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": "master",\ - "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": false}' >> 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 953702299616a2c94b4c18b72b0076e7d90fae71 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Feb 2021 21:31:40 -0500 Subject: [PATCH 0466/2257] Bot Updating Templated Files --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df432a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.jenkins-external From e95a3ec865c3b3809182051092d0aa1593421a4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Feb 2021 21:38:13 -0500 Subject: [PATCH 0467/2257] 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 c45f74a..aeae5bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ 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 @@ -22,16 +22,16 @@ findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 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 09089b8f471f571aa5878e5af6d765e80078b428 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Feb 2021 17:32:20 +0000 Subject: [PATCH 0468/2257] 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 ef790ea..2caf183 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210217.24-unstable +jellyfin20210218.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210217.5-unstable +jellyfin-server20210218.1-unstable jellyfin-web20210217.24-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -147,7 +147,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 From 3ea847c86449703570ce7670006ced8e56a7f902 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Feb 2021 17:41:28 +0000 Subject: [PATCH 0469/2257] 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 2caf183..3a0fe5d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210218.1-unstable +jellyfin20210218.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210218.1-unstable +jellyfin-server20210218.2-unstable jellyfin-web20210217.24-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 60f7a6bbb9683023dfd7b16a65d60f8bf0b8b4a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Feb 2021 19:12:40 -0500 Subject: [PATCH 0470/2257] 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 3a0fe5d..d3c06ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210218.2-unstable +jellyfin20210218.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210218.2-unstable -jellyfin-web20210217.24-unstable +jellyfin-server20210218.5-unstable +jellyfin-web20210218.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From f4cba43a746fc19a9c558d949b7c871d4c823125 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Feb 2021 08:11:48 -0500 Subject: [PATCH 0471/2257] 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 d3c06ca..a2d9138 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210218.5-unstable +jellyfin20210219.5-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210218.5-unstable -jellyfin-web20210218.1-unstable +jellyfin-web20210219.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From c497f383c04d7d6a719263a8d58bf0147dd9b09d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 20 Feb 2021 03:05:16 +0000 Subject: [PATCH 0472/2257] 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 a2d9138..81da8e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210219.5-unstable +jellyfin20210220.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210218.5-unstable +jellyfin-server20210220.2-unstable jellyfin-web20210219.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b235b75be5909e85358c666013f4b5c6188f1063 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Feb 2021 00:03:40 +0000 Subject: [PATCH 0473/2257] 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 81da8e4..001b0c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210220.2-unstable +jellyfin20210220.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210220.2-unstable -jellyfin-web20210219.5-unstable +jellyfin-server20210220.6-unstable +jellyfin-web20210220.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 058e38835f2d4966bc7428e4e96994caa43e9a60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Feb 2021 08:02:55 +0000 Subject: [PATCH 0474/2257] 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 001b0c3..29c24a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210220.6-unstable +jellyfin20210221.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210220.6-unstable +jellyfin-server20210221.5-unstable jellyfin-web20210220.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 87031097e365edb3cbcbdaeb149a8d92ae23f663 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Feb 2021 12:22:03 -0500 Subject: [PATCH 0475/2257] 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 29c24a0..f945005 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210221.5-unstable +jellyfin20210221.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210221.5-unstable +jellyfin-server20210221.10-unstable jellyfin-web20210220.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d925651473e1a01ef4bf4adeae81a1be6c37161b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Feb 2021 00:02:39 +0000 Subject: [PATCH 0476/2257] 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 f945005..7f3ab05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210221.10-unstable +jellyfin20210221.13-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210221.10-unstable +jellyfin-server20210221.13-unstable jellyfin-web20210220.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5e0608141e48d2eaaedc59312fa535cab7b5665e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Feb 2021 07:06:19 +0000 Subject: [PATCH 0477/2257] 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 7f3ab05..bf77c88 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210221.13-unstable +jellyfin20210222.23-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210221.13-unstable -jellyfin-web20210220.2-unstable +jellyfin-web20210222.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 4b8b0405b3f3f85be8d2efd23bca8f65de932e9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Feb 2021 21:02:48 +0000 Subject: [PATCH 0478/2257] 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 bf77c88..bf59566 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210222.23-unstable +jellyfin20210222.25-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210221.13-unstable -jellyfin-web20210222.23-unstable +jellyfin-server20210222.19-unstable +jellyfin-web20210222.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 9ebf765c3afe410b8150619b4e1a279e062d1ec8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Feb 2021 04:04:27 +0000 Subject: [PATCH 0479/2257] 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 bf59566..7191902 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210222.25-unstable +jellyfin20210223.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210222.19-unstable -jellyfin-web20210222.25-unstable +jellyfin-server20210223.3-unstable +jellyfin-web20210222.26-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From a5888b38d440059d99f8dcb9038579f8ae125bc5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Feb 2021 13:10:31 +0000 Subject: [PATCH 0480/2257] 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 7191902..745d516 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210223.3-unstable +jellyfin20210223.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210223.3-unstable +jellyfin-server20210223.10-unstable jellyfin-web20210222.26-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -105,8 +105,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 libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 dc9aaadbc7fde3e8bf67502cbc214e3f6dd3ed1c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Feb 2021 21:19:56 -0500 Subject: [PATCH 0481/2257] 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 745d516..16c9fd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210223.10-unstable +jellyfin20210224.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210223.10-unstable -jellyfin-web20210222.26-unstable +jellyfin-server20210224.2-unstable +jellyfin-web20210223.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 7c28f84b65196da8358af41e817fb0110059c55c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Feb 2021 12:07:37 +0000 Subject: [PATCH 0482/2257] 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 16c9fd7..72ff9f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210224.2-unstable +jellyfin20210224.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210224.2-unstable +jellyfin-server20210224.7-unstable jellyfin-web20210223.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5dac6a4912da3aae8d151d661d8a7b7567e3ddc8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Feb 2021 19:08:14 +0000 Subject: [PATCH 0483/2257] 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 72ff9f8..00bda21 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210224.7-unstable +jellyfin20210224.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210224.7-unstable -jellyfin-web20210223.6-unstable +jellyfin-server20210224.9-unstable +jellyfin-web20210224.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0bc6625962f1c2e2bc2ed8ceca79e6a800e0f4dd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Feb 2021 20:43:06 -0500 Subject: [PATCH 0484/2257] 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 00bda21..bb99201 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210224.9-unstable +jellyfin20210224.12-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210224.9-unstable -jellyfin-web20210224.1-unstable +jellyfin-server20210224.12-unstable +jellyfin-web20210224.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 771c1c7b748dc78e8c6614947592119951a469b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Feb 2021 02:48:25 +0000 Subject: [PATCH 0485/2257] 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 aeae5bf..2027da0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -105,8 +105,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 libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 @@ -147,7 +147,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 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 52a517e484fb21be7f032d779b721371b6c5bcee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Feb 2021 04:06:24 -0500 Subject: [PATCH 0486/2257] 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 bb99201..e42728c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210224.12-unstable +jellyfin20210225.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210224.12-unstable +jellyfin-server20210225.1-unstable jellyfin-web20210224.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 83ad259bc11c61d1c98632284497cc53fed490e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Feb 2021 00:05:26 +0000 Subject: [PATCH 0487/2257] 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 e42728c..945d0da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210225.1-unstable +jellyfin20210225.5-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210225.1-unstable -jellyfin-web20210224.2-unstable +jellyfin-web20210225.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 327cb7cdcbcf60ddeadf969c118fd7986cb06f2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Feb 2021 13:23:21 +0000 Subject: [PATCH 0488/2257] 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 945d0da..9437f13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210225.5-unstable +jellyfin20210226.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210225.1-unstable -jellyfin-web20210225.5-unstable +jellyfin-web20210226.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 6fc5fd3169594bde384fa361d385fed8be80229e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Feb 2021 15:03:19 -0500 Subject: [PATCH 0489/2257] 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 9437f13..37f3bbd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210226.1-unstable +jellyfin20210226.4-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210225.1-unstable -jellyfin-web20210226.1-unstable +jellyfin-web20210226.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 03c97334b281fc448dac3b80547c353d6d1d1883 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Feb 2021 02:16:07 +0000 Subject: [PATCH 0490/2257] 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 37f3bbd..b8b975b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210226.4-unstable +jellyfin20210226.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210225.1-unstable +jellyfin-server20210226.5-unstable jellyfin-web20210226.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 60c9f516d34c4f1278ce4e96eb1ea6d3d239cf0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Feb 2021 09:04:06 +0000 Subject: [PATCH 0491/2257] 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 b8b975b..b8c9b4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210226.5-unstable +jellyfin20210227.30-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210226.5-unstable -jellyfin-web20210226.4-unstable +jellyfin-web20210227.30-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From a1a1dc8e9776668a7925b59d607542bbefc60ab8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Feb 2021 12:26:54 -0500 Subject: [PATCH 0492/2257] 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 b8c9b4e..36d9abc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210227.30-unstable +jellyfin20210227.32-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210226.5-unstable -jellyfin-web20210227.30-unstable +jellyfin-web20210227.32-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From d728e928299fcf2e8079809d84540ad56e7f8d9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 28 Feb 2021 00:11:18 +0000 Subject: [PATCH 0493/2257] 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 36d9abc..676badb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210227.32-unstable +jellyfin20210227.33-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210226.5-unstable -jellyfin-web20210227.32-unstable +jellyfin-server20210227.21-unstable +jellyfin-web20210227.33-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 74e9441109da78a3d3df26e8be76aab491f72562 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 28 Feb 2021 02:07:36 -0500 Subject: [PATCH 0494/2257] 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 676badb..d17916e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210227.33-unstable +jellyfin20210228.33-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210227.21-unstable -jellyfin-web20210227.33-unstable +jellyfin-web20210228.33-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From c6128a5a528d4727176fc78f0495e327b3c49bcc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 28 Feb 2021 14:03:07 +0000 Subject: [PATCH 0495/2257] 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 d17916e..3d25b74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210228.33-unstable +jellyfin20210228.56-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210227.21-unstable -jellyfin-web20210228.33-unstable +jellyfin-server20210228.6-unstable +jellyfin-web20210228.56-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 90f759b9ac5a878dcf155bfa681a94b32bc59ea6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 28 Feb 2021 16:01:15 -0500 Subject: [PATCH 0496/2257] 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 3d25b74..e9bdc6d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210228.56-unstable +jellyfin20210228.62-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210228.6-unstable -jellyfin-web20210228.56-unstable +jellyfin-server20210228.10-unstable +jellyfin-web20210228.62-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 2c046469d52cf6666fd251e3c109de7fe0813047 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Mar 2021 05:15:39 +0000 Subject: [PATCH 0497/2257] 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 e9bdc6d..3166639 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210228.62-unstable +jellyfin20210301.4-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210228.10-unstable -jellyfin-web20210228.62-unstable +jellyfin-web20210301.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 2b34b90bb472604d4ef7d09998d218dfe1471c7c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Mar 2021 07:01:39 -0500 Subject: [PATCH 0498/2257] 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 3166639..010fd43 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210301.4-unstable +jellyfin20210301.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210228.10-unstable -jellyfin-web20210301.4-unstable +jellyfin-server20210301.4-unstable +jellyfin-web20210301.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 61221523439ed2ae70ab2760906249d648a42ea3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Mar 2021 01:32:23 +0000 Subject: [PATCH 0499/2257] 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 010fd43..924638b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210301.8-unstable +jellyfin20210301.35-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210301.4-unstable -jellyfin-web20210301.8-unstable +jellyfin-server20210301.35-unstable +jellyfin-web20210301.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 3ac036ff27c4d366fbe054aef8130ab479b26d76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Mar 2021 08:02:30 +0000 Subject: [PATCH 0500/2257] 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 924638b..cbde29f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210301.35-unstable +jellyfin20210302.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210301.35-unstable +jellyfin-server20210302.4-unstable jellyfin-web20210301.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 859e5d6c3c2574fe6e2d9a6026cbc7a1026d5571 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Mar 2021 10:06:53 -0500 Subject: [PATCH 0501/2257] 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 cbde29f..7425092 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210302.4-unstable +jellyfin20210302.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210302.4-unstable -jellyfin-web20210301.18-unstable +jellyfin-server20210302.5-unstable +jellyfin-web20210302.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From fcbd8c541def91745f4e5c11de0e94be81e168be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Mar 2021 12:09:13 +0000 Subject: [PATCH 0502/2257] 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 7425092..5bf7293 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210302.5-unstable +jellyfin20210303.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210302.5-unstable -jellyfin-web20210302.1-unstable +jellyfin-web20210303.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 18ba534d08eb95a86a14e095eb1ca88be91dae98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Mar 2021 16:03:50 +0000 Subject: [PATCH 0503/2257] 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 5bf7293..c013274 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210303.1-unstable +jellyfin20210307.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210302.5-unstable -jellyfin-web20210303.1-unstable +jellyfin-web20210307.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 92523f62e936a3017301d5ca70e96d3211d50dce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Mar 2021 23:03:47 +0000 Subject: [PATCH 0504/2257] 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 c013274..5a789e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210307.2-unstable +jellyfin20210307.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210302.5-unstable +jellyfin-server20210307.3-unstable jellyfin-web20210307.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From dea988655cb832028afcfb478716f8189b14bbbf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Mar 2021 11:12:07 -0500 Subject: [PATCH 0505/2257] 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 5a789e5..9047343 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210307.3-unstable +jellyfin20210308.6-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210307.3-unstable -jellyfin-web20210307.2-unstable +jellyfin-web20210308.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 548429d54f28096d5e53cff6b5267ed3c21329a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Mar 2021 20:37:56 -0500 Subject: [PATCH 0506/2257] 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 9047343..cc016cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210308.6-unstable +jellyfin20210309.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210307.3-unstable -jellyfin-web20210308.6-unstable +jellyfin-web20210309.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.6-1~ubuntu20.04.1 +libglib2.0-02.64.6-1~ubuntu20.04.2 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 From 4a3b423f35bbdc857eaab41fc67139dc41acd3cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Mar 2021 01:38:27 +0000 Subject: [PATCH 0507/2257] 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 2027da0..d5424a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin10.6.4-1 +jellyfin10.7.0-1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server10.6.4-1 -jellyfin-web10.6.4-1 +jellyfin-server10.7.0-1 +jellyfin-web10.7.0-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.6-1~ubuntu20.04.1 +libglib2.0-02.64.6-1~ubuntu20.04.2 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 From cbbd1fcd5f261eda93f02b141fe089e08497ff7b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Mar 2021 03:09:48 -0500 Subject: [PATCH 0508/2257] 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 cc016cf..990b9fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210309.1-unstable +jellyfin20210309.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210307.3-unstable -jellyfin-web20210309.1-unstable +jellyfin-web20210309.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -183,7 +183,7 @@ libxext62:1.3.4-0ubuntu1 libxml22.9.10+dfsg-5 libxrender11:0.9.10-1 libxshmfence11.3-1 -libzstd11.4.4+dfsg-3 +libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 locales2.31-0ubuntu9.2 From ff5369d894db78753c57ca9cf8123ff4b27f54a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Mar 2021 10:04:24 -0500 Subject: [PATCH 0509/2257] 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 990b9fb..afa249e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210309.2-unstable +jellyfin20210309.9-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210307.3-unstable -jellyfin-web20210309.2-unstable +jellyfin-web20210309.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 859c4187d1f147e368b0a7a0e4a73117d8205fe2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Mar 2021 22:02:27 +0000 Subject: [PATCH 0510/2257] 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 afa249e..d6eb916 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210309.9-unstable +jellyfin20210309.19-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210307.3-unstable -jellyfin-web20210309.9-unstable +jellyfin-server20210309.19-unstable +jellyfin-web20210309.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From ad825a897baf0debbee546674b3f87aa7c82c6d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Mar 2021 00:07:06 -0500 Subject: [PATCH 0511/2257] 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 d6eb916..3dce638 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210309.19-unstable +jellyfin20210310.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210309.19-unstable -jellyfin-web20210309.17-unstable +jellyfin-web20210310.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From e8fc376035ffebfe8ace130526a49f5fafd5ca13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Mar 2021 07:06:14 -0500 Subject: [PATCH 0512/2257] 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 3dce638..991b5ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210310.1-unstable +jellyfin20210310.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210309.19-unstable -jellyfin-web20210310.1-unstable +jellyfin-server20210310.6-unstable +jellyfin-web20210310.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0e998445df470072c506d3c99127256d20aaaa51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Mar 2021 20:04:41 +0000 Subject: [PATCH 0513/2257] 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 991b5ab..57a5140 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210310.6-unstable +jellyfin20210310.10-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210310.6-unstable -jellyfin-web20210310.2-unstable +jellyfin-web20210310.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From d25f7c066bba4704f7921dc08e0e9c63797aa1de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Mar 2021 21:23:45 -0500 Subject: [PATCH 0514/2257] 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 57a5140..86fcf67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210310.10-unstable +jellyfin20210310.12-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210310.6-unstable -jellyfin-web20210310.10-unstable +jellyfin-web20210310.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 0a677ca831fec04d9bd88d3a088a269287257040 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Mar 2021 21:43:49 -0500 Subject: [PATCH 0515/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d5424a5..04e8659 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -183,7 +183,7 @@ libxext62:1.3.4-0ubuntu1 libxml22.9.10+dfsg-5 libxrender11:0.9.10-1 libxshmfence11.3-1 -libzstd11.4.4+dfsg-3 +libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 locales2.31-0ubuntu9.2 From ad8f6c0dfb489334674f67c18ba47c8b9d83b28c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Mar 2021 12:04:32 +0000 Subject: [PATCH 0516/2257] 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 86fcf67..a66f3e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210310.12-unstable +jellyfin20210311.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210310.6-unstable -jellyfin-web20210310.12-unstable +jellyfin-web20210311.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 8df34b2cc8924fa5ca27f175eea1b4e4db621ae9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Mar 2021 19:06:32 +0000 Subject: [PATCH 0517/2257] 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 a66f3e9..1cd9ae0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210311.1-unstable +jellyfin20210311.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210310.6-unstable -jellyfin-web20210311.1-unstable +jellyfin-server20210311.4-unstable +jellyfin-web20210311.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From fb01e150bf7796c1a38481172d6316bff61f0b0b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Mar 2021 01:43:55 +0000 Subject: [PATCH 0518/2257] 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 1cd9ae0..3a46bcc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210311.5-unstable +jellyfin20210311.18-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210311.4-unstable -jellyfin-web20210311.5-unstable +jellyfin-server20210311.18-unstable +jellyfin-web20210311.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From d5e1d1cac323bac5e2ffc7a83d12c7c1571e3830 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Mar 2021 09:05:05 +0000 Subject: [PATCH 0519/2257] 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 3a46bcc..30d92e2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210311.18-unstable +jellyfin20210312.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210311.18-unstable -jellyfin-web20210311.6-unstable +jellyfin-web20210312.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From da8224dc83e9e1d12209c85885d058cb0301f72a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Mar 2021 11:04:46 -0500 Subject: [PATCH 0520/2257] 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 30d92e2..e2d64ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210312.1-unstable +jellyfin20210312.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210311.18-unstable +jellyfin-server20210312.3-unstable jellyfin-web20210312.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5887966d9b8dd5de31d0f50925a220aeb8ed6cc3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Mar 2021 00:12:44 +0000 Subject: [PATCH 0521/2257] 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 e2d64ce..18a6e41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210312.3-unstable +jellyfin20210312.4-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210312.3-unstable -jellyfin-web20210312.1-unstable +jellyfin-web20210312.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From fe91597575800449e9b1c0a2698cde426cff596b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Mar 2021 07:05:01 +0000 Subject: [PATCH 0522/2257] 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 18a6e41..52100c8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210312.4-unstable +jellyfin20210313.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210312.3-unstable -jellyfin-web20210312.4-unstable +jellyfin-web20210313.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From ce3f66bfecee9e0f257b2950add7f6b5da6e84da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Mar 2021 15:00:57 +0000 Subject: [PATCH 0523/2257] 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 52100c8..492dc2d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210313.1-unstable +jellyfin20210313.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210312.3-unstable +jellyfin-server20210313.6-unstable jellyfin-web20210313.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3189dbae97c8cbbe5c95cce1c082ad64f031590c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Mar 2021 23:04:55 +0000 Subject: [PATCH 0524/2257] 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 492dc2d..8551197 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210313.6-unstable +jellyfin20210313.18-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210313.6-unstable +jellyfin-server20210313.18-unstable jellyfin-web20210313.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 12ecd61d9da25910a6af8efdeb07a1f6815d868a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Mar 2021 06:02:25 +0000 Subject: [PATCH 0525/2257] 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 8551197..e823c36 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210313.18-unstable +jellyfin20210313.21-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210313.18-unstable +jellyfin-server20210313.21-unstable jellyfin-web20210313.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 399a809ff702fb66454c0ba5b42e3fb384dd9133 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Mar 2021 09:14:35 -0400 Subject: [PATCH 0526/2257] 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 e823c36..3342013 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210313.21-unstable +jellyfin20210314.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210313.21-unstable -jellyfin-web20210313.1-unstable +jellyfin-server20210314.1-unstable +jellyfin-web20210314.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 6e886a3fef8af84124bd80f27e00dba874a23318 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Mar 2021 20:09:48 +0000 Subject: [PATCH 0527/2257] 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 3342013..cd292b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210314.3-unstable +jellyfin20210314.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210314.1-unstable -jellyfin-web20210314.3-unstable +jellyfin-server20210314.4-unstable +jellyfin-web20210314.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 872fb2624d315d32c04cb401ac292a02bf174e32 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Mar 2021 22:35:57 -0400 Subject: [PATCH 0528/2257] 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 cd292b1..9c8f4da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210314.4-unstable +jellyfin20210314.5-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210314.4-unstable -jellyfin-web20210314.4-unstable +jellyfin-web20210314.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From eb869b4026fadae6fcd71f308338279f594d3ec5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Mar 2021 09:06:12 +0000 Subject: [PATCH 0529/2257] 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 9c8f4da..f034b46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210314.5-unstable +jellyfin20210315.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210314.4-unstable +jellyfin-server20210315.3-unstable jellyfin-web20210314.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 98bba4d0239e74954f58abbb20308c13b69562b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Mar 2021 20:05:44 -0400 Subject: [PATCH 0530/2257] 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 f034b46..7e3fa76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210315.3-unstable +jellyfin20210315.19-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210315.3-unstable -jellyfin-web20210314.5-unstable +jellyfin-server20210315.19-unstable +jellyfin-web20210315.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.6-1~ubuntu20.04.2 +libglib2.0-02.64.6-1~ubuntu20.04.3 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 From 7a0c2bbc872a1234291b2b14320d229ac91d58a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Mar 2021 10:06:09 -0400 Subject: [PATCH 0531/2257] 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 7e3fa76..e3c80c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210315.19-unstable +jellyfin20210316.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210315.19-unstable +jellyfin-server20210316.4-unstable jellyfin-web20210315.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ac0a8f9a559777761529a919e519f42859748398 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Mar 2021 21:09:43 +0000 Subject: [PATCH 0532/2257] 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 e3c80c9..27cc113 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210316.4-unstable +jellyfin20210316.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210316.4-unstable -jellyfin-web20210315.3-unstable +jellyfin-server20210316.5-unstable +jellyfin-web20210316.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 66e552f4fa34dbb86d895d439c205641d03fac99 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Mar 2021 04:06:58 +0000 Subject: [PATCH 0533/2257] 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 27cc113..0c0f588 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210316.5-unstable +jellyfin20210317.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210316.5-unstable -jellyfin-web20210316.1-unstable +jellyfin-web20210317.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 698ceed921f9fbf6be10275b528343187f7c877e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Mar 2021 22:47:07 -0400 Subject: [PATCH 0534/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 04e8659..1bec4c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.2.0-5ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.6-1~ubuntu20.04.2 +libglib2.0-02.64.6-1~ubuntu20.04.3 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 From 37dfdf60062db7db057f1e6db018515aacd974cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Mar 2021 08:08:36 -0400 Subject: [PATCH 0535/2257] 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 0c0f588..fc1e5a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210317.1-unstable +jellyfin20210318.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210316.5-unstable -jellyfin-web20210317.1-unstable +jellyfin-web20210318.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 293dc217ac80cde647dcb8b1b175fbcdaa00da62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Mar 2021 19:12:06 +0000 Subject: [PATCH 0536/2257] 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 fc1e5a7..90d7300 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210318.1-unstable +jellyfin20210318.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210316.5-unstable -jellyfin-web20210318.1-unstable +jellyfin-web20210318.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From aa5c6300886d6d757a3bde4e5fd9df5dda692091 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Mar 2021 08:03:08 +0000 Subject: [PATCH 0537/2257] 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 90d7300..1974f5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210318.2-unstable +jellyfin20210319.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210316.5-unstable -jellyfin-web20210318.2-unstable +jellyfin-server20210319.1-unstable +jellyfin-web20210319.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 829315d373245ee9b09a5fa8a8247bc1e15a1b98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Mar 2021 14:16:52 -0400 Subject: [PATCH 0538/2257] 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 1974f5b..bfc5946 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210319.3-unstable +jellyfin20210319.11-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210319.1-unstable -jellyfin-web20210319.3-unstable +jellyfin-server20210319.3-unstable +jellyfin-web20210319.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From e844c99ec4d81eccb7a702cd0c2ef4aad20463b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 20 Mar 2021 01:41:27 +0000 Subject: [PATCH 0539/2257] 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 bfc5946..9cd56e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210319.11-unstable +jellyfin20210320.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210319.3-unstable +jellyfin-server20210320.1-unstable jellyfin-web20210319.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 16d9bcc153547ca2aaadac5322d294fec1ae94bb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Mar 2021 15:02:01 +0000 Subject: [PATCH 0540/2257] 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 9cd56e4..0d6ca8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210320.1-unstable +jellyfin20210321.4-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210320.1-unstable -jellyfin-web20210319.11-unstable +jellyfin-web20210321.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From a45f02f3f5e89a3465cfb2725b42abcba4d83c79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Mar 2021 20:05:12 -0400 Subject: [PATCH 0541/2257] 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 1bec4c7..d45e14a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin10.7.0-1 +jellyfin10.7.1-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.0-1 -jellyfin-web10.7.0-1 +jellyfin-web10.7.1-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 734d77a52846b41f207fc1d168ad0ba89291f442 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Mar 2021 20:18:19 -0400 Subject: [PATCH 0542/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d45e14a..532e181 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin10.7.1-1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server10.7.0-1 +jellyfin-server10.7.1-1 jellyfin-web10.7.1-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 72daafe19ee76bd81fcb08f79a3dd995a2a7e757 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Mar 2021 17:33:06 +0000 Subject: [PATCH 0543/2257] 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 0d6ca8c..15a2913 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210321.4-unstable +jellyfin20210322.13-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210320.1-unstable +jellyfin-server20210322.13-unstable jellyfin-web20210321.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d3d2b258aafd21766ffc8a4c9dd19d61dbf3e4b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Mar 2021 20:05:33 -0400 Subject: [PATCH 0544/2257] 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 15a2913..47cbe17 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210322.13-unstable +jellyfin20210322.25-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210322.13-unstable -jellyfin-web20210321.4-unstable +jellyfin-server20210322.25-unstable +jellyfin-web20210322.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From e6774195341ede003173a64b4ddb1ee5004cd6f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Mar 2021 07:10:26 +0000 Subject: [PATCH 0545/2257] 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 47cbe17..15ccc2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210322.25-unstable +jellyfin20210323.6-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210322.25-unstable -jellyfin-web20210322.3-unstable +jellyfin-web20210323.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 650a5e35097c5d049162c70c551aba237c2a9ef6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 23 Mar 2021 15:01:19 +0000 Subject: [PATCH 0546/2257] 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 15ccc2b..31bee4a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210323.6-unstable +jellyfin20210323.8-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210322.25-unstable -jellyfin-web20210323.6-unstable +jellyfin-web20210323.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From d2d92d1ab3b8b944bb9ebd90f09e35d06c952856 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Mar 2021 23:07:11 +0000 Subject: [PATCH 0547/2257] 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 31bee4a..8952c7d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210323.8-unstable +jellyfin20210324.15-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210322.25-unstable +jellyfin-server20210324.15-unstable jellyfin-web20210323.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f536456c55dd1e957ace430cbd4267708d44b707 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Mar 2021 02:36:30 +0000 Subject: [PATCH 0548/2257] 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 8952c7d..c93b363 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210324.15-unstable +jellyfin20210325.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210324.15-unstable +jellyfin-server20210325.3-unstable jellyfin-web20210323.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2d00515885078d61ea19d92f479ecda4529642c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Mar 2021 17:19:20 +0000 Subject: [PATCH 0549/2257] 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 c93b363..01c1e06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210325.3-unstable +jellyfin20210325.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210325.3-unstable +jellyfin-server20210325.9-unstable jellyfin-web20210323.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -147,7 +147,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.2 +libssl1.11.1.1f-1ubuntu2.3 libstdc++610.2.0-5ubuntu1~20.04 libsystemd0245.4-4ubuntu3.4 libtasn1-64.16.0-2 From 5ec31992b540349425d4e1eaf62529f0dcedb2e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Mar 2021 20:18:35 -0400 Subject: [PATCH 0550/2257] 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 01c1e06..18e9e51 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210325.9-unstable +jellyfin20210325.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210325.9-unstable +jellyfin-server20210325.14-unstable jellyfin-web20210323.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0c9d058e569879e8b06fd6fa741b65eb943b8223 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Mar 2021 12:11:02 +0000 Subject: [PATCH 0551/2257] 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 18e9e51..71421e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210325.14-unstable +jellyfin20210326.6-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210325.14-unstable -jellyfin-web20210323.8-unstable +jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 85ba7d01193c36164dcc04aecaa153b79ec3b17c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Mar 2021 20:13:29 -0400 Subject: [PATCH 0552/2257] 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 71421e0..2361bf6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210326.6-unstable +jellyfin20210326.11-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210325.14-unstable +jellyfin-server20210326.11-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9fdf10a1530f1183c48e1225844a48af9f59ecd3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Mar 2021 03:17:44 -0400 Subject: [PATCH 0553/2257] 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 2361bf6..fadb876 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210326.11-unstable +jellyfin20210327.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210326.11-unstable +jellyfin-server20210327.1-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 71dfb3e38e07083afbe468485af5f160b2318317 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Mar 2021 14:02:33 +0000 Subject: [PATCH 0554/2257] 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 fadb876..cb550fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210327.1-unstable +jellyfin20210327.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210327.1-unstable +jellyfin-server20210327.3-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8094ad79fcca51e1436a20554eb8d92b2e8a6a4f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Mar 2021 17:01:25 -0400 Subject: [PATCH 0555/2257] 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 cb550fb..1f10f81 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210327.3-unstable +jellyfin20210327.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210327.3-unstable +jellyfin-server20210327.5-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ec178731d2acc5a40b231dadf3f4b7c7eb707bb8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 30 Mar 2021 10:01:25 -0400 Subject: [PATCH 0556/2257] 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 1f10f81..22e0d3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210327.5-unstable +jellyfin20210330.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210327.5-unstable +jellyfin-server20210330.4-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -149,11 +149,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.4 +libsystemd0245.4-4ubuntu3.5 libtasn1-64.16.0-2 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.4 +libudev1245.4-4ubuntu3.5 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 974f89c2595442221690f7c445350fe28a4ca713 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 31 Mar 2021 23:25:20 -0400 Subject: [PATCH 0557/2257] 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 532e181..4e0fcbd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,13 +147,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.4 +libudev1245.4-4ubuntu3.5 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 50f0450d9859b2037478d1a940520dec32bbb1b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Apr 2021 16:10:22 +0000 Subject: [PATCH 0558/2257] 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 22e0d3d..32a70fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210330.4-unstable +jellyfin20210401.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210330.4-unstable +jellyfin-server20210401.5-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f95c41540dbeadad3ab6f21fbd42854ecc3bf7b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Apr 2021 23:26:51 +0000 Subject: [PATCH 0559/2257] 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 32a70fd..fe5e3f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210401.5-unstable +jellyfin20210401.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210401.5-unstable +jellyfin-server20210401.8-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 19c578e64b7a8dadb098b560fdede2a54ff6669a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Apr 2021 11:01:25 -0400 Subject: [PATCH 0560/2257] 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 fe5e3f8..3abda98 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210401.8-unstable +jellyfin20210402.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210401.8-unstable +jellyfin-server20210402.2-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4473f3cf44fd8e6a1ceaeb267691f6d3c9cc56c8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Apr 2021 19:15:22 -0400 Subject: [PATCH 0561/2257] 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 3abda98..c237ddf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210402.2-unstable +jellyfin20210402.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210402.2-unstable +jellyfin-server20210402.4-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d6de293dd8c1d993043093367bce83791b6a02f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Apr 2021 23:26:01 +0000 Subject: [PATCH 0562/2257] 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 c237ddf..5c61292 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210402.4-unstable +jellyfin20210402.13-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210402.4-unstable +jellyfin-server20210402.13-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f7a5e7d36d115572bcfa8d6bf6d61fbc26c25488 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Apr 2021 07:04:11 +0100 Subject: [PATCH 0563/2257] 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 5c61292..424688d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210402.13-unstable +jellyfin20210403.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210402.13-unstable +jellyfin-server20210403.1-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From da482b3e74e0e2a5f71882a20bc3f506343b9850 Mon Sep 17 00:00:00 2001 From: Nyanmisaka Date: Sat, 3 Apr 2021 21:18:07 +0800 Subject: [PATCH 0564/2257] pull the lastest iHD driver from Intel repository --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 89304fd..3ef8e3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,8 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ + echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ @@ -27,7 +29,6 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - i965-va-driver \ intel-media-va-driver-non-free \ ${JELLYFIN} \ libfontconfig1 \ From 89156310977f5c1332c6b0caf533336fa96ef2f0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Apr 2021 19:28:44 +0100 Subject: [PATCH 0565/2257] 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 424688d..a2a9d9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210403.1-unstable +jellyfin20210403.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210403.1-unstable +jellyfin-server20210403.4-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c7e1cfcdb0e7f2cb38c388cb2d7da0c8581e12bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Apr 2021 03:12:07 +0100 Subject: [PATCH 0566/2257] 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 a2a9d9b..ba33fd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210403.4-unstable +jellyfin20210403.12-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210403.4-unstable +jellyfin-server20210403.12-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d399e39f80d89d3b78faef5785d6f4238c524a7c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Apr 2021 08:02:38 -0400 Subject: [PATCH 0567/2257] 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 ba33fd4..2ce654a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210403.12-unstable +jellyfin20210404.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210403.12-unstable +jellyfin-server20210404.1-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ceb703a720bf494e2b8cf6e6825fed3447b46c9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Apr 2021 19:29:34 +0100 Subject: [PATCH 0568/2257] 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 2ce654a..be88f3b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210404.1-unstable +jellyfin20210404.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210404.1-unstable +jellyfin-server20210404.4-unstable jellyfin-web20210326.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 95a22f31b6af55aa33f1a66984edadc6822971be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Apr 2021 08:29:13 +0100 Subject: [PATCH 0569/2257] 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 be88f3b..17d6e6f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210404.4-unstable +jellyfin20210405.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210404.4-unstable -jellyfin-web20210326.6-unstable +jellyfin-web20210405.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 73d33e7a4fe1b6bf1940c2b61c8bd12f5c592e21 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Apr 2021 12:07:37 -0400 Subject: [PATCH 0570/2257] 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 17d6e6f..85d6b79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210405.1-unstable +jellyfin20210405.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210404.4-unstable +jellyfin-server20210405.3-unstable jellyfin-web20210405.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7ba8a3940b2dd56d7aaa31ddd367282a842777ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 6 Apr 2021 19:29:21 +0000 Subject: [PATCH 0571/2257] 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 85d6b79..a23de00 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,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 @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210405.3-unstable +jellyfin20210406.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210405.3-unstable +jellyfin-server20210406.9-unstable jellyfin-web20210405.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -62,7 +62,7 @@ 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.4 +libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.102-1ubuntu1~20.04.1 @@ -208,7 +208,7 @@ sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 57152de55c1a5b9ad0b16b9a5fa41fa76f59dd42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 7 Apr 2021 16:02:25 -0400 Subject: [PATCH 0572/2257] 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 a23de00..04d7e3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210406.9-unstable +jellyfin20210407.16-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210406.9-unstable +jellyfin-server20210407.16-unstable jellyfin-web20210405.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 276e08c134ef2ee35468d361a3a7698931452750 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 7 Apr 2021 22:53:22 -0400 Subject: [PATCH 0573/2257] 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 4e0fcbd..4e4344a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,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 @@ -62,7 +62,7 @@ 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.4 +libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.102-1ubuntu1~20.04.1 @@ -208,7 +208,7 @@ sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 57058412a15a68bc04ff5109c318a3244203e92b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Apr 2021 02:55:32 +0000 Subject: [PATCH 0574/2257] 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 04d7e3f..fedfe9d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210407.16-unstable +jellyfin20210407.28-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210407.16-unstable -jellyfin-web20210405.1-unstable +jellyfin-server20210407.21-unstable +jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From e87ef25c3dd375b86e3d122369a908bdb844aca2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Apr 2021 08:03:02 -0400 Subject: [PATCH 0575/2257] 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 fedfe9d..3e5967c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210407.28-unstable +jellyfin20210408.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210407.21-unstable +jellyfin-server20210408.5-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 69db4ddf88cfc9151b47b0c7411b27dd10479657 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Apr 2021 18:28:46 +0000 Subject: [PATCH 0576/2257] 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 3e5967c..5b7b753 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210408.5-unstable +jellyfin20210408.24-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210408.5-unstable +jellyfin-server20210408.24-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0eab1701925e0f54b38afbb43722e2ce64efc142 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Apr 2021 02:59:30 +0100 Subject: [PATCH 0577/2257] 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 5b7b753..8a1f9cd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210408.24-unstable +jellyfin20210408.25-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210408.24-unstable +jellyfin-server20210408.25-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c4646c7b4342fefbcda05e935f24d9287e65b94f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Apr 2021 12:09:07 +0100 Subject: [PATCH 0578/2257] 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 8a1f9cd..28c5469 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210408.25-unstable +jellyfin20210409.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210408.25-unstable +jellyfin-server20210409.8-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From daa3ac223c2be990975e4f37c3a466bdc8e41801 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Apr 2021 23:06:44 +0100 Subject: [PATCH 0579/2257] 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 28c5469..d2588d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210409.8-unstable +jellyfin20210409.26-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210409.8-unstable +jellyfin-server20210409.26-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a9428c1869654bced772fea1a334f89887c097f0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Apr 2021 05:18:49 +0000 Subject: [PATCH 0580/2257] 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 d2588d8..5377a48 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210409.26-unstable +jellyfin20210410.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210409.26-unstable +jellyfin-server20210410.1-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4cbe9b56cceeb9be84c774d5383260ba9a544edb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Apr 2021 16:03:50 +0000 Subject: [PATCH 0581/2257] 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 5377a48..9178411 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210410.1-unstable +jellyfin20210410.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210410.1-unstable +jellyfin-server20210410.7-unstable jellyfin-web20210407.28-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b5a3d9d7f85315b65e5b9e4c847ff4dc1150a31d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Apr 2021 00:06:54 +0100 Subject: [PATCH 0582/2257] 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 9178411..b4d05c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210410.7-unstable +jellyfin20210410.19-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210410.7-unstable -jellyfin-web20210407.28-unstable +jellyfin-server20210410.19-unstable +jellyfin-web20210410.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 60cbafc94ed239903f7d49d1c3c3de19c2e4f145 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Apr 2021 05:18:57 +0000 Subject: [PATCH 0583/2257] 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 b4d05c5..452b0c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210410.19-unstable +jellyfin20210410.20-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210410.19-unstable +jellyfin-server20210410.20-unstable jellyfin-web20210410.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9edad52da7973079637f8d4f7f5c444eabfeb11e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Apr 2021 19:21:59 +0100 Subject: [PATCH 0584/2257] 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 452b0c3..c7cb2bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210410.20-unstable +jellyfin20210411.25-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210410.20-unstable -jellyfin-web20210410.12-unstable +jellyfin-server20210411.25-unstable +jellyfin-web20210411.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 1df5058933ed8e190d80d45f287b6773a8c5f754 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Apr 2021 23:12:21 +0000 Subject: [PATCH 0585/2257] 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 4e4344a..3aa8125 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin10.7.1-1 +jellyfin10.7.2-1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server10.7.1-1 -jellyfin-web10.7.1-1 +jellyfin-server10.7.2-1 +jellyfin-web10.7.2-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 7f4ec87fe83dbc1975a2999d528b68e03a563cb0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Apr 2021 03:05:59 +0100 Subject: [PATCH 0586/2257] 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 c7cb2bc..324830b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210411.25-unstable +jellyfin20210411.36-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210411.25-unstable +jellyfin-server20210411.36-unstable jellyfin-web20210411.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6a0638dbc953f958694a56e159cb8d7c731622a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Apr 2021 10:05:39 +0000 Subject: [PATCH 0587/2257] 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 324830b..5827e1b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210411.36-unstable +jellyfin20210412.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210411.36-unstable -jellyfin-web20210411.6-unstable +jellyfin-web20210412.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.4 From 813ca05e5dddc1ec8fb2df0f0349dd5d2129ea8b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Apr 2021 18:37:36 +0100 Subject: [PATCH 0588/2257] 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 5827e1b..d7c0e2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210412.1-unstable +jellyfin20210412.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210411.36-unstable +jellyfin-server20210412.10-unstable jellyfin-web20210412.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 708f127fce018abf23c329dba9643ecdf920af51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 13 Apr 2021 00:39:46 +0000 Subject: [PATCH 0589/2257] 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 d7c0e2a..b5ae45b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210412.10-unstable +jellyfin20210412.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210412.10-unstable +jellyfin-server20210412.14-unstable jellyfin-web20210412.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 38eecaea63efe958529fdd7c75f44c49d18fc149 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 13 Apr 2021 06:06:42 -0400 Subject: [PATCH 0590/2257] 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 b5ae45b..8c1a1fd 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 at3.1.23-1ubuntu1 base-files11ubuntu5.3 base-passwd3.5.47 @@ -38,13 +38,13 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210412.14-unstable +jellyfin20210413.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210412.14-unstable +jellyfin-server20210413.2-unstable jellyfin-web20210412.1-unstable 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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -149,11 +149,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.5 +libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 From d9edf96cbcff8b124ba96ddb220ea081e27bbd9a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 13 Apr 2021 17:44:38 +0000 Subject: [PATCH 0591/2257] 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 8c1a1fd..62a3e50 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210413.2-unstable +jellyfin20210413.29-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210413.2-unstable -jellyfin-web20210412.1-unstable +jellyfin-server20210413.29-unstable +jellyfin-web20210413.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 0f36a5000a0328a7d0f87b86d9d276aa4dc3b917 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Apr 2021 06:12:49 -0400 Subject: [PATCH 0592/2257] 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 62a3e50..f61ce9d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210413.29-unstable +jellyfin20210414.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210413.29-unstable +jellyfin-server20210414.1-unstable jellyfin-web20210413.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2b3ffcf800694523bd1905551b13d6b34c380ac3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Apr 2021 13:34:42 -0400 Subject: [PATCH 0593/2257] 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 f61ce9d..83610bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210414.1-unstable +jellyfin20210414.12-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210414.1-unstable -jellyfin-web20210413.3-unstable +jellyfin-server20210414.12-unstable +jellyfin-web20210414.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 383f69a84637b9a21a528d29ff148dfb6eee9810 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Apr 2021 00:08:21 +0000 Subject: [PATCH 0594/2257] 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 83610bf..ac136db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210414.12-unstable +jellyfin20210414.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210414.12-unstable -jellyfin-web20210414.6-unstable +jellyfin-server20210414.14-unstable +jellyfin-web20210414.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 408001242b8134b4e767552ef31653c96f59e317 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Apr 2021 02:55:32 +0000 Subject: [PATCH 0595/2257] 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 3aa8125..f834287 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 at3.1.23-1ubuntu1 base-files11ubuntu5.3 base-passwd3.5.47 @@ -44,7 +44,7 @@ jellyfin-server10.7.2-1 jellyfin-web10.7.2-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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -149,11 +149,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.5 +libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 From 8c8ce2e642a08567d37ae5f92cce131d641a52d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Apr 2021 08:18:46 -0400 Subject: [PATCH 0596/2257] Bot Updating Package Versions --- package_versions.txt | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f834287..af9e0b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,9 +35,8 @@ gpg-wks-server2.2.19-3ubuntu2.1 grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 -i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -intel-media-va-driver-non-free20.1.1+ds1-1build1 +intel-media-va-driver-non-free21.1.2+i526~u20.04 jellyfin10.7.2-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.2-1 @@ -65,12 +64,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.102-1ubuntu1~20.04.1 -libdrm-amdgpu12.4.102-1ubuntu1~20.04.1 -libdrm-common2.4.102-1ubuntu1~20.04.1 -libdrm-intel12.4.102-1ubuntu1~20.04.1 -libdrm-nouveau22.4.102-1ubuntu1~20.04.1 -libdrm-radeon12.4.102-1ubuntu1~20.04.1 +libdrm22.4.104+i526~u20.04 +libdrm-amdgpu12.4.104+i526~u20.04 +libdrm-common2.4.104+i526~u20.04 +libdrm-intel12.4.104+i526~u20.04 +libdrm-nouveau22.4.104+i526~u20.04 +libdrm-radeon12.4.104+i526~u20.04 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -98,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1120.1.1+ds1-1 +libigdgmm1120.4.1+i526~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -156,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.7.0-2 +libva22.10.0+i526~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From 23a72712429c77ca695c7ae1fcb4a79e72d7cf19 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Apr 2021 15:05:50 +0100 Subject: [PATCH 0597/2257] 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 ac136db..17b7664 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210414.14-unstable +jellyfin20210415.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210414.14-unstable +jellyfin-server20210415.6-unstable jellyfin-web20210414.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 682853b263d0ab1a2e7b6fd6c1efa554d82fee8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 09:14:17 -0400 Subject: [PATCH 0598/2257] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 71 insertions(+), 17 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cee5a51..a21281e 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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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 0dd3b854f4d1e5ed9b5f87ff09cf1b6e7026cd30 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 14:15:33 +0100 Subject: [PATCH 0599/2257] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 11 +- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/greetings.yml | 4 +- README.md | 258 ++++++++++++++++--------------- 4 files changed, 140 insertions(+), 135 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8af71ca..b037b37 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-jellyfin/edit/master/readme-vars.yml). +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-jellyfin/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-jellyfin) @@ -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-jellyfin.git cd docker-jellyfin 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-jellyfin/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-jellyfin/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 ef2f1bc..bd518ce 100755 --- 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-jellyfin/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-jellyfin/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 cb747d6..1d1501d 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-jellyfin/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/blob/nightly/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 53ac761..79b3524 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. @@ -39,7 +40,6 @@ Find us at: [![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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. - [![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://jellyfin.github.io/) ## Supported Architectures @@ -66,122 +66,6 @@ This image provides various versions that are available via tags. `latest` tag u | bionic | Stable Jellyfin releases - Bionic baseimage | | nightly | Unstable Jellyfin releases | -## Usage - -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. - -```yaml ---- -version: "2.1" -services: - jellyfin: - image: ghcr.io/linuxserver/jellyfin - container_name: jellyfin - environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/London - volumes: - - /path/to/library:/config - - path/to/tvseries:/data/tvshows - - /path/to/movies:/data/movies - - /opt/vc/lib:/opt/vc/lib #optional - ports: - - 8096:8096 - - 8920:8920 #optional - devices: - - /dev/dri:/dev/dri #optional - - /dev/vc-mem:/dev/vc-mem #optional - - /dev/vchiq:/dev/vchiq #optional - - /dev/video10:/dev/video10 #optional - - /dev/video11:/dev/video11 #optional - - /dev/video12:/dev/video12 #optional - restart: unless-stopped -``` - -### docker cli - -``` -docker run -d \ - --name=jellyfin \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -p 8096:8096 \ - -p 8920:8920 `#optional` \ - -v /path/to/library:/config \ - -v path/to/tvseries:/data/tvshows \ - -v /path/to/movies:/data/movies \ - -v /opt/vc/lib:/opt/vc/lib `#optional` \ - --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vc-mem:/dev/vc-mem `#optional` \ - --device /dev/vchiq:/dev/vchiq `#optional` \ - --device /dev/video10:/dev/video10 `#optional` \ - --device /dev/video11:/dev/video11 `#optional` \ - --device /dev/video12:/dev/video12 `#optional` \ - --restart unless-stopped \ - ghcr.io/linuxserver/jellyfin -``` - - -## 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. - -| Parameter | Function | -| :----: | --- | -| `-p 8096` | Http webUI. | -| `-p 8920` | Https webUI (you need to set up your own certificate). | -| `-e PUID=1000` | for UserID - see below for explanation | -| `-e PGID=1000` | for GroupID - see below for explanation | -| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London | -| `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | -| `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | -| `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | -| `--device /dev/vc-mem` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | -| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). | -| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | - -## 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. - -## 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`. - -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: - -``` - $ id username - uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) -``` - - -  ## Application Setup Webui can be found at `http://:8096` @@ -225,13 +109,125 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` +## Usage + +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. + +```yaml +--- +version: "2.1" +services: + jellyfin: + image: ghcr.io/linuxserver/jellyfin + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - /path/to/library:/config + - path/to/tvseries:/data/tvshows + - /path/to/movies:/data/movies + - /opt/vc/lib:/opt/vc/lib #optional + ports: + - 8096:8096 + - 8920:8920 #optional + devices: + - /dev/dri:/dev/dri #optional + - /dev/vc-mem:/dev/vc-mem #optional + - /dev/vchiq:/dev/vchiq #optional + - /dev/video10:/dev/video10 #optional + - /dev/video11:/dev/video11 #optional + - /dev/video12:/dev/video12 #optional + restart: unless-stopped +``` + +### docker cli + +```bash +docker run -d \ + --name=jellyfin \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -p 8096:8096 \ + -p 8920:8920 `#optional` \ + -v /path/to/library:/config \ + -v path/to/tvseries:/data/tvshows \ + -v /path/to/movies:/data/movies \ + -v /opt/vc/lib:/opt/vc/lib `#optional` \ + --device /dev/dri:/dev/dri `#optional` \ + --device /dev/vc-mem:/dev/vc-mem `#optional` \ + --device /dev/vchiq:/dev/vchiq `#optional` \ + --device /dev/video10:/dev/video10 `#optional` \ + --device /dev/video11:/dev/video11 `#optional` \ + --device /dev/video12:/dev/video12 `#optional` \ + --restart unless-stopped \ + ghcr.io/linuxserver/jellyfin +``` + +## 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. + +| Parameter | Function | +| :----: | --- | +| `-p 8096` | Http webUI. | +| `-p 8920` | Https webUI (you need to set up your own certificate). | +| `-e PUID=1000` | for UserID - see below for explanation | +| `-e PGID=1000` | for GroupID - see below for explanation | +| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London | +| `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | +| `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | +| `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | +| `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | +| `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | +| `--device /dev/vc-mem` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | +| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). | +| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | + +## Environment variables from files (Docker secrets) + +You can set any environment variable from a file by using a special prepend `FILE__`. + +As an example: + +```bash +-e FILE__PASSWORD=/run/secrets/mysecretpassword +``` + +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`. + +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: + +```bash + $ id username + uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) +``` ## Docker Mods + [![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=jellyfin&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 jellyfin /bin/bash` @@ -248,6 +244,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 jellyfin` * Let compose update all containers as necessary: `docker-compose up -d` @@ -255,6 +252,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/jellyfin` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` @@ -262,24 +260,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 jellyfin ``` + * 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-jellyfin.git cd docker-jellyfin docker build \ @@ -289,7 +292,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 aaa4a23bb1dee63ab4130a9fa5e8704898caf2e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 09:23:24 -0400 Subject: [PATCH 0600/2257] 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 17b7664..baafeb1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210415.6-unstable +jellyfin20210417.11-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210415.6-unstable +jellyfin-server20210417.11-unstable jellyfin-web20210414.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cf99709c131ef62669505ff147db0572f9dcc644 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 13:24:52 +0000 Subject: [PATCH 0601/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 79b3524..50b9d16 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ Find us at: [![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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) [Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. + [![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://jellyfin.github.io/) ## Supported Architectures From 3dfbf6878741366b6e508e28bd46f8a688aff41c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 18 Apr 2021 01:23:50 -0400 Subject: [PATCH 0602/2257] 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 baafeb1..6cce459 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210417.11-unstable +jellyfin20210418.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210417.11-unstable -jellyfin-web20210414.7-unstable +jellyfin-web20210418.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 25cc17b6ef0855480d9966b254860a3228ac4313 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 19 Apr 2021 07:21:05 +0000 Subject: [PATCH 0603/2257] 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 6cce459..edbdb03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210418.1-unstable +jellyfin20210419.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210417.11-unstable +jellyfin-server20210419.1-unstable jellyfin-web20210418.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d5a768824b33240cfba0a4a7cf181b004f61239c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 19 Apr 2021 10:06:17 -0400 Subject: [PATCH 0604/2257] 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 edbdb03..a33e49a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210419.1-unstable +jellyfin20210419.31-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210419.1-unstable +jellyfin-server20210419.31-unstable jellyfin-web20210418.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7d82f0aa8359a1f35bce3a015f100b9f398964b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 20 Apr 2021 12:07:45 +0000 Subject: [PATCH 0605/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a33e49a..5ef7898 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210419.31-unstable +jellyfin20210420.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210419.31-unstable -jellyfin-web20210418.1-unstable +jellyfin-server20210420.4-unstable +jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 @@ -94,7 +94,7 @@ libharfbuzz0b2.6.4-1ubuntu4 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 @@ -114,7 +114,7 @@ libmount12.34-0.1ubuntu9.1 libmp3lame03.100-3 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 libnuma12.0.12-1 @@ -130,7 +130,7 @@ libpcre2-8-010.34-7 libpcre32:8.39-12build1 libpixman-1-00.38.4-0ubuntu1 libpng16-161.6.37-2 -libprocps82:3.3.16-1ubuntu2 +libprocps82:3.3.16-1ubuntu2.1 libpsl50.21.0-1ubuntu1 libreadline88.0-4 libroken18-heimdal7.7.0+dfsg-1ubuntu1 @@ -138,7 +138,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 @@ -200,7 +200,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 203471fca548491e34321af15b653dd64da9de6e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 20 Apr 2021 18:24:14 +0000 Subject: [PATCH 0606/2257] 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 5ef7898..6eb6029 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210420.4-unstable +jellyfin20210420.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210420.4-unstable +jellyfin-server20210420.8-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cd4fe69a01ce32e0fb491698657251122ec195e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Apr 2021 09:22:56 -0400 Subject: [PATCH 0607/2257] 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 6eb6029..0fde717 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210420.8-unstable +jellyfin20210421.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210420.8-unstable +jellyfin-server20210421.10-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From de528b2ad07b7f5b73a8ce24b7eb9d49e617bd51 Mon Sep 17 00:00:00 2001 From: tobbenb Date: Wed, 21 Apr 2021 21:28:29 +0200 Subject: [PATCH 0608/2257] Add nvidia.icd file to fix missing tonemapping using Nvidia HW --- .github/CONTRIBUTING.md | 7 +- Jenkinsfile | 88 +++++++-- README.md | 307 +++++++++++++++-------------- readme-vars.yml | 1 + root/etc/OpenCL/vendors/nvidia.icd | 1 + 5 files changed, 233 insertions(+), 171 deletions(-) create mode 100644 root/etc/OpenCL/vendors/nvidia.icd diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8af71ca..f3be834 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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-jellyfin.git cd docker-jellyfin docker build \ @@ -106,13 +106,14 @@ 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-jellyfin/tree/master/root), add an entry to the changelog diff --git a/Jenkinsfile b/Jenkinsfile index 3366f7d..bdb0d35 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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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-jellyfin/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ + --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=Jellyfin\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --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": "master",\ "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": 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''' @@ -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 \ diff --git a/README.md b/README.md index b40ff7e..4e80096 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. @@ -66,147 +67,6 @@ This image provides various versions that are available via tags. `latest` tag u | bionic | Stable Jellyfin releases - Bionic baseimage | | nightly | Nightly Jellyfin releases | -## Usage - -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. - -```yaml ---- -version: "2.1" -services: - jellyfin: - image: ghcr.io/linuxserver/jellyfin - container_name: jellyfin - environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/London - - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional - volumes: - - /path/to/library:/config - - /path/to/tvseries:/data/tvshows - - /path/to/movies:/data/movies - - /opt/vc/lib:/opt/vc/lib #optional - ports: - - 8096:8096 - - 8920:8920 #optional - - 7359:7359/udp #optional - - 1900:1900/udp #optional - devices: - - /dev/dri:/dev/dri #optional - - /dev/vcsm:/dev/vcsm #optional - - /dev/vchiq:/dev/vchiq #optional - - /dev/video10:/dev/video10 #optional - - /dev/video11:/dev/video11 #optional - - /dev/video12:/dev/video12 #optional - restart: unless-stopped -``` - -### docker cli - -``` -docker run -d \ - --name=jellyfin \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -e JELLYFIN_PublishedServerUrl=192.168.0.5 `#optional` \ - -p 8096:8096 \ - -p 8920:8920 `#optional` \ - -p 7359:7359/udp `#optional` \ - -p 1900:1900/udp `#optional` \ - -v /path/to/library:/config \ - -v /path/to/tvseries:/data/tvshows \ - -v /path/to/movies:/data/movies \ - -v /opt/vc/lib:/opt/vc/lib `#optional` \ - --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vcsm:/dev/vcsm `#optional` \ - --device /dev/vchiq:/dev/vchiq `#optional` \ - --device /dev/video10:/dev/video10 `#optional` \ - --device /dev/video11:/dev/video11 `#optional` \ - --device /dev/video12:/dev/video12 `#optional` \ - --restart unless-stopped \ - ghcr.io/linuxserver/jellyfin -``` - - -## 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. - -| Parameter | Function | -| :----: | --- | -| `-p 8096` | Http webUI. | -| `-p 8920` | Optional - Https webUI (you need to set up your own certificate). | -| `-p 7359/udp` | Optional - Allows clients to discover Jellyfin on the local network. | -| `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | -| `-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 (e.g. Europe/London). | -| `-e JELLYFIN_PublishedServerUrl=192.168.0.5` | Set the autodiscovery response domain or IP address. | -| `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | -| `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | -| `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | -| `--device /dev/vcsm` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | -| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding. | -| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | - -## 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. - -## 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. - -## Optional Parameters - -The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. - -Service Discovery (`1900/udp`) - Since client auto-discover would break if this option were configurable, you cannot change this in the settings at this time. DLNA also uses this port and is required to be in the local subnet. - -Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local network. A broadcast message to this port with "Who is Jellyfin Server?" will get a JSON response that includes the server address, ID, and name. - -``` - -p 7359:7359/udp \ - -p 1900:1900/udp \ -``` - -The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. - - -## 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`. - -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: - -``` - $ id username - uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) -``` - - -  ## Application Setup Webui can be found at `http://:8096` @@ -251,13 +111,149 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` +## Usage + +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. + +```yaml +--- +version: "2.1" +services: + jellyfin: + image: ghcr.io/linuxserver/jellyfin + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional + volumes: + - /path/to/library:/config + - /path/to/tvseries:/data/tvshows + - /path/to/movies:/data/movies + - /opt/vc/lib:/opt/vc/lib #optional + ports: + - 8096:8096 + - 8920:8920 #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional + devices: + - /dev/dri:/dev/dri #optional + - /dev/vcsm:/dev/vcsm #optional + - /dev/vchiq:/dev/vchiq #optional + - /dev/video10:/dev/video10 #optional + - /dev/video11:/dev/video11 #optional + - /dev/video12:/dev/video12 #optional + restart: unless-stopped +``` + +### docker cli + +```bash +docker run -d \ + --name=jellyfin \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -e JELLYFIN_PublishedServerUrl=192.168.0.5 `#optional` \ + -p 8096:8096 \ + -p 8920:8920 `#optional` \ + -p 7359:7359/udp `#optional` \ + -p 1900:1900/udp `#optional` \ + -v /path/to/library:/config \ + -v /path/to/tvseries:/data/tvshows \ + -v /path/to/movies:/data/movies \ + -v /opt/vc/lib:/opt/vc/lib `#optional` \ + --device /dev/dri:/dev/dri `#optional` \ + --device /dev/vcsm:/dev/vcsm `#optional` \ + --device /dev/vchiq:/dev/vchiq `#optional` \ + --device /dev/video10:/dev/video10 `#optional` \ + --device /dev/video11:/dev/video11 `#optional` \ + --device /dev/video12:/dev/video12 `#optional` \ + --restart unless-stopped \ + ghcr.io/linuxserver/jellyfin +``` + +## 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. + +| Parameter | Function | +| :----: | --- | +| `-p 8096` | Http webUI. | +| `-p 8920` | Optional - Https webUI (you need to set up your own certificate). | +| `-p 7359/udp` | Optional - Allows clients to discover Jellyfin on the local network. | +| `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | +| `-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 (e.g. Europe/London). | +| `-e JELLYFIN_PublishedServerUrl=192.168.0.5` | Set the autodiscovery response domain or IP address. | +| `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | +| `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | +| `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | +| `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | +| `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | +| `--device /dev/vcsm` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | +| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding. | +| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | +| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | + +## Environment variables from files (Docker secrets) + +You can set any environment variable from a file by using a special prepend `FILE__`. + +As an example: + +```bash +-e FILE__PASSWORD=/run/secrets/mysecretpassword +``` + +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. + +## Optional Parameters + +The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. + +Service Discovery (`1900/udp`) - Since client auto-discover would break if this option were configurable, you cannot change this in the settings at this time. DLNA also uses this port and is required to be in the local subnet. + +Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local network. A broadcast message to this port with "Who is Jellyfin Server?" will get a JSON response that includes the server address, ID, and name. + +``` + -p 7359:7359/udp \ + -p 1900:1900/udp \ +``` + +The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. + +## 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`. + +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: + +```bash + $ id username + uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) +``` ## Docker Mods + [![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=jellyfin&query=%24.mods%5B%27jellyfin%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=jellyfin "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 jellyfin /bin/bash` @@ -274,6 +270,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 jellyfin` * Let compose update all containers as necessary: `docker-compose up -d` @@ -281,6 +278,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/jellyfin` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` @@ -288,24 +286,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 jellyfin ``` + * 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-jellyfin.git cd docker-jellyfin docker build \ @@ -315,7 +318,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 ``` @@ -323,6 +327,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **21.05.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **20.01.21:** - Add Jellyfin Binary Environmentals * **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **23.11.20:** - Rebase to Focal, branch off Bionic. diff --git a/readme-vars.yml b/readme-vars.yml index c963b44..174bc47 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -115,6 +115,7 @@ app_setup_block: | # changelog changelogs: + - { date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "20.01.21:", desc: "Add Jellyfin Binary Environmentals" } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } diff --git a/root/etc/OpenCL/vendors/nvidia.icd b/root/etc/OpenCL/vendors/nvidia.icd new file mode 100644 index 0000000..6b30d0c --- /dev/null +++ b/root/etc/OpenCL/vendors/nvidia.icd @@ -0,0 +1 @@ +libnvidia-opencl.so.1 \ No newline at end of file From 79fd10e150a240ae3e1a831c8f976b8a89e7c894 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Apr 2021 16:03:08 -0400 Subject: [PATCH 0609/2257] 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 0fde717..dfa895a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210421.10-unstable +jellyfin20210421.18-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210421.10-unstable +jellyfin-server20210421.18-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c831204939aab228a266aa1f20ae3c4da1d30d80 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Apr 2021 20:11:00 +0000 Subject: [PATCH 0610/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index af9e0b7..c6c568c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.1.2+i526~u20.04 +intel-media-va-driver-non-free21.1.3+i538~u20.04 jellyfin10.7.2-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.2-1 @@ -93,11 +93,11 @@ libharfbuzz0b2.6.4-1ubuntu4 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 -libigdgmm1120.4.1+i526~u20.04 +libigdgmm1121.1.1+i538~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -113,7 +113,7 @@ libmount12.34-0.1ubuntu9.1 libmp3lame03.100-3 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 libnuma12.0.12-1 @@ -129,7 +129,7 @@ libpcre2-8-010.34-7 libpcre32:8.39-12build1 libpixman-1-00.38.4-0ubuntu1 libpng16-161.6.37-2 -libprocps82:3.3.16-1ubuntu2 +libprocps82:3.3.16-1ubuntu2.1 libpsl50.21.0-1ubuntu1 libreadline88.0-4 libroken18-heimdal7.7.0+dfsg-1ubuntu1 @@ -137,7 +137,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 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.10.0+i526~u20.04 +libva22.11.0+i538~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 @@ -199,7 +199,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 3708ee649da179d76fa5600d6b54764fb3e200fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Apr 2021 15:03:15 +0000 Subject: [PATCH 0611/2257] 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 dfa895a..b694dc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210421.18-unstable +jellyfin20210422.13-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210421.18-unstable +jellyfin-server20210422.13-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9d5a0669d1039bd174969cd146dc343a29a19a5c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Apr 2021 22:08:29 +0000 Subject: [PATCH 0612/2257] 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 b694dc8..c7cabdd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210422.13-unstable +jellyfin20210422.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210422.13-unstable +jellyfin-server20210422.14-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5d71d1ffeb5d36e200c127efa74fa3dda303ef44 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 23 Apr 2021 05:09:14 -0400 Subject: [PATCH 0613/2257] 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 c7cabdd..b95d3ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210422.14-unstable +jellyfin20210423.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210422.14-unstable +jellyfin-server20210423.1-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3d2200fca9d94599d64fb5352a591cf254eb1371 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Apr 2021 06:28:14 -0400 Subject: [PATCH 0614/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c6c568c..de052b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.1.3+i538~u20.04 jellyfin10.7.2-1 -jellyfin-ffmpeg4.3.1-4-focal +jellyfin-ffmpeg4.3.2-1-focal jellyfin-server10.7.2-1 jellyfin-web10.7.2-1 krb5-locales1.17-6ubuntu4.1 From 3ad5bf2f872dbd5dad3de098c2b00f403756adb9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Apr 2021 16:06:25 +0100 Subject: [PATCH 0615/2257] 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 b95d3ea..5a9c44d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210423.1-unstable -jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210423.1-unstable +jellyfin20210424.3-unstable +jellyfin-ffmpeg4.3.2-1-focal +jellyfin-server20210424.3-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5a0a41d1c660716bc978b292d823ee23ccd1b267 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Apr 2021 18:08:49 -0400 Subject: [PATCH 0616/2257] 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 5a9c44d..d73577f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210424.3-unstable +jellyfin20210424.11-unstable jellyfin-ffmpeg4.3.2-1-focal jellyfin-server20210424.3-unstable -jellyfin-web20210419.1-unstable +jellyfin-web20210424.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From a5e096f5a5d6ed70a8346841792e7d7768122bf1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 25 Apr 2021 16:08:13 +0000 Subject: [PATCH 0617/2257] 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 d73577f..3a53d75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210424.11-unstable +jellyfin20210425.1-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210424.3-unstable +jellyfin-server20210425.1-unstable jellyfin-web20210424.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 69079069e65cd45e1332ac7e60f87052f3fbc21c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 25 Apr 2021 16:14:24 +0000 Subject: [PATCH 0618/2257] 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 3a53d75..93441d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210425.1-unstable +jellyfin20210425.3-unstable jellyfin-ffmpeg4.3.2-1-focal jellyfin-server20210425.1-unstable -jellyfin-web20210424.11-unstable +jellyfin-web20210425.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From c203a06b5224299161b6302895e60dc6f1ef4ea5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 25 Apr 2021 23:09:08 +0000 Subject: [PATCH 0619/2257] 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 93441d0..fec6e4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210425.3-unstable +jellyfin20210425.4-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210425.1-unstable -jellyfin-web20210425.3-unstable +jellyfin-server20210425.3-unstable +jellyfin-web20210425.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 8a380dba8fc5cf113283d884e7349913b90f6742 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 26 Apr 2021 16:08:17 +0100 Subject: [PATCH 0620/2257] 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 fec6e4e..2d895ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210425.4-unstable +jellyfin20210426.17-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210425.3-unstable -jellyfin-web20210425.4-unstable +jellyfin-server20210426.17-unstable +jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From b42d86e512ab3385aa9c8a86ee70b7fbba04b05b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 27 Apr 2021 00:11:02 +0100 Subject: [PATCH 0621/2257] 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 2d895ad..0696370 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210426.17-unstable +jellyfin20210426.60-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210426.17-unstable +jellyfin-server20210426.60-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4bf68b12c4a16a4618a9446bb6de04543f26eeb3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 27 Apr 2021 15:02:54 +0000 Subject: [PATCH 0622/2257] 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 0696370..623e230 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210426.60-unstable +jellyfin20210427.6-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210426.60-unstable +jellyfin-server20210427.6-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -105,8 +105,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 libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 @@ -186,7 +186,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.2 +locales2.31-0ubuntu9.3 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From 180a2430c680abfc50335f74f76f3404ae94f672 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Apr 2021 02:53:33 +0000 Subject: [PATCH 0623/2257] 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 de052b7..c1f04e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -104,8 +104,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 libllvm111:11.0.0-2~ubuntu20.04.1 liblz4-11.9.2-2 liblzma55.2.4-1ubuntu1 @@ -185,7 +185,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.2 +locales2.31-0ubuntu9.3 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From 3a8fb6c2fbf9f7fff733dea58dfda2d750a3bd27 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Apr 2021 13:27:19 +0000 Subject: [PATCH 0624/2257] 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 623e230..355b8b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210427.6-unstable +jellyfin20210429.4-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210427.6-unstable +jellyfin-server20210429.4-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d554bca87c0b69a4b38494b4f84de3239cd6b637 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Apr 2021 20:11:35 +0000 Subject: [PATCH 0625/2257] 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 355b8b2..15d9700 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210429.4-unstable +jellyfin20210429.7-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210429.4-unstable +jellyfin-server20210429.7-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4006f14f272caed94f7f1b0459061131ffb116e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Apr 2021 05:13:27 -0400 Subject: [PATCH 0626/2257] 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 15d9700..06b822c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210429.7-unstable +jellyfin20210430.2-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210429.7-unstable +jellyfin-server20210430.2-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2f4386ab7eb532aab469c080cb0d76ac5ec6a615 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Apr 2021 16:17:50 +0000 Subject: [PATCH 0627/2257] 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 06b822c..23712c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210430.2-unstable +jellyfin20210430.5-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210430.2-unstable +jellyfin-server20210430.5-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b2a791f4996ee17e76d1bebaf1404ffae2d46111 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Apr 2021 23:12:59 +0000 Subject: [PATCH 0628/2257] 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 23712c6..05dba31 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210430.5-unstable +jellyfin20210430.10-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210430.5-unstable +jellyfin-server20210430.10-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7e4a418424e739e64b77de2790ea62ee28adbeea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 May 2021 12:07:47 -0400 Subject: [PATCH 0629/2257] 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 05dba31..ba3fb2f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210430.10-unstable +jellyfin20210501.8-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210430.10-unstable +jellyfin-server20210501.8-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3cc880eb8e37ed6292eefa8c305b1203f52d3d13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 May 2021 23:06:26 +0000 Subject: [PATCH 0630/2257] 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 ba3fb2f..d379dec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210501.8-unstable +jellyfin20210501.20-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210501.8-unstable +jellyfin-server20210501.20-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 689692a000777e286f9b9f46cc3813536dde25c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 May 2021 10:13:16 +0000 Subject: [PATCH 0631/2257] 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 d379dec..69d166d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210501.20-unstable +jellyfin20210502.1-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210501.20-unstable +jellyfin-server20210502.1-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8bbc01c1db6239ab84a7e84c30ea8394430ad3f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 May 2021 18:40:04 +0100 Subject: [PATCH 0632/2257] 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 69d166d..10ccd6d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210502.1-unstable +jellyfin20210502.8-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210502.1-unstable +jellyfin-server20210502.8-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 444ae4b77797d1105c663fa675b424bf84700b38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 May 2021 00:06:31 +0000 Subject: [PATCH 0633/2257] 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 10ccd6d..60c50a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210502.8-unstable +jellyfin20210502.15-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210502.8-unstable +jellyfin-server20210502.15-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0093d7e57f9590bdcba0dc5a065dce33913ebfd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 May 2021 09:10:01 +0000 Subject: [PATCH 0634/2257] 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 60c50a5..514cb4c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210502.15-unstable +jellyfin20210503.2-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210502.15-unstable +jellyfin-server20210503.2-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b73288758af1a3a39b5713a81f291412c7ebb1d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 May 2021 16:09:23 +0000 Subject: [PATCH 0635/2257] 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 514cb4c..dd4d840 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210503.2-unstable +jellyfin20210503.12-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210503.2-unstable +jellyfin-server20210503.12-unstable jellyfin-web20210426.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 054be95b5bdd2ae149871b6d74407998e7ad5d72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 May 2021 05:22:34 +0000 Subject: [PATCH 0636/2257] 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 dd4d840..91a2e68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210503.12-unstable +jellyfin20210504.1-unstable jellyfin-ffmpeg4.3.2-1-focal jellyfin-server20210503.12-unstable -jellyfin-web20210426.2-unstable +jellyfin-web20210504.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From b49a8fd8214df0ad75ec6274604be0c6844397f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 May 2021 06:01:41 +0000 Subject: [PATCH 0637/2257] 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 91a2e68..d61d963 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210504.1-unstable +jellyfin20210504.27-unstable jellyfin-ffmpeg4.3.2-1-focal jellyfin-server20210503.12-unstable -jellyfin-web20210504.1-unstable +jellyfin-web20210504.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 @@ -186,7 +186,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.3 +locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From 2c1447a313a51f17724c7f7835bd66e0f08c5b49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 May 2021 19:05:29 -0400 Subject: [PATCH 0638/2257] 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 d61d963..8707d21 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210504.27-unstable +jellyfin20210504.69-unstable jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210503.12-unstable -jellyfin-web20210504.27-unstable +jellyfin-server20210504.14-unstable +jellyfin-web20210504.69-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From ede49b23395ac766f811e1466a452ea04579e1e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 May 2021 22:34:30 -0400 Subject: [PATCH 0639/2257] 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 c1f04e4..8021add 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.1.3+i538~u20.04 -jellyfin10.7.2-1 -jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server10.7.2-1 -jellyfin-web10.7.2-1 +jellyfin10.7.4-1 +jellyfin-ffmpeg4.3.1-4-focal +jellyfin-server10.7.4-1 +jellyfin-web10.7.4-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 @@ -185,7 +185,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.3 +locales2.31-0ubuntu9.2 login1:4.8.1-1ubuntu5.20.04 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From 1ad884e4093e867909388963638a5c4638644055 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 May 2021 22:52:42 -0400 Subject: [PATCH 0640/2257] 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 8021add..21dd9c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.1.3+i538~u20.04 -jellyfin10.7.4-1 +jellyfin10.7.5-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.4-1 -jellyfin-web10.7.4-1 +jellyfin-web10.7.5-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 2baa5d7e0d618dcb5125c0bc3ac43bb7f200e99b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 May 2021 04:21:35 +0100 Subject: [PATCH 0641/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 21dd9c5..edc8fc9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.1.3+i538~u20.04 jellyfin10.7.5-1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server10.7.4-1 +jellyfin-server10.7.5-1 jellyfin-web10.7.5-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1084d23adebc3db838b7263e04d9a726b2bbf0d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 May 2021 02:01:03 -0400 Subject: [PATCH 0642/2257] 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 8707d21..ac49a3a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210504.69-unstable -jellyfin-ffmpeg4.3.2-1-focal -jellyfin-server20210504.14-unstable -jellyfin-web20210504.69-unstable +jellyfin20210505.18-unstable +jellyfin-ffmpeg4.3.1-4-focal +jellyfin-server20210505.18-unstable +jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From f8b7c21e949b106b45a73de27e2dd607d1737b42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 May 2021 14:24:49 +0100 Subject: [PATCH 0643/2257] 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 ac49a3a..b6231f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210505.18-unstable +jellyfin20210505.27-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210505.18-unstable +jellyfin-server20210505.27-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b35af23547e573d060766a84a28df45c75c3d2ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 May 2021 21:04:36 +0100 Subject: [PATCH 0644/2257] 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 b6231f7..5cb4df6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210505.27-unstable +jellyfin20210505.37-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210505.27-unstable +jellyfin-server20210505.37-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c186ec318bd3133316d82aa99a38b9e7f54322e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 6 May 2021 16:42:30 +0100 Subject: [PATCH 0645/2257] 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 5cb4df6..55dac68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210505.37-unstable +jellyfin20210506.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210505.37-unstable +jellyfin-server20210506.3-unstable jellyfin-web20210419.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 90c7c0c368e7e1c30b67d65de3b1af27588c2b42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 6 May 2021 18:09:27 -0400 Subject: [PATCH 0646/2257] 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 55dac68..389f20b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210506.3-unstable +jellyfin20210506.22-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210506.3-unstable -jellyfin-web20210419.1-unstable +jellyfin-server20210506.22-unstable +jellyfin-web20210506.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 787de2895e44363cf6c5cde21bba53b8dfdd4f55 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 May 2021 03:11:31 -0400 Subject: [PATCH 0647/2257] 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 389f20b..092cfd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210506.22-unstable +jellyfin20210507.3-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210506.22-unstable -jellyfin-web20210506.1-unstable +jellyfin-web20210507.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From bee04f52baac5b08999bec9e67e88f509772468d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 May 2021 14:02:59 +0000 Subject: [PATCH 0648/2257] 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 092cfd4..fc6e013 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210507.3-unstable +jellyfin20210507.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210506.22-unstable +jellyfin-server20210507.10-unstable jellyfin-web20210507.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3fa580493d6a26de8b3d7c17b79484710ebc9651 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 May 2021 20:59:46 +0000 Subject: [PATCH 0649/2257] 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 fc6e013..2ea041d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210507.10-unstable +jellyfin20210507.23-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210507.10-unstable +jellyfin-server20210507.23-unstable jellyfin-web20210507.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 027656d348c3c921c4a661b258cfa3826cd081af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 May 2021 16:08:43 +0000 Subject: [PATCH 0650/2257] 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 2ea041d..df2d011 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210507.23-unstable +jellyfin20210510.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210507.23-unstable +jellyfin-server20210510.7-unstable jellyfin-web20210507.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 382b97c17ff0705b88b61f4f64f13c9e381de2ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 May 2021 23:05:39 +0000 Subject: [PATCH 0651/2257] 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 df2d011..d690b6d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210510.7-unstable +jellyfin20210510.11-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210510.7-unstable -jellyfin-web20210507.3-unstable +jellyfin-server20210510.11-unstable +jellyfin-web20210510.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 5e4f84290811adb4f5d1b27ebcdd981079fe50ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 11 May 2021 14:21:27 +0100 Subject: [PATCH 0652/2257] 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 d690b6d..95285af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210510.11-unstable +jellyfin20210511.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210510.11-unstable +jellyfin-server20210511.4-unstable jellyfin-web20210510.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2db5d6eb7a2022a11604dbf5d9272ed3f4bca8e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 11 May 2021 20:09:23 +0000 Subject: [PATCH 0653/2257] 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 95285af..ee5a588 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210511.4-unstable +jellyfin20210511.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210511.4-unstable -jellyfin-web20210510.6-unstable +jellyfin-server20210511.5-unstable +jellyfin-web20210511.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From e7db51e94030f5246ce2f2868c8869676a02ff1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 13 May 2021 03:59:56 +0100 Subject: [PATCH 0654/2257] 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 edc8fc9..4f087cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.1.3+i538~u20.04 +intel-media-va-driver-non-free21.2.0+i547~u20.04 jellyfin10.7.5-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.5-1 @@ -64,12 +64,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.104+i526~u20.04 -libdrm-amdgpu12.4.104+i526~u20.04 -libdrm-common2.4.104+i526~u20.04 -libdrm-intel12.4.104+i526~u20.04 -libdrm-nouveau22.4.104+i526~u20.04 -libdrm-radeon12.4.104+i526~u20.04 +libdrm22.4.105-1022 +libdrm-amdgpu12.4.105-1022 +libdrm-common2.4.105-1022 +libdrm-intel12.4.105-1022 +libdrm-nouveau22.4.105-1022 +libdrm-radeon12.4.105-1022 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -97,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.1 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.1.1+i538~u20.04 +libigdgmm1121.1.2+i547~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.11.0+i538~u20.04 +libva22.11.0+i547~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From 3db9a52c03e11645e0103a97caf2977f6e97cc2c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 May 2021 16:01:14 +0100 Subject: [PATCH 0655/2257] 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 ee5a588..0de7aef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210511.5-unstable +jellyfin20210515.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210511.5-unstable -jellyfin-web20210511.1-unstable +jellyfin-web20210515.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 871eeca123b3ce5711f7ad43800a5d54a6639035 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 May 2021 22:08:00 +0000 Subject: [PATCH 0656/2257] 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 0de7aef..3de2b32 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210515.2-unstable +jellyfin20210515.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210511.5-unstable +jellyfin-server20210515.8-unstable jellyfin-web20210515.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b121d1704b790166dfe22b32704eb0bcf9732fc6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 May 2021 11:41:20 +0000 Subject: [PATCH 0657/2257] 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 3de2b32..764081e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210515.8-unstable +jellyfin20210516.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210515.8-unstable +jellyfin-server20210516.4-unstable jellyfin-web20210515.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8effbc4c65c8c15f7109fb4697ab238204690afa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 May 2021 19:13:21 +0000 Subject: [PATCH 0658/2257] 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 764081e..2c76965 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210516.4-unstable +jellyfin20210516.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210516.4-unstable +jellyfin-server20210516.7-unstable jellyfin-web20210515.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4866249ac27fc83599c549403e804d4bca4266e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 May 2021 19:26:26 +0000 Subject: [PATCH 0659/2257] 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 2c76965..19c6c44 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210516.7-unstable +jellyfin20210516.15-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210516.7-unstable +jellyfin-server20210516.15-unstable jellyfin-web20210515.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f1bfe6df3675eb281776e2117bb23f23323aa6a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 17 May 2021 17:40:31 +0000 Subject: [PATCH 0660/2257] 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 19c6c44..566ac69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210516.15-unstable +jellyfin20210517.21-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210516.15-unstable -jellyfin-web20210515.2-unstable +jellyfin-server20210517.21-unstable +jellyfin-web20210517.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 650f1247c36f9932ffb0f2bd4b1cad9688a1dcf4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 May 2021 00:09:18 +0000 Subject: [PATCH 0661/2257] 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 566ac69..8038fdc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210517.21-unstable +jellyfin20210517.22-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210517.21-unstable +jellyfin-server20210517.22-unstable jellyfin-web20210517.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 269ddb85c1a202f62213215f90213fb29801ebf2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 May 2021 08:14:18 +0100 Subject: [PATCH 0662/2257] 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 8038fdc..83df9df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210517.22-unstable +jellyfin20210518.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210517.22-unstable +jellyfin-server20210518.4-unstable jellyfin-web20210517.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 58dcf7c40a1ce2437f040ae57a5a73cf021a7be0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 May 2021 14:25:27 +0100 Subject: [PATCH 0663/2257] 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 83df9df..9e44f6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210518.4-unstable +jellyfin20210518.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210518.4-unstable +jellyfin-server20210518.10-unstable jellyfin-web20210517.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f21fb53f11a3a77a8cd0f29f51a30eb5344ac90e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 May 2021 20:02:59 +0000 Subject: [PATCH 0664/2257] 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 9e44f6c..c4213b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210518.10-unstable +jellyfin20210518.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210518.10-unstable -jellyfin-web20210517.1-unstable +jellyfin-server20210518.14-unstable +jellyfin-web20210518.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 72f15400ce1c94b6324e8b9fabe8da23890af8de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 May 2021 22:06:55 +0100 Subject: [PATCH 0665/2257] 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 c4213b2..f9ce704 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210518.14-unstable +jellyfin20210519.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210518.14-unstable -jellyfin-web20210518.2-unstable +jellyfin-server20210519.8-unstable +jellyfin-web20210518.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 @@ -147,7 +147,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 From 7dc47cf5d4d1aa663f9362139643d87dddfbd200 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 May 2021 03:06:43 +0000 Subject: [PATCH 0666/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f087cf..240b040 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -146,7 +146,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 From adb332188cf88fe651863f5f1c60d0ca66594a63 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 May 2021 21:03:39 +0000 Subject: [PATCH 0667/2257] 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 f9ce704..43e6e1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210519.8-unstable +jellyfin20210520.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210519.8-unstable +jellyfin-server20210520.4-unstable jellyfin-web20210518.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b7c0e9fde4d7cb95a6d281602a150f307b20df4a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 May 2021 04:27:38 +0100 Subject: [PATCH 0668/2257] 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 43e6e1e..b0e9358 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210520.4-unstable +jellyfin20210520.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210520.4-unstable +jellyfin-server20210520.10-unstable jellyfin-web20210518.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 30e9b807e23f3d721798de07941bcddf953501b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 May 2021 10:20:18 +0000 Subject: [PATCH 0669/2257] 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 b0e9358..9c627a2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210520.10-unstable +jellyfin20210521.5-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210520.10-unstable -jellyfin-web20210518.5-unstable +jellyfin-web20210521.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 646606d6f85f309e94c6287c5dc93f07e58659e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 May 2021 18:47:50 +0100 Subject: [PATCH 0670/2257] 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 9c627a2..d82d1dd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210521.5-unstable +jellyfin20210521.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210520.10-unstable -jellyfin-web20210521.5-unstable +jellyfin-server20210521.5-unstable +jellyfin-web20210521.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From d17afcd7f87d68831303e858adce6b8598f77d28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 May 2021 20:11:58 -0400 Subject: [PATCH 0671/2257] 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 d82d1dd..356bd8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210521.6-unstable +jellyfin20210521.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210521.5-unstable -jellyfin-web20210521.6-unstable +jellyfin-server20210521.7-unstable +jellyfin-web20210521.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 9cc991603efb33e78748e21c42ad7106386e0ab2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 23 May 2021 06:24:45 +0100 Subject: [PATCH 0672/2257] 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 356bd8c..53f99ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210521.8-unstable +jellyfin20210523.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210521.7-unstable -jellyfin-web20210521.8-unstable +jellyfin-web20210523.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From df902b2458f2dae90369c709b2acc5331dd0116e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 24 May 2021 07:25:37 +0000 Subject: [PATCH 0673/2257] 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 53f99ed..c0cfbd3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210523.1-unstable +jellyfin20210524.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210521.7-unstable +jellyfin-server20210524.4-unstable jellyfin-web20210523.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 81bc14a35f95833a44009b762d21b78e41b8d8f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 24 May 2021 14:13:16 +0000 Subject: [PATCH 0674/2257] 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 c0cfbd3..3af0270 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210524.4-unstable +jellyfin20210524.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210524.4-unstable +jellyfin-server20210524.6-unstable jellyfin-web20210523.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b06cc4a1588d1eebd4bb4c0b1d0a397bc068e181 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 24 May 2021 21:08:56 +0000 Subject: [PATCH 0675/2257] 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 3af0270..01668b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210524.6-unstable +jellyfin20210524.11-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210524.6-unstable +jellyfin-server20210524.11-unstable jellyfin-web20210523.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From fec2291daaae702c02274634e98a27ebd5034ebb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 May 2021 16:29:16 +0000 Subject: [PATCH 0676/2257] 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 01668b4..8171a38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210524.11-unstable +jellyfin20210526.3-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210524.11-unstable -jellyfin-web20210523.1-unstable +jellyfin-web20210526.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 @@ -164,9 +164,9 @@ libvpx61.8.2-1build1 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.7.0+dfsg-1ubuntu1 -libx11-62:1.6.9-2ubuntu1.1 -libx11-data2:1.6.9-2ubuntu1.1 -libx11-xcb12:1.6.9-2ubuntu1.1 +libx11-62:1.6.9-2ubuntu1.2 +libx11-data2:1.6.9-2ubuntu1.2 +libx11-xcb12:1.6.9-2ubuntu1.2 libx264-1552:0.155.2917+git0a84d98-2 libx265-1793.2.1-1build1 libxau61:1.0.9-0ubuntu1 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 3779b856b4699b140fcc0d4a961800a323c908a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 May 2021 23:15:01 +0000 Subject: [PATCH 0677/2257] 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 8171a38..e795c89 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210526.3-unstable +jellyfin20210526.9-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210524.11-unstable -jellyfin-web20210526.3-unstable +jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 205f5a3fa0aa38f70879182050f2cb204b489480 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 May 2021 03:59:46 +0000 Subject: [PATCH 0678/2257] 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 240b040..7f458f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.2.0+i547~u20.04 +intel-media-va-driver-non-free21.2.0+i557~u20.04 jellyfin10.7.5-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.5-1 @@ -97,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.1 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.1.2+i547~u20.04 +libigdgmm1121.1.2+i557~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.11.0+i547~u20.04 +libva22.11.0+i557~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 @@ -163,9 +163,9 @@ libvpx61.8.2-1build1 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.7.0+dfsg-1ubuntu1 -libx11-62:1.6.9-2ubuntu1.1 -libx11-data2:1.6.9-2ubuntu1.1 -libx11-xcb12:1.6.9-2ubuntu1.1 +libx11-62:1.6.9-2ubuntu1.2 +libx11-data2:1.6.9-2ubuntu1.2 +libx11-xcb12:1.6.9-2ubuntu1.2 libx264-1552:0.155.2917+git0a84d98-2 libx265-1793.2.1-1build1 libxau61:1.0.9-0ubuntu1 @@ -195,7 +195,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 62d88e2273456040204e38b5c08800445589c666 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 May 2021 11:33:27 +0100 Subject: [PATCH 0679/2257] 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 e795c89..4a0f8ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210526.9-unstable +jellyfin20210527.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210524.11-unstable +jellyfin-server20210527.8-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From bed19befcdf6db73337c0b3493f16e1270e83d67 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 May 2021 14:25:53 -0400 Subject: [PATCH 0680/2257] 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 4a0f8ab..baaa858 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210527.8-unstable +jellyfin20210527.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210527.8-unstable +jellyfin-server20210527.14-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 53ba7179386374f3783aa63ef027d03325aa449a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 30 May 2021 09:59:15 +0000 Subject: [PATCH 0681/2257] 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 baaa858..4cea10a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210527.14-unstable +jellyfin20210530.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210527.14-unstable +jellyfin-server20210530.1-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e19427893161fcdaa3e505cf64fecef8542237c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 30 May 2021 18:43:38 +0000 Subject: [PATCH 0682/2257] 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 4cea10a..be479d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210530.1-unstable +jellyfin20210530.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210530.1-unstable +jellyfin-server20210530.3-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d2cb24360e65488678edf8fdf05c8f98ba22d3c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 31 May 2021 04:11:44 +0000 Subject: [PATCH 0683/2257] 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 be479d0..77d53e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210530.3-unstable +jellyfin20210530.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210530.3-unstable +jellyfin-server20210530.5-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 50eff51902506128b69f009461561b30e4f8eb05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Jun 2021 18:14:34 -0400 Subject: [PATCH 0684/2257] 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 77d53e4..870d4da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210530.5-unstable +jellyfin20210601.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210530.5-unstable +jellyfin-server20210601.1-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -161,8 +161,8 @@ libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 libvpx61.8.2-1build1 -libwebp60.6.1-2 -libwebpmux30.6.1-2 +libwebp60.6.1-2ubuntu0.20.04.1 +libwebpmux30.6.1-2ubuntu0.20.04.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libx11-62:1.6.9-2ubuntu1.2 libx11-data2:1.6.9-2ubuntu1.2 From 190b77349c48d653f760272b0d1f17a003378aa7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Jun 2021 04:09:38 +0000 Subject: [PATCH 0685/2257] 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 870d4da..81b8466 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210601.1-unstable +jellyfin20210603.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210601.1-unstable +jellyfin-server20210603.1-unstable jellyfin-web20210526.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 007f37407d532afacd7695d75e8e0fe942e7a8e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Jun 2021 05:02:00 +0000 Subject: [PATCH 0686/2257] 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 7f458f0..5a6ee55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -160,8 +160,8 @@ libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 libvpx61.8.2-1build1 -libwebp60.6.1-2 -libwebpmux30.6.1-2 +libwebp60.6.1-2ubuntu0.20.04.1 +libwebpmux30.6.1-2ubuntu0.20.04.1 libwind0-heimdal7.7.0+dfsg-1ubuntu1 libx11-62:1.6.9-2ubuntu1.2 libx11-data2:1.6.9-2ubuntu1.2 From 17833d1834e56741878a8f7d400ee228890fd8e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Jun 2021 11:23:55 -0400 Subject: [PATCH 0687/2257] 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 81b8466..0e36811 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210603.1-unstable +jellyfin20210603.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210603.1-unstable -jellyfin-web20210526.9-unstable +jellyfin-web20210603.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 4ff8f4c8afe928bf8eeb7da923672c69d047f6d1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Jun 2021 14:30:11 +0000 Subject: [PATCH 0688/2257] 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 0e36811..4fa0ba4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210603.2-unstable +jellyfin20210604.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210603.1-unstable +jellyfin-server20210604.2-unstable jellyfin-web20210603.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6da8435749e27b3bb371d1d8a46437b058ce6c51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Jun 2021 12:28:21 -0400 Subject: [PATCH 0689/2257] 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 4fa0ba4..c5182a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210604.2-unstable +jellyfin20210606.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210604.2-unstable +jellyfin-server20210606.1-unstable jellyfin-web20210603.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5331c2bbaf26d78cfadcb70be50301088c01b3cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Jun 2021 09:16:10 +0000 Subject: [PATCH 0690/2257] 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 c5182a3..a242044 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210606.1-unstable +jellyfin20210607.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210606.1-unstable -jellyfin-web20210603.2-unstable +jellyfin-server20210607.2-unstable +jellyfin-web20210606.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 061ffa84805aa7c5c6de91c830d6c7b220f02f95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Jun 2021 11:26:50 -0400 Subject: [PATCH 0691/2257] 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 a242044..e8b2e3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210607.2-unstable +jellyfin20210607.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210607.2-unstable +jellyfin-server20210607.14-unstable jellyfin-web20210606.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 52d5d884eab146ff852ce26e2ca18c38a0d22316 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Jun 2021 22:33:53 +0000 Subject: [PATCH 0692/2257] 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 e8b2e3f..7147c0f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210607.14-unstable +jellyfin20210607.30-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210607.14-unstable +jellyfin-server20210607.30-unstable jellyfin-web20210606.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From deab9a6d589d884317a631870e84e550406353c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Jun 2021 15:07:38 +0000 Subject: [PATCH 0693/2257] 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 7147c0f..cfe1c79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210607.30-unstable +jellyfin20210608.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210607.30-unstable +jellyfin-server20210608.2-unstable jellyfin-web20210606.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -108,7 +108,7 @@ libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.8 libldap-common2.4.49+dfsg-2ubuntu1.8 libllvm111:11.0.0-2~ubuntu20.04.1 -liblz4-11.9.2-2 +liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 libmp3lame03.100-3 @@ -121,10 +121,10 @@ libnuma12.0.12-1 libogg01.3.4-0ubuntu1 libopus01.3.1-0ubuntu1 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 libpciaccess00.16-0ubuntu1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 From 6b87cfc2ea280eb5d82d89ed98e9e517643145bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Jun 2021 09:07:33 +0000 Subject: [PATCH 0694/2257] 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 cfe1c79..fb1246f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210608.2-unstable +jellyfin20210609.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210608.2-unstable +jellyfin-server20210609.3-unstable jellyfin-web20210606.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 679a7bd8cd8867ec772d14612a2f94ac6897c762 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Jun 2021 16:22:22 +0000 Subject: [PATCH 0695/2257] 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 fb1246f..76da5bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210609.3-unstable +jellyfin20210609.6-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210609.3-unstable -jellyfin-web20210606.1-unstable +jellyfin-web20210609.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From e9a00d30bf3998aea8e3b7c5bff64fcc60b933f0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Jun 2021 02:57:08 +0000 Subject: [PATCH 0696/2257] 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 5a6ee55..dacd49a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -107,7 +107,7 @@ libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.8 libldap-common2.4.49+dfsg-2ubuntu1.8 libllvm111:11.0.0-2~ubuntu20.04.1 -liblz4-11.9.2-2 +liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 libmp3lame03.100-3 @@ -120,10 +120,10 @@ libnuma12.0.12-1 libogg01.3.4-0ubuntu1 libopus01.3.1-0ubuntu1 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 libpciaccess00.16-0ubuntu1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 From ab526a333a0bd5ef2415159a9484206fb72f65e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Jun 2021 12:15:03 -0400 Subject: [PATCH 0697/2257] 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 76da5bf..25fcb2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210609.6-unstable +jellyfin20210610.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210609.3-unstable -jellyfin-web20210609.6-unstable +jellyfin-web20210610.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 605fb5aee37c4049aa1042a4f5906b0512b130f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Jun 2021 23:02:36 +0000 Subject: [PATCH 0698/2257] 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 25fcb2b..c232d91 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210610.2-unstable +jellyfin20210610.5-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210609.3-unstable -jellyfin-web20210610.2-unstable +jellyfin-web20210610.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From baab2452e3c0037843aa83e51a764c2544167f18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Jun 2021 01:20:41 -0400 Subject: [PATCH 0699/2257] 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 c232d91..ce083c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210610.5-unstable +jellyfin20210611.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210609.3-unstable -jellyfin-web20210610.5-unstable +jellyfin-web20210611.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From aa24a6bbe599e7ecd445eb847a76d7879acc26d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Jun 2021 12:01:52 +0000 Subject: [PATCH 0700/2257] 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 ce083c3..fd71cdd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210611.2-unstable +jellyfin20210611.41-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210609.3-unstable -jellyfin-web20210611.2-unstable +jellyfin-server20210610.2-unstable +jellyfin-web20210611.41-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From e01c7a872736a3fedefccf1b84d2ba1f96a423a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Jun 2021 14:08:33 -0400 Subject: [PATCH 0701/2257] 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 fd71cdd..5d3a700 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210611.41-unstable +jellyfin20210611.97-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210610.2-unstable -jellyfin-web20210611.41-unstable +jellyfin-web20210611.97-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 44553d2d53278be1013f51c80a1c4c2d266220db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Jun 2021 07:21:17 +0000 Subject: [PATCH 0702/2257] 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 5d3a700..38c02bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210611.97-unstable +jellyfin20210612.22-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210610.2-unstable -jellyfin-web20210611.97-unstable +jellyfin-server20210611.8-unstable +jellyfin-web20210612.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 610b25d22816aa9968d6ed00edc0671b26ced0c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Jun 2021 07:22:20 +0000 Subject: [PATCH 0703/2257] 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 38c02bc..e23f6db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210612.22-unstable +jellyfin20210613.22-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210611.8-unstable -jellyfin-web20210612.22-unstable +jellyfin-server20210612.5-unstable +jellyfin-web20210613.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From aa63a9d61c8f981e02b662e0a8766734be95baf6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Jun 2021 16:11:11 +0000 Subject: [PATCH 0704/2257] 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 e23f6db..32db2ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210613.22-unstable +jellyfin20210613.23-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210612.5-unstable -jellyfin-web20210613.22-unstable +jellyfin-server20210613.2-unstable +jellyfin-web20210613.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 1bde768bff049884de4e7a62399d4451b00f5dd2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Jun 2021 18:09:37 +0000 Subject: [PATCH 0705/2257] 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 32db2ba..1e61de5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210613.23-unstable +jellyfin20210614.13-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210613.2-unstable +jellyfin-server20210614.13-unstable jellyfin-web20210613.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9a50e37a35c1c6e83d60eaef6b3a2a129cf8282c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Jun 2021 22:02:22 -0400 Subject: [PATCH 0706/2257] 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 1e61de5..a28da6f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210614.13-unstable +jellyfin20210614.20-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210614.13-unstable -jellyfin-web20210613.23-unstable +jellyfin-web20210614.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 03599a1b805b81b2e6410729d31c83e1a32cbef8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Jun 2021 09:03:20 +0000 Subject: [PATCH 0707/2257] 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 a28da6f..7103f74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210614.20-unstable +jellyfin20210615.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210614.13-unstable -jellyfin-web20210614.20-unstable +jellyfin-web20210615.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From bbfd9aeca2af00dd7e23784a3ac4189d525e72e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Jun 2021 16:11:07 +0000 Subject: [PATCH 0708/2257] 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 7103f74..7601672 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210615.1-unstable +jellyfin20210615.17-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210614.13-unstable -jellyfin-web20210615.1-unstable +jellyfin-web20210615.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 740a434cc56098ac29f82b4b3fb8ecf48504da4a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Jun 2021 04:10:02 +0100 Subject: [PATCH 0709/2257] 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 7601672..eb2a0fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210615.17-unstable +jellyfin20210616.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210614.13-unstable -jellyfin-web20210615.17-unstable +jellyfin-web20210616.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 58b5a9d679eb6a7aa55aaac64b1de3f9ae512210 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Jun 2021 02:49:39 +0000 Subject: [PATCH 0710/2257] 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 dacd49a..5f533ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.2.0+i557~u20.04 +intel-media-va-driver-non-free21.2.1+i571~u20.04 jellyfin10.7.5-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.5-1 @@ -64,12 +64,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.105-1022 -libdrm-amdgpu12.4.105-1022 -libdrm-common2.4.105-1022 -libdrm-intel12.4.105-1022 -libdrm-nouveau22.4.105-1022 -libdrm-radeon12.4.105-1022 +libdrm22.4.106-1025 +libdrm-amdgpu12.4.106-1025 +libdrm-common2.4.106-1025 +libdrm-intel12.4.106-1025 +libdrm-nouveau22.4.106-1025 +libdrm-radeon12.4.106-1025 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -97,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.1 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.1.2+i557~u20.04 +libigdgmm1121.1.3+i571~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.6 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.11.0+i557~u20.04 +libva22.11.0+i571~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From 99b6efd14c7414b249116a9da978fcd818543ca3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Jun 2021 02:04:19 +0000 Subject: [PATCH 0711/2257] 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 5f533ab..6ec6021 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.2.1+i571~u20.04 -jellyfin10.7.5-1 +jellyfin10.7.6-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.5-1 -jellyfin-web10.7.5-1 +jellyfin-web10.7.6-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 @@ -179,7 +179,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5 +libxml22.9.10+dfsg-5ubuntu0.20.04.1 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From 6822b832ee980f28f0c3241cd85adc48a7afdbea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Jun 2021 11:02:21 +0000 Subject: [PATCH 0712/2257] 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 eb2a0fd..8a217b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210616.1-unstable +jellyfin20210618.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210614.13-unstable +jellyfin-server20210618.2-unstable jellyfin-web20210616.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -180,7 +180,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5 +libxml22.9.10+dfsg-5ubuntu0.20.04.1 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From f89d662842da5bda6fd5c794e9ba0b19b111e86b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Jun 2021 17:27:06 +0000 Subject: [PATCH 0713/2257] 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 8a217b7..618bf84 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210618.2-unstable +jellyfin20210618.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210618.2-unstable +jellyfin-server20210618.3-unstable jellyfin-web20210616.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7dbe4f9b75533a1354d72f02713eb2894e44a08a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Jun 2021 00:03:11 +0000 Subject: [PATCH 0714/2257] 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 618bf84..3c958df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210618.3-unstable +jellyfin20210618.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210618.3-unstable +jellyfin-server20210618.8-unstable jellyfin-web20210616.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 64823e09470a02d466f6226ee49cbb22df21bc83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Jun 2021 07:14:09 +0000 Subject: [PATCH 0715/2257] 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 3c958df..7f48a8e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210618.8-unstable +jellyfin20210621.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210618.8-unstable +jellyfin-server20210621.1-unstable jellyfin-web20210616.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a419951c631fa6a3ed70752f2f816bd725b15d5e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Jun 2021 18:24:55 -0400 Subject: [PATCH 0716/2257] 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 7f48a8e..f5e7042 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210621.1-unstable +jellyfin20210621.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210621.1-unstable -jellyfin-web20210616.1-unstable +jellyfin-server20210621.4-unstable +jellyfin-web20210621.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 1c8b8e873a0af8e403810c9eed48c54a5a218c16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Jun 2021 06:04:02 +0000 Subject: [PATCH 0717/2257] 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 f5e7042..5fa7e0f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210621.4-unstable +jellyfin20210622.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210621.4-unstable +jellyfin-server20210622.1-unstable jellyfin-web20210621.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 48e6dad122558ba5b4eed8a12cfbcb93bf104778 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Jun 2021 09:20:48 -0400 Subject: [PATCH 0718/2257] 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 5fa7e0f..5504401 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210622.1-unstable +jellyfin20210622.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210622.1-unstable +jellyfin-server20210622.5-unstable jellyfin-web20210621.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 36f190bd08ddbf86ea313d3d1893c4f0e8a37be3 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 23 Jun 2021 10:56:31 -0400 Subject: [PATCH 0719/2257] pin dep versions, log message about device perms --- Dockerfile | 56 ++++++++++++++--------------- Dockerfile.aarch64 | 58 +++++++++++++++---------------- Dockerfile.armhf | 58 +++++++++++++++---------------- README.md | 1 + readme-vars.yml | 1 + root/etc/cont-init.d/30-config | 18 +++++----- root/etc/cont-init.d/40-gid-video | 29 +++++++++------- root/etc/services.d/jellyfin/run | 19 +++++----- 8 files changed, 123 insertions(+), 117 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3ef8e3c..949a449 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,34 +12,34 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ - else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - intel-media-va-driver-non-free \ - ${JELLYFIN} \ - libfontconfig1 \ - libfreetype6 \ - libssl1.1 \ - mesa-va-drivers && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ + echo "**** install jellyfin *****" && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ + echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + fi && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + at \ + intel-media-va-driver-non-free \ + ${JELLYFIN} \ + libfontconfig1 \ + libfreetype6 \ + libssl1.1 \ + mesa-va-drivers && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 802ba4e..bb3d6e5 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -12,35 +12,35 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ - else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - ${JELLYFIN} \ - libfontconfig1 \ - libfreetype6 \ - libomxil-bellagio0 \ - libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl1.1 && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ + echo "**** install jellyfin *****" && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + fi && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + at \ + ${JELLYFIN} \ + libfontconfig1 \ + libfreetype6 \ + libomxil-bellagio0 \ + libomxil-bellagio-bin \ + libraspberrypi0 \ + libssl1.1 && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4cb899e..76d2770 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -12,35 +12,35 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ - else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - ${JELLYFIN} \ - libfontconfig1 \ - libfreetype6 \ - libomxil-bellagio0 \ - libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl1.1 && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ + echo "**** install jellyfin *****" && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + fi && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + at \ + ${JELLYFIN} \ + libfontconfig1 \ + libfreetype6 \ + libomxil-bellagio0 \ + libomxil-bellagio-bin \ + libraspberrypi0 \ + libssl1.1 && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY root/ / diff --git a/README.md b/README.md index 4e80096..3d2ec93 100644 --- a/README.md +++ b/README.md @@ -327,6 +327,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **23.06.21:** - Add log message if device permissions are incorrect, pin jellyfin dependency versions to prevent upstream apt repo issues. * **21.05.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **20.01.21:** - Add Jellyfin Binary Environmentals * **20.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 174bc47..b759b3c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -115,6 +115,7 @@ app_setup_block: | # changelog changelogs: + - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect, pin jellyfin dependency versions to prevent upstream apt repo issues." } - { date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "20.01.21:", desc: "Add Jellyfin Binary Environmentals" } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index a272525..ff0be50 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -2,18 +2,18 @@ # create directories mkdir -p \ - /config/{log,data/transcodes,cache} \ - /data \ - /transcode + /config/{log,data/transcodes,cache} \ + /data \ + /transcode # permissions chown abc:abc \ - /config \ - /config/* \ - /data \ - /config/data/transcodes \ - /transcode + /config \ + /config/* \ + /data \ + /config/data/transcodes \ + /transcode if [ -n "$(ls -A /data 2>/dev/null)" ]; then chown abc:abc \ - /data/* + /data/* fi diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index e4512de..5210ccc 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -4,21 +4,24 @@ FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -prin for i in $FILES do - VIDEO_GID=$(stat -c '%g' "$i") - if ! id -G abc | grep -qw "$VIDEO_GID"; then - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [ -z "${VIDEO_NAME}" ]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" - groupadd "$VIDEO_NAME" - groupmod -g "$VIDEO_GID" "$VIDEO_NAME" - fi - usermod -a -G "$VIDEO_NAME" abc - fi + VIDEO_GID=$(stat -c '%g' "$i") + if ! id -G abc | grep -qw "$VIDEO_GID"; then + VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') + if [ -z "${VIDEO_NAME}" ]; then + VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" + groupadd "$VIDEO_NAME" + groupmod -g "$VIDEO_GID" "$VIDEO_NAME" + fi + usermod -a -G "$VIDEO_NAME" abc + if [ $(stat -c '%A' "${i}" | cut -b 8,9) != "rw" ]; then + echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n" + fi + fi done # openmax lib loading if [ -e "/opt/vc/lib" ] && [ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]; then - echo "[jellyfin-init] Pi Libs detected loading" - echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" - ldconfig + echo "[jellyfin-init] Pi Libs detected loading" + echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" + ldconfig fi diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run index 21632b0..792ef0c 100644 --- a/root/etc/services.d/jellyfin/run +++ b/root/etc/services.d/jellyfin/run @@ -1,16 +1,17 @@ #!/usr/bin/with-contenv bash -export JELLYFIN_DATA_DIR="/config/data" \ -JELLYFIN_CONFIG_DIR="/config" \ -JELLYFIN_LOG_DIR="/config/log" \ -JELLYFIN_CACHE_DIR="/config/cache" +export \ + JELLYFIN_DATA_DIR="/config/data" \ + JELLYFIN_CONFIG_DIR="/config" \ + JELLYFIN_LOG_DIR="/config/log" \ + JELLYFIN_CACHE_DIR="/config/cache" 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 /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg \ - --webdir=/usr/share/jellyfin/web + s6-setuidgid abc /usr/bin/jellyfin \ + --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg \ + --webdir=/usr/share/jellyfin/web From 6789facbb81b8b0611feec1123e1560fd3712d75 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 23 Jun 2021 11:48:34 -0400 Subject: [PATCH 0720/2257] add bionic deprecation notice --- README.md | 4 ++-- readme-vars.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3d2ec93..6d2e5d1 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Jellyfin releases - Focal baseimage | -| bionic | Stable Jellyfin releases - Bionic baseimage | +| bionic | DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage | | nightly | Nightly Jellyfin releases | ## Application Setup @@ -327,7 +327,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **23.06.21:** - Add log message if device permissions are incorrect, pin jellyfin dependency versions to prevent upstream apt repo issues. +* **23.06.21:** - Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag. * **21.05.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **20.01.21:** - Add Jellyfin Binary Environmentals * **20.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 b759b3c..e5c411f 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -17,7 +17,7 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } - - { tag: "bionic", desc: "Stable Jellyfin releases - Bionic baseimage" } + - { tag: "bionic", desc: "DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage" } - { tag: "nightly", desc: "Nightly Jellyfin releases" } # container parameters @@ -115,7 +115,7 @@ app_setup_block: | # changelog changelogs: - - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect, pin jellyfin dependency versions to prevent upstream apt repo issues." } + - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } - { date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "20.01.21:", desc: "Add Jellyfin Binary Environmentals" } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } From 626efcfa752ba715b1894f7e18fce006926f4aa3 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 23 Jun 2021 11:56:52 -0400 Subject: [PATCH 0721/2257] pin dep versions, add log message for device perms --- Dockerfile | 60 ++++++++++++++--------------- Dockerfile.aarch64 | 64 +++++++++++++++---------------- Dockerfile.armhf | 64 +++++++++++++++---------------- README.md | 5 ++- readme-vars.yml | 5 ++- root/etc/cont-init.d/30-config | 18 ++++----- root/etc/cont-init.d/40-gid-video | 29 +++++++------- root/etc/services.d/jellyfin/run | 19 ++++----- 8 files changed, 132 insertions(+), 132 deletions(-) diff --git a/Dockerfile b/Dockerfile index b6e5c44..25db594 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,37 +12,35 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ - else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - i965-va-driver \ - intel-media-va-driver-non-free \ - ${JELLYFIN} \ - jellyfin-ffmpeg \ - jellyfin-server \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libssl1.1 \ - mesa-va-drivers && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ + echo "**** install jellyfin *****" && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + fi && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + at \ + i965-va-driver \ + intel-media-va-driver-non-free \ + ${JELLYFIN} \ + jellyfin-ffmpeg \ + libfontconfig1 \ + libfreetype6 \ + libssl1.1 \ + mesa-va-drivers && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 24c2222..6e44120 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -12,39 +12,37 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ - else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - ${JELLYFIN} \ - jellyfin-ffmpeg \ - jellyfin-server \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libomxil-bellagio0 \ - libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl1.1 && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ + echo "**** install jellyfin *****" && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + fi && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + at \ + ${JELLYFIN} \ + jellyfin-ffmpeg \ + libfontconfig1 \ + libfreetype6 \ + libomxil-bellagio0 \ + libomxil-bellagio-bin \ + libraspberrypi0 \ + libssl1.1 && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 9647c99..a3cb1fc 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -12,39 +12,37 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ - else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - ${JELLYFIN} \ - jellyfin-ffmpeg \ - jellyfin-server \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libomxil-bellagio0 \ - libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl1.1 && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + gnupg && \ + echo "**** install jellyfin *****" && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ + curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + if [ -z ${JELLYFIN_RELEASE+x} ]; then \ + JELLYFIN="jellyfin"; \ + else \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + fi && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + at \ + ${JELLYFIN} \ + jellyfin-ffmpeg \ + libfontconfig1 \ + libfreetype6 \ + libomxil-bellagio0 \ + libomxil-bellagio-bin \ + libraspberrypi0 \ + libssl1.1 && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # add local files COPY root/ / diff --git a/README.md b/README.md index 50b9d16..7aa025c 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Jellyfin releases - Focal baseimage | -| bionic | Stable Jellyfin releases - Bionic baseimage | +| bionic | DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage | | nightly | Unstable Jellyfin releases | ## Application Setup @@ -302,7 +302,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **20.01.21:"** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. +* **23.06.21:** - Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag. +* **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **05.01.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **23.11.20:** - Rebase to Focal, branch off Bionic. * **22.07.20:** - Install nightly from unstable. diff --git a/readme-vars.yml b/readme-vars.yml index cd1f8d3..8bb3b1c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -17,7 +17,7 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } - - { tag: "bionic", desc: "Stable Jellyfin releases - Bionic baseimage" } + - { tag: "bionic", desc: "DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage" } - { tag: "nightly", desc: "Unstable Jellyfin releases" } # container parameters @@ -98,7 +98,8 @@ app_setup_block: | # changelog changelogs: - - { date: 20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } + - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } + - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Install nightly from unstable." } diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index a272525..ff0be50 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -2,18 +2,18 @@ # create directories mkdir -p \ - /config/{log,data/transcodes,cache} \ - /data \ - /transcode + /config/{log,data/transcodes,cache} \ + /data \ + /transcode # permissions chown abc:abc \ - /config \ - /config/* \ - /data \ - /config/data/transcodes \ - /transcode + /config \ + /config/* \ + /data \ + /config/data/transcodes \ + /transcode if [ -n "$(ls -A /data 2>/dev/null)" ]; then chown abc:abc \ - /data/* + /data/* fi diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index e4512de..5210ccc 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -4,21 +4,24 @@ FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -prin for i in $FILES do - VIDEO_GID=$(stat -c '%g' "$i") - if ! id -G abc | grep -qw "$VIDEO_GID"; then - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [ -z "${VIDEO_NAME}" ]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" - groupadd "$VIDEO_NAME" - groupmod -g "$VIDEO_GID" "$VIDEO_NAME" - fi - usermod -a -G "$VIDEO_NAME" abc - fi + VIDEO_GID=$(stat -c '%g' "$i") + if ! id -G abc | grep -qw "$VIDEO_GID"; then + VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') + if [ -z "${VIDEO_NAME}" ]; then + VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" + groupadd "$VIDEO_NAME" + groupmod -g "$VIDEO_GID" "$VIDEO_NAME" + fi + usermod -a -G "$VIDEO_NAME" abc + if [ $(stat -c '%A' "${i}" | cut -b 8,9) != "rw" ]; then + echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n" + fi + fi done # openmax lib loading if [ -e "/opt/vc/lib" ] && [ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]; then - echo "[jellyfin-init] Pi Libs detected loading" - echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" - ldconfig + echo "[jellyfin-init] Pi Libs detected loading" + echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" + ldconfig fi diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run index ccee791..3611473 100644 --- a/root/etc/services.d/jellyfin/run +++ b/root/etc/services.d/jellyfin/run @@ -1,16 +1,17 @@ #!/usr/bin/with-contenv bash -export JELLYFIN_DATA_DIR="/config/data" \ -JELLYFIN_CONFIG_DIR="/config" \ -JELLYFIN_LOG_DIR="/config/log" \ -JELLYFIN_CACHE_DIR="/config/cache" \ -JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" +export \ + JELLYFIN_DATA_DIR="/config/data" \ + JELLYFIN_CONFIG_DIR="/config" \ + JELLYFIN_LOG_DIR="/config/log" \ + JELLYFIN_CACHE_DIR="/config/cache" \ + JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" 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 /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg + s6-setuidgid abc /usr/bin/jellyfin \ + --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg From 2eda65606323661cc60c3aaf7fa5ff4a7a97e038 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Jun 2021 13:47:01 -0400 Subject: [PATCH 0722/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ec6021..0ab57e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.2.1+i571~u20.04 jellyfin10.7.6-1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server10.7.5-1 +jellyfin-server10.7.6-1 jellyfin-web10.7.6-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ad26e32d9956c5cce3f47be4945bf95815c9a9fd Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 23 Jun 2021 16:00:49 -0400 Subject: [PATCH 0723/2257] revert pinning dep versions --- Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- Dockerfile.armhf | 4 +++- README.md | 2 +- readme-vars.yml | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25db594..b315ca6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ @@ -32,6 +32,8 @@ RUN \ intel-media-va-driver-non-free \ ${JELLYFIN} \ jellyfin-ffmpeg \ + jellyfin-server \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libssl1.1 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 6e44120..78c6910 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,13 +25,15 @@ RUN \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ jellyfin-ffmpeg \ + jellyfin-server \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a3cb1fc..02fe118 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -25,13 +25,15 @@ RUN \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ jellyfin-ffmpeg \ + jellyfin-server \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ diff --git a/README.md b/README.md index 7aa025c..756b116 100644 --- a/README.md +++ b/README.md @@ -302,7 +302,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **23.06.21:** - Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag. +* **23.06.21:** - Add log message if device permissions are incorrect. Deprecate the `bionic` tag. * **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **05.01.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **23.11.20:** - Rebase to Focal, branch off Bionic. diff --git a/readme-vars.yml b/readme-vars.yml index 8bb3b1c..d9eb446 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -98,7 +98,7 @@ app_setup_block: | # changelog changelogs: - - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } + - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Deprecate the `bionic` tag." } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } From f915aa97cb45ff8f76b3052f32ba4e0cbe3b565f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Jun 2021 02:29:56 +0000 Subject: [PATCH 0724/2257] 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 5504401..4a451ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210622.5-unstable +jellyfin20210624.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210622.5-unstable -jellyfin-web20210621.1-unstable +jellyfin-web20210624.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From eaf8991d0f1b87f4409562fe20ea726b84c7854d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Jun 2021 09:02:43 +0000 Subject: [PATCH 0725/2257] 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 4a451ba..f867bb5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210624.1-unstable +jellyfin20210624.6-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210622.5-unstable -jellyfin-web20210624.1-unstable +jellyfin-web20210624.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From ac767efd5e3191d3c2086495deee21620486f3d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Jun 2021 20:11:07 +0000 Subject: [PATCH 0726/2257] 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 f867bb5..53afff6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210624.6-unstable +jellyfin20210628.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210622.5-unstable +jellyfin-server20210628.10-unstable jellyfin-web20210624.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1add6f6d411b07e9206cf2bb2bff4dce7c64e564 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Jun 2021 00:12:02 +0000 Subject: [PATCH 0727/2257] 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 53afff6..f7cac38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ fdisk2.34-0.1ubuntu9.1 findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 -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 @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210628.10-unstable +jellyfin20210629.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210628.10-unstable +jellyfin-server20210629.3-unstable jellyfin-web20210624.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -81,7 +81,7 @@ libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 -libgcc-s110.2.0-5ubuntu1~20.04 +libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libglib2.0-02.64.6-1~ubuntu20.04.3 libgmp102:6.2.0+dfsg-4 @@ -94,7 +94,7 @@ libharfbuzz0b2.6.4-1ubuntu4 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 @@ -114,7 +114,7 @@ libmount12.34-0.1ubuntu9.1 libmp3lame03.100-3 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 libnuma12.0.12-1 @@ -130,7 +130,7 @@ libpcre2-8-010.34-7 libpcre32:8.39-12build1 libpixman-1-00.38.4-0ubuntu1 libpng16-161.6.37-2 -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 @@ -148,12 +148,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.6 +libudev1245.4-4ubuntu3.7 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 @@ -200,7 +200,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 f3730ac76c81cbdd605aff2edb5ae189f1c3e19d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Jul 2021 02:34:00 +0000 Subject: [PATCH 0728/2257] 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 0ab57e3..a9779a2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ fdisk2.34-0.1ubuntu9.1 findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 -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 @@ -80,7 +80,7 @@ libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 -libgcc-s110.2.0-5ubuntu1~20.04 +libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libglib2.0-02.64.6-1~ubuntu20.04.3 libgmp102:6.2.0+dfsg-4 @@ -93,7 +93,7 @@ libharfbuzz0b2.6.4-1ubuntu4 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 @@ -113,7 +113,7 @@ libmount12.34-0.1ubuntu9.1 libmp3lame03.100-3 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 libnuma12.0.12-1 @@ -129,7 +129,7 @@ libpcre2-8-010.34-7 libpcre32:8.39-12build1 libpixman-1-00.38.4-0ubuntu1 libpng16-161.6.37-2 -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 @@ -147,12 +147,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.6 +libudev1245.4-4ubuntu3.7 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.11.0+i571~u20.04 @@ -199,7 +199,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 a1b3d72555d5989a5199c6f92affe77512dbfc9a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Jul 2021 14:08:45 -0400 Subject: [PATCH 0729/2257] 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 f7cac38..5f3f429 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210629.3-unstable +jellyfin20210701.34-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210629.3-unstable -jellyfin-web20210624.6-unstable +jellyfin-web20210701.34-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 555bdec767a621b285afa0b8cc2891c06bab9614 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Jul 2021 21:47:50 -0400 Subject: [PATCH 0730/2257] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a21281e..7276281 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 f880dc9cd4f418d5763031391879ac1c7d2d6fd0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Jul 2021 01:49:35 +0000 Subject: [PATCH 0731/2257] 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 b037b37..0ce6fd4 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 bd518ce..de42e2b 100755 --- 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 756b116..023803c 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,6 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/container_registry) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/) @@ -114,9 +113,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev 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 --- @@ -147,7 +144,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 14c9076ad0767651084cae4829bb2b179d151f49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Jul 2021 22:09:05 -0400 Subject: [PATCH 0732/2257] 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 5f3f429..974b60f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210701.34-unstable +jellyfin20210701.50-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210629.3-unstable -jellyfin-web20210701.34-unstable +jellyfin-web20210701.50-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 34544df624b74cae779eff2a2c1d57a47fbe120a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Jul 2021 04:59:56 -0400 Subject: [PATCH 0733/2257] 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 974b60f..267f9bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210701.50-unstable +jellyfin20210702.25-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210629.3-unstable -jellyfin-web20210701.50-unstable +jellyfin-web20210702.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.5 From 810a1ee21690c101e7cadca4fd875953d68d15b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Jul 2021 23:00:12 +0000 Subject: [PATCH 0734/2257] 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 267f9bc..b0b38ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210702.25-unstable +jellyfin20210705.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210629.3-unstable +jellyfin-server20210705.5-unstable jellyfin-web20210702.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 071edd4321f1403a2392d168d43d27b7a41d3889 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 6 Jul 2021 21:00:14 +0000 Subject: [PATCH 0735/2257] 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 b0b38ce..debb897 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 at3.1.23-1ubuntu1 base-files11ubuntu5.3 base-passwd3.5.47 @@ -38,13 +38,13 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210705.5-unstable +jellyfin20210706.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210705.5-unstable -jellyfin-web20210702.25-unstable +jellyfin-web20210706.1-unstable 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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 From 16b177f24d3a92ce1cb8ee19f8257f593a5b29c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 6 Jul 2021 23:59:43 -0400 Subject: [PATCH 0736/2257] 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 debb897..f62bf1a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210706.1-unstable +jellyfin20210706.7-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210705.5-unstable -jellyfin-web20210706.1-unstable +jellyfin-web20210706.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 65fdf927872225851ba99ed5ec5369d75c20d786 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Jul 2021 02:28:48 +0000 Subject: [PATCH 0737/2257] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bdb0d35..e807100 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 master - 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 1b98e82474e543a5a7594f45282196b9ddac7f66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Jul 2021 02:30:22 +0000 Subject: [PATCH 0738/2257] 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 f3be834..ce2ce17 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 ef2f1bc..457ae8c 100755 --- 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 6d2e5d1..6d606ed 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,6 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/container_registry) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/jellyfin "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) @@ -115,9 +114,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev 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 --- @@ -151,7 +148,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 4062bf1f6b7010bd8f309c1ae4ca8338357c6611 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Jul 2021 02:34:49 +0000 Subject: [PATCH 0739/2257] 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 a9779a2..ff7c854 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 at3.1.23-1ubuntu1 base-files11ubuntu5.3 base-passwd3.5.47 @@ -43,7 +43,7 @@ jellyfin-server10.7.6-1 jellyfin-web10.7.6-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 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 From ceb91873d20a0962461720489834bfdb41ad9626 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Jul 2021 14:59:55 +0000 Subject: [PATCH 0740/2257] 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 f62bf1a..1723bed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210706.7-unstable +jellyfin20210708.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210705.5-unstable +jellyfin-server20210708.2-unstable jellyfin-web20210706.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 505bd982de2be3cc3b798ead14f150d551982793 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Jul 2021 13:12:29 +0000 Subject: [PATCH 0741/2257] 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 1723bed..f100ce5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210708.2-unstable +jellyfin20210709.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210708.2-unstable +jellyfin-server20210709.3-unstable jellyfin-web20210706.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From dafaf5053129d210efc35168a2aba62655811167 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Jul 2021 05:59:59 +0000 Subject: [PATCH 0742/2257] 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 f100ce5..614a140 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210709.3-unstable +jellyfin20210710.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210709.3-unstable -jellyfin-web20210706.7-unstable +jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1fdfc95edbfb754359df926ce5d7a4e8d05be429 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Jul 2021 13:09:48 +0000 Subject: [PATCH 0743/2257] 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 614a140..dbea41c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210710.2-unstable +jellyfin20210710.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210709.3-unstable +jellyfin-server20210710.3-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a08f32cb799173947be2495f17c5ebb1b132fd59 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Jul 2021 20:00:18 +0000 Subject: [PATCH 0744/2257] 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 dbea41c..d09e6b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210710.3-unstable +jellyfin20210710.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210710.3-unstable +jellyfin-server20210710.9-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a3542e2c8321036b552d640c2567c327ecaaad2f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Jul 2021 11:59:50 +0000 Subject: [PATCH 0745/2257] 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 d09e6b4..f376132 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210710.9-unstable +jellyfin20210711.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210710.9-unstable +jellyfin-server20210711.2-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1a2256f2c9a4a4d5355d99ee184db829a2013803 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Jul 2021 08:02:09 +0000 Subject: [PATCH 0746/2257] 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 f376132..ffa4212 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210711.2-unstable +jellyfin20210712.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210711.2-unstable +jellyfin-server20210712.1-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 04ac024103c4eea76a941f1cc5b975b0b833a643 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Jul 2021 15:00:11 +0000 Subject: [PATCH 0747/2257] 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 ffa4212..d1ce017 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210712.1-unstable +jellyfin20210712.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210712.1-unstable +jellyfin-server20210712.2-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3a5471846e508bade9c26a3aa3bcfd65cf733fc0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Jul 2021 23:00:56 +0000 Subject: [PATCH 0748/2257] 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 d1ce017..7853ec6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210712.2-unstable +jellyfin20210712.27-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210712.2-unstable +jellyfin-server20210712.27-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9b36e539fbe969852d5f8d8f9668d118562ec1f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 13 Jul 2021 06:00:29 +0000 Subject: [PATCH 0749/2257] 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 7853ec6..0deecb6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210712.27-unstable +jellyfin20210712.30-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210712.27-unstable +jellyfin-server20210712.30-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 40df9ebaa8b02d842d916868c97419c37c112c16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Jul 2021 09:04:09 +0000 Subject: [PATCH 0750/2257] 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 0deecb6..9cdb431 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210712.30-unstable +jellyfin20210714.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210712.30-unstable +jellyfin-server20210714.1-unstable jellyfin-web20210710.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 585df99e2dc48a87b56b37b2fd89bc773a51d448 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Jul 2021 19:00:16 +0000 Subject: [PATCH 0751/2257] 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 9cdb431..fe664bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210714.1-unstable +jellyfin20210714.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210714.1-unstable -jellyfin-web20210710.2-unstable +jellyfin-web20210714.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 313a5aae147860be72072508016fbfc593400de7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Jul 2021 01:50:43 +0000 Subject: [PATCH 0752/2257] 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 fe664bd..9dd7362 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210714.2-unstable +jellyfin20210714.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210714.1-unstable +jellyfin-server20210714.3-unstable jellyfin-web20210714.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 35b6dce005cd9469caf5158e54e8f3dda49654a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Jul 2021 15:02:10 +0000 Subject: [PATCH 0753/2257] 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 9dd7362..6aa5783 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210714.3-unstable +jellyfin20210715.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210714.3-unstable -jellyfin-web20210714.2-unstable +jellyfin-server20210715.2-unstable +jellyfin-web20210715.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 640197e56a0efd161d31db56544318696d0e18be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Jul 2021 23:59:27 +0200 Subject: [PATCH 0754/2257] 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 6aa5783..3b2b558 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210715.3-unstable +jellyfin20210715.4-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210715.2-unstable -jellyfin-web20210715.3-unstable +jellyfin-web20210715.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 659d4d748628eb6bbc77126e2be1d182f9893129 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 16 Jul 2021 13:59:40 +0200 Subject: [PATCH 0755/2257] 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 3b2b558..639892a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210715.4-unstable +jellyfin20210716.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210715.2-unstable +jellyfin-server20210716.2-unstable jellyfin-web20210715.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 629cd94be6d71ab595c007af63c53e5e4d8fa222 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Jul 2021 01:00:31 +0200 Subject: [PATCH 0756/2257] 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 639892a..355d0cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210716.2-unstable +jellyfin20210716.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210716.2-unstable +jellyfin-server20210716.5-unstable jellyfin-web20210715.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f5a473930cf9108c4bf85502bfe227f7c33225d6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Jul 2021 16:00:11 +0000 Subject: [PATCH 0757/2257] 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 355d0cf..1b7e718 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210716.5-unstable +jellyfin20210717.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210716.5-unstable +jellyfin-server20210717.2-unstable jellyfin-web20210715.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a77154d297da36a7f6c073354b9167422cb84f5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 18 Jul 2021 00:59:10 +0200 Subject: [PATCH 0758/2257] 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 1b7e718..79bf40d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210717.2-unstable +jellyfin20210717.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210717.2-unstable +jellyfin-server20210717.3-unstable jellyfin-web20210715.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f61249080c7bd479a7f29407798750c65a93e84a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 18 Jul 2021 19:59:33 +0200 Subject: [PATCH 0759/2257] 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 79bf40d..3efdbfe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210717.3-unstable +jellyfin20210718.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210717.3-unstable -jellyfin-web20210715.4-unstable +jellyfin-web20210718.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2f4679b9a95ed075da69fdfe276c5d80f6084e3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 19 Jul 2021 19:14:22 +0200 Subject: [PATCH 0760/2257] 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 3efdbfe..4303fab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210718.1-unstable +jellyfin20210719.21-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210717.3-unstable +jellyfin-server20210719.21-unstable jellyfin-web20210718.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3762e40537852cb335959d1aef39cd2591ed625a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 20 Jul 2021 01:59:31 +0200 Subject: [PATCH 0761/2257] 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 4303fab..537aa87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210719.21-unstable +jellyfin20210719.25-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210719.21-unstable +jellyfin-server20210719.25-unstable jellyfin-web20210718.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8e80973fc36021cbfa2c344025f81fe520c505eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 20 Jul 2021 19:13:24 +0200 Subject: [PATCH 0762/2257] 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 537aa87..db2187b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210719.25-unstable +jellyfin20210720.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210719.25-unstable +jellyfin-server20210720.1-unstable jellyfin-web20210718.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1373e15fc7dfabec67b9576512e95d815a5580e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Jul 2021 02:02:38 +0200 Subject: [PATCH 0763/2257] 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 db2187b..9a11c3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210720.1-unstable +jellyfin20210720.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210720.1-unstable +jellyfin-server20210720.7-unstable jellyfin-web20210718.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From db0bfc741e7eb77b5bb020d5f7e3c595c6df51b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Jul 2021 04:34:08 +0200 Subject: [PATCH 0764/2257] 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 ff7c854..9c38f02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.2.1+i571~u20.04 +intel-media-va-driver-non-free21.2.2+i592~u20.04 jellyfin10.7.6-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.6-1 @@ -64,12 +64,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.5 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.106-1025 -libdrm-amdgpu12.4.106-1025 -libdrm-common2.4.106-1025 -libdrm-intel12.4.106-1025 -libdrm-nouveau22.4.106-1025 -libdrm-radeon12.4.106-1025 +libdrm22.4.107-1027 +libdrm-amdgpu12.4.107-1027 +libdrm-common2.4.107-1027 +libdrm-intel12.4.107-1027 +libdrm-nouveau22.4.107-1027 +libdrm-radeon12.4.107-1027 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -97,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.1.3+i571~u20.04 +libigdgmm1121.2.1+i592~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.7 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.11.0+i571~u20.04 +libva22.11.0+i592~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From b684cff433f6bc095b8b5062344c59eba12102e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Jul 2021 10:59:36 +0200 Subject: [PATCH 0765/2257] 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 9a11c3e..8e3b615 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210720.7-unstable +jellyfin20210722.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210720.7-unstable -jellyfin-web20210718.1-unstable +jellyfin-web20210722.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 52f3ddfca2224043504afd97f78cc04816ef05ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 23 Jul 2021 17:00:24 +0200 Subject: [PATCH 0766/2257] 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 8e3b615..5f0ca23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210722.1-unstable +jellyfin20210723.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210720.7-unstable -jellyfin-web20210722.1-unstable +jellyfin-web20210723.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -83,7 +83,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.6-1~ubuntu20.04.3 +libglib2.0-02.64.6-1~ubuntu20.04.4 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 From 648d7a798d06b9710c29d667aeb200f63fe6fdb7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 27 Jul 2021 11:00:34 +0200 Subject: [PATCH 0767/2257] 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 5f0ca23..b9193c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,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 @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210723.1-unstable +jellyfin20210727.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210720.7-unstable -jellyfin-web20210723.1-unstable +jellyfin-web20210727.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -62,7 +62,7 @@ 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.5 +libcurl47.68.0-1ubuntu2.6 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.102-1ubuntu1~20.04.1 @@ -149,11 +149,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.7 +libudev1245.4-4ubuntu3.10 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 From 636abe88db82bce642c44733e24e820036695594 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 27 Jul 2021 22:59:40 +0200 Subject: [PATCH 0768/2257] 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 b9193c9..93f2c6f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210727.1-unstable +jellyfin20210727.15-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210720.7-unstable +jellyfin-server20210727.15-unstable jellyfin-web20210727.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 863c6ea10d8af1fa06695b6d7ae7892604977ea7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Jul 2021 04:31:08 +0200 Subject: [PATCH 0769/2257] 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 9c38f02..2292397 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,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 @@ -61,7 +61,7 @@ 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.5 +libcurl47.68.0-1ubuntu2.6 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-1027 @@ -82,7 +82,7 @@ libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 -libglib2.0-02.64.6-1~ubuntu20.04.3 +libglib2.0-02.64.6-1~ubuntu20.04.4 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.3 libgpg-error01.37-1 @@ -148,11 +148,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.7 +libudev1245.4-4ubuntu3.10 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.11.0+i592~u20.04 From f33691b22c94b19f3f6e0fedd2aad9b9e2a3c696 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Jul 2021 10:59:36 +0200 Subject: [PATCH 0770/2257] 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 93f2c6f..2b8a696 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210727.15-unstable +jellyfin20210729.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210727.15-unstable -jellyfin-web20210727.1-unstable +jellyfin-web20210729.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 94da0631e0be6bfea5fda2670d9a24dbfb6aa3ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Jul 2021 11:00:12 +0200 Subject: [PATCH 0771/2257] 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 2b8a696..5e4803c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210729.1-unstable +jellyfin20210730.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210727.15-unstable +jellyfin-server20210730.2-unstable jellyfin-web20210729.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8944bb74941187cebc993ffdf121b0417483a036 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Jul 2021 18:00:10 +0200 Subject: [PATCH 0772/2257] 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 5e4803c..61d277b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210730.2-unstable +jellyfin20210730.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210730.2-unstable -jellyfin-web20210729.1-unstable +jellyfin-server20210730.3-unstable +jellyfin-web20210730.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 13d68b3180e58ac033fb045f80a6e913b7beca5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 31 Jul 2021 08:00:28 +0200 Subject: [PATCH 0773/2257] 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 61d277b..bf634a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210730.3-unstable +jellyfin20210731.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210730.3-unstable -jellyfin-web20210730.1-unstable +jellyfin-web20210731.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 670389cdd51d688ba8ffc4392832a553eee20bdf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 31 Jul 2021 15:11:44 +0200 Subject: [PATCH 0774/2257] 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 bf634a8..9f0118c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210731.1-unstable +jellyfin20210731.3-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210730.3-unstable -jellyfin-web20210731.1-unstable +jellyfin-web20210731.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e2123ca34bd35917787fbd65100537df8cb05b72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Aug 2021 20:00:07 +0200 Subject: [PATCH 0775/2257] 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 9f0118c..e49954c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210731.3-unstable +jellyfin20210802.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210730.3-unstable +jellyfin-server20210802.10-unstable jellyfin-web20210731.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a5ad8faddbadefa5ed036cc182941cb73be78bef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 3 Aug 2021 15:15:51 +0200 Subject: [PATCH 0776/2257] 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 e49954c..6bca27b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210802.10-unstable +jellyfin20210803.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210802.10-unstable -jellyfin-web20210731.3-unstable +jellyfin-server20210803.4-unstable +jellyfin-web20210803.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -65,12 +65,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.6 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.102-1ubuntu1~20.04.1 -libdrm-amdgpu12.4.102-1ubuntu1~20.04.1 -libdrm-common2.4.102-1ubuntu1~20.04.1 -libdrm-intel12.4.102-1ubuntu1~20.04.1 -libdrm-nouveau22.4.102-1ubuntu1~20.04.1 -libdrm-radeon12.4.102-1ubuntu1~20.04.1 +libdrm22.4.105-3~20.04.1 +libdrm-amdgpu12.4.105-3~20.04.1 +libdrm-common2.4.105-3~20.04.1 +libdrm-intel12.4.105-3~20.04.1 +libdrm-nouveau22.4.105-3~20.04.1 +libdrm-radeon12.4.105-3~20.04.1 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -85,7 +85,7 @@ libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libglib2.0-02.64.6-1~ubuntu20.04.4 libgmp102:6.2.0+dfsg-4 -libgnutls303.6.13-2ubuntu1.3 +libgnutls303.6.13-2ubuntu1.6 libgpg-error01.37-1 libgraphite2-31.3.13-11build1 libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 @@ -107,7 +107,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 -libllvm111:11.0.0-2~ubuntu20.04.1 +libllvm121:12.0.0-3ubuntu1~20.04.3 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 @@ -149,11 +149,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.10 +libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.10 +libudev1245.4-4ubuntu3.11 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 @@ -187,17 +187,17 @@ libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 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 -mesa-va-drivers20.2.6-0ubuntu0.20.04.1 +mesa-va-drivers21.0.3-0ubuntu0.2~20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 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 6da86d11e05c926d4fad1b267a532ab5b966a611 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 3 Aug 2021 21:59:17 +0200 Subject: [PATCH 0777/2257] 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 6bca27b..5267555 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210803.4-unstable +jellyfin20210803.57-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210803.4-unstable -jellyfin-web20210803.1-unstable +jellyfin-server20210803.6-unstable +jellyfin-web20210803.57-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 73c8b7fd09a15688ec4ea533f423c1f5695b388a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 Aug 2021 06:00:11 +0200 Subject: [PATCH 0778/2257] 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 5267555..52166fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210803.57-unstable +jellyfin20210804.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210803.6-unstable -jellyfin-web20210803.57-unstable +jellyfin-web20210804.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0c5fa2a4a153c1d89752a93755a36320733ed59e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 Aug 2021 13:59:12 +0200 Subject: [PATCH 0779/2257] 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 52166fe..e88e113 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210804.1-unstable +jellyfin20210804.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210803.6-unstable +jellyfin-server20210804.4-unstable jellyfin-web20210804.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c81c45158ea342f2e166263a1bf6adcda55e18eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 Aug 2021 21:10:25 +0200 Subject: [PATCH 0780/2257] 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 e88e113..e880457 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210804.4-unstable +jellyfin20210804.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210804.4-unstable +jellyfin-server20210804.8-unstable jellyfin-web20210804.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d0049b49f40b0e5a857c1dcd86c6b43a295dd499 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 Aug 2021 04:29:16 +0200 Subject: [PATCH 0781/2257] 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 2292397..c0e8759 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -84,7 +84,7 @@ libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1 libglib2.0-02.64.6-1~ubuntu20.04.4 libgmp102:6.2.0+dfsg-4 -libgnutls303.6.13-2ubuntu1.3 +libgnutls303.6.13-2ubuntu1.6 libgpg-error01.37-1 libgraphite2-31.3.13-11build1 libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 @@ -106,7 +106,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 -libllvm111:11.0.0-2~ubuntu20.04.1 +libllvm121:12.0.0-3ubuntu1~20.04.3 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 @@ -148,11 +148,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.10 +libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.10 +libudev1245.4-4ubuntu3.11 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.11.0+i592~u20.04 @@ -186,17 +186,17 @@ libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 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 -mesa-va-drivers20.2.6-0ubuntu0.20.04.1 +mesa-va-drivers21.0.3-0ubuntu0.2~20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 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 cbc1bd5a21e0f6a2ff6b61dcbc34780f131c4797 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Aug 2021 01:59:47 +0200 Subject: [PATCH 0782/2257] 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 e880457..57605d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210804.8-unstable +jellyfin20210805.22-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210804.8-unstable -jellyfin-web20210804.1-unstable +jellyfin-web20210805.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0c4d18a3635b45d4b9cf5c3486d569c7f3b6cebf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Aug 2021 09:02:06 +0200 Subject: [PATCH 0783/2257] 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 57605d2..5e49446 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210805.22-unstable +jellyfin20210806.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210804.8-unstable -jellyfin-web20210805.22-unstable +jellyfin-web20210806.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d384cd7589ebe0ddfef1a572f0032830ea7acea5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Aug 2021 15:17:18 +0200 Subject: [PATCH 0784/2257] 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 5e49446..3b7f39a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210806.1-unstable +jellyfin20210806.4-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210804.8-unstable -jellyfin-web20210806.1-unstable +jellyfin-web20210806.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6487b97a4f57b24f8de1d2893ce8bc3da39894d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 Aug 2021 21:59:56 +0200 Subject: [PATCH 0785/2257] 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 3b7f39a..3a911f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210806.4-unstable +jellyfin20210806.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210804.8-unstable -jellyfin-web20210806.4-unstable +jellyfin-server20210806.9-unstable +jellyfin-web20210806.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 733b52655a3b522fc84c71420d50c66cc05f6f36 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 7 Aug 2021 19:10:39 +0200 Subject: [PATCH 0786/2257] 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 3a911f2..8039f35 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210806.9-unstable +jellyfin20210807.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210806.9-unstable -jellyfin-web20210806.5-unstable +jellyfin-web20210807.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From be75b6d20b55f44c9cc047e3e1475dff2d3e4c1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 8 Aug 2021 15:11:19 +0200 Subject: [PATCH 0787/2257] 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 8039f35..027b2a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210807.2-unstable +jellyfin20210808.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210806.9-unstable +jellyfin-server20210808.1-unstable jellyfin-web20210807.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e68b421b5f3def5e95b5a411e4fe3b3fd3807d76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 8 Aug 2021 21:59:41 +0200 Subject: [PATCH 0788/2257] 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 027b2a5..fd3d946 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210808.1-unstable +jellyfin20210808.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210808.1-unstable -jellyfin-web20210807.2-unstable +jellyfin-server20210808.3-unstable +jellyfin-web20210808.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b1fe6509a88b5044f5bee6c688097596874a53b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 9 Aug 2021 18:00:33 +0200 Subject: [PATCH 0789/2257] 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 fd3d946..e6d81af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210808.3-unstable +jellyfin20210809.10-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210808.3-unstable -jellyfin-web20210808.1-unstable +jellyfin-web20210809.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9e234dfcc8f12181aa6838ea68420d4e90ddb85d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 10 Aug 2021 01:00:12 +0200 Subject: [PATCH 0790/2257] 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 e6d81af..b4beaa2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210809.10-unstable +jellyfin20210809.82-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210808.3-unstable -jellyfin-web20210809.10-unstable +jellyfin-web20210809.82-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 471c4daebc515e760b2b1ccb66991a3e3f8a99f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 10 Aug 2021 11:59:57 +0200 Subject: [PATCH 0791/2257] 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 b4beaa2..b0a8f8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210809.82-unstable +jellyfin20210810.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210808.3-unstable +jellyfin-server20210810.4-unstable jellyfin-web20210809.82-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 73f3f7af0f6d3dc86333a20ab450a9c223fa8c1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 10 Aug 2021 21:05:26 +0200 Subject: [PATCH 0792/2257] 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 b0a8f8a..47ce961 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210810.4-unstable +jellyfin20210810.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210810.4-unstable -jellyfin-web20210809.82-unstable +jellyfin-server20210810.6-unstable +jellyfin-web20210810.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2a9d55779afc778f388f0781f225854ddd5bb84c Mon Sep 17 00:00:00 2001 From: Aram Akhavan Date: Tue, 10 Aug 2021 22:00:20 -0700 Subject: [PATCH 0793/2257] Don't chown /data --- root/etc/cont-init.d/30-config | 5 ----- 1 file changed, 5 deletions(-) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index ff0be50..25404be 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -10,10 +10,5 @@ mkdir -p \ chown abc:abc \ /config \ /config/* \ - /data \ /config/data/transcodes \ /transcode -if [ -n "$(ls -A /data 2>/dev/null)" ]; then -chown abc:abc \ - /data/* -fi From 0129142c2d63777a5862189d0cce8b6b70d92a3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Aug 2021 09:00:55 +0200 Subject: [PATCH 0794/2257] 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 47ce961..3103d90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210810.6-unstable +jellyfin20210811.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210810.6-unstable +jellyfin-server20210811.1-unstable jellyfin-web20210810.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -147,7 +147,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 From 7d5403ebc99a25e2714bf9c2782290e1cbe4c1c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Aug 2021 15:13:24 +0200 Subject: [PATCH 0795/2257] 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 3103d90..484f897 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210811.1-unstable +jellyfin20210811.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210811.1-unstable +jellyfin-server20210811.8-unstable jellyfin-web20210810.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From dc1fb08b3263894c988afcb7a4aeed3c920f3596 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 Aug 2021 21:59:29 +0200 Subject: [PATCH 0796/2257] 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 484f897..e2d2d20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210811.8-unstable +jellyfin20210811.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210811.8-unstable +jellyfin-server20210811.10-unstable jellyfin-web20210810.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 246a3af184b6202f47c6035800d861e62e065674 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 12 Aug 2021 04:28:59 +0200 Subject: [PATCH 0797/2257] 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 c0e8759..bd239f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.2.2+i592~u20.04 +intel-media-va-driver-non-free21.2.2+i593~u20.04 jellyfin10.7.6-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.6-1 @@ -97,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.2.1+i592~u20.04 +libigdgmm1121.2.1+i593~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -146,7 +146,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 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.11 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.11.0+i592~u20.04 +libva22.11.0+i593~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From f41f609330c6cf7bd30534a92e2d00d7d41d112c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 12 Aug 2021 12:59:53 +0200 Subject: [PATCH 0798/2257] 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 e2d2d20..9d2cc9f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210811.10-unstable +jellyfin20210812.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210811.10-unstable -jellyfin-web20210810.5-unstable +jellyfin-web20210812.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f857cbf5d4c4a7986c0c54d0a48cd240ec8f8eb1 Mon Sep 17 00:00:00 2001 From: Aram Akhavan Date: Thu, 12 Aug 2021 09:35:09 -0700 Subject: [PATCH 0799/2257] Don't `chown /data` --- root/etc/cont-init.d/30-config | 5 ----- 1 file changed, 5 deletions(-) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index ff0be50..25404be 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -10,10 +10,5 @@ mkdir -p \ chown abc:abc \ /config \ /config/* \ - /data \ /config/data/transcodes \ /transcode -if [ -n "$(ls -A /data 2>/dev/null)" ]; then -chown abc:abc \ - /data/* -fi From 6f71df6c1b5118eea7ca0fe931234bdb9fb20b72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 12 Aug 2021 19:06:26 +0200 Subject: [PATCH 0800/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9d2cc9f..36f59bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin20210812.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210811.10-unstable +jellyfin-server20210812.1-unstable jellyfin-web20210812.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From dbc779505453dbce77fa692eb75a20605cc39191 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Aug 2021 02:00:09 +0200 Subject: [PATCH 0801/2257] 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 36f59bf..3a25f95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210812.1-unstable +jellyfin20210812.4-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210812.1-unstable +jellyfin-server20210812.4-unstable jellyfin-web20210812.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3981bfd513bb8bf1c39e5e9ebc0e5065cfa97933 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Aug 2021 09:00:26 +0200 Subject: [PATCH 0802/2257] 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 3a25f95..44ed804 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210812.4-unstable +jellyfin20210813.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210812.4-unstable -jellyfin-web20210812.1-unstable +jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 395eeb783d291d4a2e27588cab25a4033f7e5827 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Aug 2021 19:13:52 +0200 Subject: [PATCH 0803/2257] 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 44ed804..86ab871 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210813.2-unstable +jellyfin20210813.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210812.4-unstable +jellyfin-server20210813.3-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8ec14cd166160252685b03dcb279a997c91a7d39 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 14 Aug 2021 13:01:13 +0200 Subject: [PATCH 0804/2257] 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 86ab871..187a25f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210813.3-unstable +jellyfin20210814.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210813.3-unstable +jellyfin-server20210814.7-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 12f2c58a1ffc73253be896e964630cc384359762 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 15 Aug 2021 15:10:33 +0200 Subject: [PATCH 0805/2257] 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 187a25f..809157e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210814.7-unstable +jellyfin20210815.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210814.7-unstable +jellyfin-server20210815.2-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8d0f9a0e68cd93ac6ce3c7c7f1d7d14d8ff4d883 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 15 Aug 2021 21:59:31 +0200 Subject: [PATCH 0806/2257] 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 809157e..55393b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210815.2-unstable +jellyfin20210815.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210815.2-unstable +jellyfin-server20210815.9-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f7dbba39b19c210f386c8d92fc3c5ab9ee9c551d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 16 Aug 2021 04:18:19 +0200 Subject: [PATCH 0807/2257] 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 55393b0..217df67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210815.9-unstable +jellyfin20210815.12-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210815.9-unstable +jellyfin-server20210815.12-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6dc680836bb070a6e7c88ac56b5f714fdf73ddef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 16 Aug 2021 10:59:49 +0200 Subject: [PATCH 0808/2257] 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 217df67..c4768e2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210815.12-unstable +jellyfin20210816.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210815.12-unstable +jellyfin-server20210816.5-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e548fc30c20f238dba20e3d199787783769f37b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 16 Aug 2021 17:59:43 +0200 Subject: [PATCH 0809/2257] 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 c4768e2..aa94a84 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210816.5-unstable +jellyfin20210816.14-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210816.5-unstable +jellyfin-server20210816.14-unstable jellyfin-web20210813.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -191,7 +191,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.2~20.04.1 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From f06b3ee86965274988eaa81d971e6547d16ffaf9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 17 Aug 2021 07:02:14 +0200 Subject: [PATCH 0810/2257] 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 aa94a84..051e654 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210816.14-unstable +jellyfin20210817.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210816.14-unstable -jellyfin-web20210813.2-unstable +jellyfin-web20210817.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b4ae23e2202aba7b10931f0b63d8397c887a6f5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Aug 2021 05:00:24 +0200 Subject: [PATCH 0811/2257] 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 051e654..2503075 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210817.1-unstable +jellyfin20210818.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210816.14-unstable +jellyfin-server20210818.1-unstable jellyfin-web20210817.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 49d7780a99de8c4f54baa65e72e20a2993682528 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Aug 2021 12:00:32 +0200 Subject: [PATCH 0812/2257] 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 2503075..f8e7bbf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210818.1-unstable +jellyfin20210818.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210818.1-unstable +jellyfin-server20210818.2-unstable jellyfin-web20210817.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3a6bd3b5b55d320decee7e2e72e9de0940a12e74 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 19 Aug 2021 04:28:15 +0200 Subject: [PATCH 0813/2257] 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 bd239f8..3bd30e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,12 +190,12 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.2~20.04.1 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 4bf5808aa68acad384a6922478f02da742aec42d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 19 Aug 2021 13:00:30 +0200 Subject: [PATCH 0814/2257] 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 f8e7bbf..dcea4cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210818.2-unstable +jellyfin20210819.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210818.2-unstable -jellyfin-web20210817.1-unstable +jellyfin-web20210819.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From bb1967145a4f95cbc3f8006de6a7d104ad56ed26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 Aug 2021 03:46:10 +0200 Subject: [PATCH 0815/2257] 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 dcea4cf..7eea83a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210819.1-unstable +jellyfin20210821.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210818.2-unstable -jellyfin-web20210819.1-unstable +jellyfin-web20210821.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 54793af5edf645bb9c64ba60700e68f17b982511 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 Aug 2021 17:00:16 +0200 Subject: [PATCH 0816/2257] 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 7eea83a..39fd427 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210821.1-unstable +jellyfin20210821.7-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210818.2-unstable +jellyfin-server20210821.7-unstable jellyfin-web20210821.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 65bea16e7c230fee2b6a5b640cbe85827d605762 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 23 Aug 2021 08:00:22 +0200 Subject: [PATCH 0817/2257] 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 39fd427..b56567e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210821.7-unstable +jellyfin20210823.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210821.7-unstable -jellyfin-web20210821.1-unstable +jellyfin-web20210823.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4c1f76f5bfe24fe201bbcf0cd313652bd0e42307 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 23 Aug 2021 23:09:13 +0200 Subject: [PATCH 0818/2257] 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 b56567e..9cfd01d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210823.1-unstable +jellyfin20210823.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210821.7-unstable +jellyfin-server20210823.8-unstable jellyfin-web20210823.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 825105669257995298f23cdb4354db016e7a2fc2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Aug 2021 06:00:41 +0200 Subject: [PATCH 0819/2257] 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 9cfd01d..73bf376 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210823.8-unstable +jellyfin20210824.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210823.8-unstable -jellyfin-web20210823.1-unstable +jellyfin-web20210824.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 08e28f282060bf8b5a0f08e01786f6e0a438769c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Aug 2021 13:00:28 +0200 Subject: [PATCH 0820/2257] 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 73bf376..17bb69d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210824.2-unstable +jellyfin20210824.52-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210823.8-unstable -jellyfin-web20210824.2-unstable +jellyfin-web20210824.52-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2e71554e4e7e0844ac7951ab64996fae7cb16db3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 Aug 2021 19:13:23 +0200 Subject: [PATCH 0821/2257] 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 17bb69d..885f123 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu2 apt2.0.6 apt-utils2.0.6 at3.1.23-1ubuntu1 -base-files11ubuntu5.3 +base-files11ubuntu5.4 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210824.52-unstable +jellyfin20210824.61-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210823.8-unstable -jellyfin-web20210824.52-unstable +jellyfin-web20210824.61-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -147,7 +147,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.5 +libssl1.11.1.1f-1ubuntu2.8 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 From 38ad82602387f5c4cc77f899b961df544f40602f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Aug 2021 01:57:07 +0200 Subject: [PATCH 0822/2257] Bot Updating Templated Files --- Jenkinsfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7276281..48ec752 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 { From da6f5bba5115cf70ac4bfc8e09a1dbc694d7c7da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 Aug 2021 02:00:57 +0200 Subject: [PATCH 0823/2257] 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 885f123..b3da831 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210824.61-unstable +jellyfin20210824.69-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210823.8-unstable -jellyfin-web20210824.61-unstable +jellyfin-web20210824.69-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From baf777bf49e49a795a8ab4b283b37344ca046afd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Aug 2021 04:25:50 +0200 Subject: [PATCH 0824/2257] Bot Updating Templated Files --- Jenkinsfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e807100..2c05761 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 { From 960d9891af526a5e70e06f0c64bcba618541847a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 Aug 2021 04:29:10 +0200 Subject: [PATCH 0825/2257] 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 3bd30e8..9e0b460 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu2 apt2.0.6 apt-utils2.0.6 at3.1.23-1ubuntu1 -base-files11ubuntu5.3 +base-files11ubuntu5.4 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.1 @@ -146,7 +146,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.5 +libssl1.11.1.1f-1ubuntu2.8 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.11 libtasn1-64.16.0-2 From 342e62a80f54a981d8eaf68e390c185cfb475e42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Aug 2021 03:47:25 +0200 Subject: [PATCH 0826/2257] Bot Updating Templated Files --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 48ec752..6b33c5a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -510,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} @@ -571,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} @@ -595,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 89b2e540afb7ab88f41af98c9b2f44a696e28424 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Aug 2021 03:51:42 +0200 Subject: [PATCH 0827/2257] 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 b3da831..eabc931 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210824.69-unstable +jellyfin20210827.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210823.8-unstable +jellyfin-server20210827.1-unstable jellyfin-web20210824.69-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5089ab16057013892dab964035baed28b8abfe86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Aug 2021 10:00:52 +0200 Subject: [PATCH 0828/2257] 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 eabc931..2d318b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210827.1-unstable +jellyfin20210827.3-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210827.1-unstable -jellyfin-web20210824.69-unstable +jellyfin-web20210827.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 36f345002a4d30ec9baa050c0c7cdac7634ac50b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Aug 2021 19:13:10 +0200 Subject: [PATCH 0829/2257] 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 2d318b0..09a94f5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210827.3-unstable +jellyfin20210827.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210827.1-unstable +jellyfin-server20210827.6-unstable jellyfin-web20210827.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ecbc2e2b462d62bfde56654d82814a4862b23a54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Aug 2021 03:41:09 +0200 Subject: [PATCH 0830/2257] 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 09a94f5..5f0a4b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210827.6-unstable +jellyfin20210828.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210827.6-unstable -jellyfin-web20210827.3-unstable +jellyfin-web20210828.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e00c8f44917784a7f24e7ce8ca176a088e8d7f9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 30 Aug 2021 10:01:06 +0200 Subject: [PATCH 0831/2257] 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 5f0a4b7..a7e7a6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210828.1-unstable +jellyfin20210830.1-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210827.6-unstable -jellyfin-web20210828.1-unstable +jellyfin-server20210828.1-unstable +jellyfin-web20210830.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 67b9ee1a06da4964d861d0bd461e8542b9c46d69 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 30 Aug 2021 17:00:13 +0200 Subject: [PATCH 0832/2257] 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 a7e7a6c..437e782 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210830.1-unstable +jellyfin20210830.11-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210828.1-unstable +jellyfin-server20210830.11-unstable jellyfin-web20210830.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 728afc82c28c59826eded5e9ef420835cbb6d781 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 30 Aug 2021 23:59:55 +0200 Subject: [PATCH 0833/2257] 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 437e782..a9b14b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210830.11-unstable +jellyfin20210830.18-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210830.11-unstable +jellyfin-server20210830.18-unstable jellyfin-web20210830.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9eeb8a556e81a464b65e9424ab488fe6644908ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 31 Aug 2021 07:02:39 +0200 Subject: [PATCH 0834/2257] 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 a9b14b5..b07af93 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210830.18-unstable +jellyfin20210830.27-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210830.18-unstable -jellyfin-web20210830.1-unstable +jellyfin-web20210830.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 09d0c923c376d5f036ef126fa1ce514f5eb7cd89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Sep 2021 01:00:09 +0200 Subject: [PATCH 0835/2257] 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 b07af93..cd1822b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210830.27-unstable +jellyfin20210831.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210830.18-unstable -jellyfin-web20210830.27-unstable +jellyfin-web20210831.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -146,7 +146,7 @@ libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 -libssh-40.9.3-2ubuntu2.1 +libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.8 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.11 @@ -196,7 +196,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 adf009306939d5b3a86e8ee204258e5f09515431 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Sep 2021 08:00:50 +0200 Subject: [PATCH 0836/2257] 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 cd1822b..d28efd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210831.1-unstable +jellyfin20210901.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210830.18-unstable -jellyfin-web20210831.1-unstable +jellyfin-web20210901.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8f0d69c70799a4ec86ddc753f80de89715ac65a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Sep 2021 15:13:53 +0200 Subject: [PATCH 0837/2257] 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 d28efd7..c02941f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210901.1-unstable +jellyfin20210901.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210830.18-unstable +jellyfin-server20210901.8-unstable jellyfin-web20210901.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From afdbfa6af248b9ce56c2c4342336adfd3090a227 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Sep 2021 21:59:29 +0200 Subject: [PATCH 0838/2257] 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 c02941f..a246c2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210901.8-unstable +jellyfin20210901.12-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210901.8-unstable -jellyfin-web20210901.1-unstable +jellyfin-server20210901.12-unstable +jellyfin-web20210901.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8ad2ee33d2edbc414d796cd9ab6317f930229c92 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Sep 2021 04:27:11 +0200 Subject: [PATCH 0839/2257] Bot Updating Templated Files --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2c05761..ae33751 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -510,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} @@ -571,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} @@ -595,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 873b9b453941fbb781d46774a1c4d4dd4b4e2f18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Sep 2021 04:30:20 +0200 Subject: [PATCH 0840/2257] 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 9e0b460..e3fd98b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -145,7 +145,7 @@ libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.1 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 -libssh-40.9.3-2ubuntu2.1 +libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.8 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.11 @@ -195,7 +195,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 f5c254c454e8abcb4e1b29e0c3e649d83f4818d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Sep 2021 10:59:44 +0200 Subject: [PATCH 0841/2257] 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 a246c2a..006acf0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210901.12-unstable +jellyfin20210902.2-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210901.12-unstable +jellyfin-server20210902.2-unstable jellyfin-web20210901.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f3083e02422a61c8474adac2b976c179181c788d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Sep 2021 17:59:21 +0200 Subject: [PATCH 0842/2257] 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 006acf0..5cd3f64 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210902.2-unstable +jellyfin20210902.3-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210902.2-unstable +jellyfin-server20210902.3-unstable jellyfin-web20210901.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c57e980d1684c3e01c732fedaa899eb8435f20b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Sep 2021 00:59:59 +0200 Subject: [PATCH 0843/2257] 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 5cd3f64..4f7f9da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210902.3-unstable +jellyfin20210902.6-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210902.3-unstable -jellyfin-web20210901.4-unstable +jellyfin-server20210902.6-unstable +jellyfin-web20210902.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 05f9b968217c3f9625be2fe9025ff779cc8074a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Sep 2021 16:00:46 +0200 Subject: [PATCH 0844/2257] 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 4f7f9da..d886bc3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210902.6-unstable +jellyfin20210903.2-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210902.6-unstable -jellyfin-web20210902.5-unstable +jellyfin-web20210903.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9d372e8d1e5b5860394111f1b571ac4dcfbf2975 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Sep 2021 22:59:15 +0200 Subject: [PATCH 0845/2257] 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 d886bc3..0f9d896 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210903.2-unstable +jellyfin20210903.16-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210902.6-unstable -jellyfin-web20210903.2-unstable +jellyfin-server20210903.16-unstable +jellyfin-web20210903.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7091a0c757d7590ab60d729729c90acb4e8a2395 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Sep 2021 06:00:01 +0200 Subject: [PATCH 0846/2257] 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 0f9d896..4cfab5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210903.16-unstable +jellyfin20210903.23-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210903.16-unstable -jellyfin-web20210903.3-unstable +jellyfin-server20210903.23-unstable +jellyfin-web20210903.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f5d05818b47196e7815787996c65912d67c47b03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Sep 2021 13:59:44 +0200 Subject: [PATCH 0847/2257] 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 4cfab5b..6dd8628 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210903.23-unstable +jellyfin20210904.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210903.23-unstable -jellyfin-web20210903.9-unstable +jellyfin-web20210904.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 346e2aa21a1ec794f0bdfb4514a7fbe4b4eebb03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Sep 2021 21:00:16 +0200 Subject: [PATCH 0848/2257] 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 6dd8628..5d104c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210904.1-unstable +jellyfin20210904.9-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210903.23-unstable -jellyfin-web20210904.1-unstable +jellyfin-server20210904.8-unstable +jellyfin-web20210904.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 74b5db82db70821ddafa40d0c573faec0892f2b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 5 Sep 2021 13:00:20 +0200 Subject: [PATCH 0849/2257] 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 5d104c5..b41a8cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210904.9-unstable +jellyfin20210905.6-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210904.8-unstable -jellyfin-web20210904.9-unstable +jellyfin-web20210905.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 85773db71dee1b1d2709036baece3bce9a8717fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 5 Sep 2021 19:10:37 +0200 Subject: [PATCH 0850/2257] 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 b41a8cb..397fa2c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210905.6-unstable +jellyfin20210905.10-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210904.8-unstable -jellyfin-web20210905.6-unstable +jellyfin-server20210905.2-unstable +jellyfin-web20210905.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0e4d244660aae95653dd3edd6855d3bb50b9085f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Sep 2021 01:59:22 +0200 Subject: [PATCH 0851/2257] 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 397fa2c..81b9af4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210905.10-unstable +jellyfin20210905.12-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210905.2-unstable -jellyfin-web20210905.10-unstable +jellyfin-server20210905.4-unstable +jellyfin-web20210905.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ebc98807899edbb8118953a8df6a82a3ed884bb1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Sep 2021 05:21:38 +0200 Subject: [PATCH 0852/2257] 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 e3fd98b..2124e5a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,10 +37,10 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.2.2+i593~u20.04 -jellyfin10.7.6-1 +jellyfin10.7.7-1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server10.7.6-1 -jellyfin-web10.7.6-1 +jellyfin-server10.7.7-1 +jellyfin-web10.7.7-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9143338c1aec034097a8aa5dcc116113b974ca6d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Sep 2021 09:00:26 +0200 Subject: [PATCH 0853/2257] 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 81b9af4..4ca6316 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210905.12-unstable +jellyfin20210906.5-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210905.4-unstable +jellyfin-server20210906.5-unstable jellyfin-web20210905.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e8321fd4e56f273ea82fa6f9989f4bf48549ceb9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Sep 2021 15:14:57 +0200 Subject: [PATCH 0854/2257] 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 4ca6316..8f3bfdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210906.5-unstable +jellyfin20210906.23-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210906.5-unstable +jellyfin-server20210906.23-unstable jellyfin-web20210905.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 85002ae26f2cabd76d04759d0c6fcfc157556199 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Sep 2021 21:59:31 +0200 Subject: [PATCH 0855/2257] 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 8f3bfdf..02c03cd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210906.23-unstable +jellyfin20210906.53-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210906.23-unstable -jellyfin-web20210905.12-unstable +jellyfin-server20210906.27-unstable +jellyfin-web20210906.53-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7357de04834dac07045f5bc50b62c1c700dfa75c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 7 Sep 2021 07:59:55 +0200 Subject: [PATCH 0856/2257] 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 02c03cd..640a13b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210906.53-unstable +jellyfin20210907.1-unstable jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210906.27-unstable -jellyfin-web20210906.53-unstable +jellyfin-web20210907.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5fb6a72e27a0e7364311d6aa9d872272e9b42151 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 7 Sep 2021 15:13:31 +0200 Subject: [PATCH 0857/2257] 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 640a13b..f110f7b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,10 +38,10 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210907.1-unstable +jellyfin20210907.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210906.27-unstable -jellyfin-web20210907.1-unstable +jellyfin-server20210907.8-unstable +jellyfin-web20210907.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f0b75eea094313e735ef4978826902f075803a34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 16 Sep 2021 04:31:59 +0200 Subject: [PATCH 0858/2257] 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 2124e5a..f39568d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.2.2+i593~u20.04 +intel-media-va-driver-non-free21.3.1+i611~u20.04 jellyfin10.7.7-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.7-1 @@ -64,12 +64,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.6 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.107-1027 -libdrm-amdgpu12.4.107-1027 -libdrm-common2.4.107-1027 -libdrm-intel12.4.107-1027 -libdrm-nouveau22.4.107-1027 -libdrm-radeon12.4.107-1027 +libdrm22.4.107-1028 +libdrm-amdgpu12.4.107-1028 +libdrm-common2.4.107-1028 +libdrm-intel12.4.107-1028 +libdrm-nouveau22.4.107-1028 +libdrm-radeon12.4.107-1028 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -97,7 +97,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.2.1+i593~u20.04 +libigdgmm1121.2.1+i611~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -106,7 +106,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 -libllvm121:12.0.0-3ubuntu1~20.04.3 +libllvm121:12.0.0-3ubuntu1~20.04.4 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 @@ -155,7 +155,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.11 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.11.0+i593~u20.04 +libva22.12.0+i611~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From 16847297717bfdf92b7378dae2e10d7a99228cfb Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 22 Sep 2021 09:33:42 -0400 Subject: [PATCH 0859/2257] pull individual packages instead of wrapper --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 5 ++--- Dockerfile.aarch64 | 5 ++--- Dockerfile.armhf | 5 ++--- Jenkinsfile | 2 +- README.md | 1 + jenkins-vars.yml | 2 +- readme-vars.yml | 1 + 8 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index a4ec3f0..36a2d3d 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_JELLYFIN_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}') + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for jellyfin branch nightly" diff --git a/Dockerfile b/Dockerfile index b315ca6..773abd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,9 @@ RUN \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ + JELLYFIN="jellyfin-server"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ @@ -32,7 +32,6 @@ RUN \ intel-media-va-driver-non-free \ ${JELLYFIN} \ jellyfin-ffmpeg \ - jellyfin-server \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 78c6910..496a20f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -23,16 +23,15 @@ RUN \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ + JELLYFIN="jellyfin-server"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ jellyfin-ffmpeg \ - jellyfin-server \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 02fe118..6648e78 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -23,16 +23,15 @@ RUN \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ + JELLYFIN="jellyfin-server"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ jellyfin-ffmpeg \ - jellyfin-server \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Jenkinsfile b/Jenkinsfile index 6b33c5a..33175aa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 023803c..a9adfea 100644 --- a/README.md +++ b/README.md @@ -299,6 +299,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. * **23.06.21:** - Add log message if device permissions are incorrect. Deprecate the `bionic` tag. * **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **05.01.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 46c65da..38bb41d 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" release_type: prerelease release_tag: nightly ls_branch: nightly diff --git a/readme-vars.yml b/readme-vars.yml index d9eb446..51328c1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -98,6 +98,7 @@ app_setup_block: | # changelog changelogs: + - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Deprecate the `bionic` tag." } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } From 9c9f04e661e4c69b145b33bd99764f5fc9f13ce7 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 22 Sep 2021 09:40:16 -0400 Subject: [PATCH 0860/2257] pull individual packages instead of the wrapper --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 6 ++++-- Dockerfile.aarch64 | 6 ++++-- Dockerfile.armhf | 6 ++++-- Jenkinsfile | 2 +- README.md | 1 + jenkins-vars.yml | 2 +- readme-vars.yml | 1 + 8 files changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index b793408..6bd1f60 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 master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}') + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for jellyfin branch master" diff --git a/Dockerfile b/Dockerfile index 949a449..173ac10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,15 +22,17 @@ RUN \ curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ + JELLYFIN="jellyfin-server"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ intel-media-va-driver-non-free \ ${JELLYFIN} \ + jellyfin-ffmpeg \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libssl1.1 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index bb3d6e5..d7b24a2 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -22,14 +22,16 @@ RUN \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ + JELLYFIN="jellyfin-server"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ + jellyfin-ffmpeg \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 76d2770..6c4fe41 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -22,14 +22,16 @@ RUN \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin"; \ + JELLYFIN="jellyfin-server"; \ else \ - JELLYFIN="jellyfin=${JELLYFIN_RELEASE} jellyfin-server=${JELLYFIN_RELEASE} jellyfin-web=${JELLYFIN_RELEASE}"; \ + JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ + jellyfin-ffmpeg \ + jellyfin-web \ libfontconfig1 \ libfreetype6 \ libomxil-bellagio0 \ diff --git a/Jenkinsfile b/Jenkinsfile index ae33751..a24a864 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 6d606ed..a20856e 100644 --- a/README.md +++ b/README.md @@ -324,6 +324,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. * **23.06.21:** - Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag. * **21.05.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. * **20.01.21:** - Add Jellyfin Binary Environmentals diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 3249901..b1b1c8f 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" release_type: stable release_tag: latest ls_branch: master diff --git a/readme-vars.yml b/readme-vars.yml index e5c411f..17be826 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -115,6 +115,7 @@ app_setup_block: | # changelog changelogs: + - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } - { date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - { date: "20.01.21:", desc: "Add Jellyfin Binary Environmentals" } From 47b3dbe016e752860adc4bb2acdecf65e063d2a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 22 Sep 2021 19:02:08 +0200 Subject: [PATCH 0861/2257] Bot Updating Package Versions --- package_versions.txt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f39568d..8a6d97a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,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 @@ -37,7 +37,6 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.3.1+i611~u20.04 -jellyfin10.7.7-1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 @@ -61,7 +60,7 @@ 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.6 +libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-1028 @@ -81,7 +80,7 @@ libfontconfig12.13.1-2ubuntu3 libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.3.0-1ubuntu1~20.04 -libgcrypt201.8.5-5ubuntu1 +libgcrypt201.8.5-5ubuntu1.1 libglib2.0-02.64.6-1~ubuntu20.04.4 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.6 @@ -148,11 +147,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.11 +libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.12.0+i611~u20.04 From b4047cfb54f465a364a1833ca44ed5a31eb3ab30 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 22 Sep 2021 19:02:17 +0200 Subject: [PATCH 0862/2257] 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 f110f7b..e2ebcb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,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 @@ -38,10 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin20210907.8-unstable jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210907.8-unstable -jellyfin-web20210907.6-unstable +jellyfin-server20210922.5-unstable +jellyfin-web20210922.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -62,7 +61,7 @@ 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.6 +libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.105-3~20.04.1 @@ -82,7 +81,7 @@ libfontconfig12.13.1-2ubuntu3 libfreetype62.10.1-2ubuntu0.1 libfribidi01.0.8-2 libgcc-s110.3.0-1ubuntu1~20.04 -libgcrypt201.8.5-5ubuntu1 +libgcrypt201.8.5-5ubuntu1.1 libglib2.0-02.64.6-1~ubuntu20.04.4 libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.6 @@ -107,7 +106,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 -libllvm121:12.0.0-3ubuntu1~20.04.3 +libllvm121:12.0.0-3ubuntu1~20.04.4 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.1 @@ -149,11 +148,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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.11 +libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.7.0-2 From 8cbe01982a33ce5fa3809d8e70f89b0ba248a174 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 Sep 2021 16:00:33 +0200 Subject: [PATCH 0863/2257] 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 e2ebcb7..d41239d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210922.5-unstable -jellyfin-web20210922.1-unstable +jellyfin-server20210925.13-unstable +jellyfin-web20210923.82-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c0f08d2bdf9517f6c346184b3d7aa01a3f151f3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 Sep 2021 23:00:49 +0200 Subject: [PATCH 0864/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d41239d..441e28f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210925.13-unstable +jellyfin-server20210925.28-unstable jellyfin-web20210923.82-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8aac26b558d43a3b6a01fea811d5157b26eea8b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 26 Sep 2021 19:07:52 +0200 Subject: [PATCH 0865/2257] 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 441e28f..edf574f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210925.28-unstable -jellyfin-web20210923.82-unstable +jellyfin-server20210926.5-unstable +jellyfin-web20210925.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0867567ecf2f7c88b53dbb3346a93b77f527afaa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 27 Sep 2021 10:00:09 +0200 Subject: [PATCH 0866/2257] 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 edf574f..9e22e62 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210926.5-unstable -jellyfin-web20210925.4-unstable +jellyfin-server20210927.1-unstable +jellyfin-web20210927.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 507a9b1883aacce1e9932f341322d5c9c0947f47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 28 Sep 2021 12:00:17 +0200 Subject: [PATCH 0867/2257] 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 9e22e62..501dcef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,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 @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210927.1-unstable -jellyfin-web20210927.1-unstable +jellyfin-server20210928.4-unstable +jellyfin-web20210927.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -64,12 +64,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.105-3~20.04.1 -libdrm-amdgpu12.4.105-3~20.04.1 -libdrm-common2.4.105-3~20.04.1 -libdrm-intel12.4.105-3~20.04.1 -libdrm-nouveau22.4.105-3~20.04.1 -libdrm-radeon12.4.105-3~20.04.1 +libdrm22.4.105-3~20.04.2 +libdrm-amdgpu12.4.105-3~20.04.2 +libdrm-common2.4.105-3~20.04.2 +libdrm-intel12.4.105-3~20.04.2 +libdrm-nouveau22.4.105-3~20.04.2 +libdrm-radeon12.4.105-3~20.04.2 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -129,7 +129,7 @@ libpcre2-8-010.34-7 libpcre32:8.39-12build1 libpixman-1-00.38.4-0ubuntu1 libpng16-161.6.37-2 -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 @@ -190,7 +190,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.1 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 @@ -199,7 +199,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 8dff6bc6e63ac259da3de4072079269278231cd2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 28 Sep 2021 19:10:28 +0200 Subject: [PATCH 0868/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 501dcef..d7a8eda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210928.4-unstable +jellyfin-server20210928.6-unstable jellyfin-web20210927.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 30c4e59f0b5ea26d4997840fff4e6d0f56b3076a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Sep 2021 09:59:58 +0200 Subject: [PATCH 0869/2257] 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 d7a8eda..af5ed3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210928.6-unstable -jellyfin-web20210927.2-unstable +jellyfin-server20210929.2-unstable +jellyfin-web20210929.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 17f8f20d6e1f057398ec100ea03f30beb3a37c88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Sep 2021 04:32:16 +0200 Subject: [PATCH 0870/2257] 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 8a6d97a..a35f9d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,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 @@ -128,7 +128,7 @@ libpcre2-8-010.34-7 libpcre32:8.39-12build1 libpixman-1-00.38.4-0ubuntu1 libpng16-161.6.37-2 -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 @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.1 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.2 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 @@ -198,7 +198,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 2b2776101d49a1a8a6b4f205933de6cd8461ec54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Sep 2021 04:32:51 +0200 Subject: [PATCH 0871/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index af5ed3d..e19d391 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20210929.2-unstable -jellyfin-web20210929.8-unstable +jellyfin-web20210929.16-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2b7161198b3367eb1497c2712e4cf66050c64d2b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Sep 2021 11:59:40 +0200 Subject: [PATCH 0872/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e19d391..491acec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210929.2-unstable +jellyfin-server20210930.1-unstable jellyfin-web20210929.16-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ece6a03cee4f35ab9a82f1010346545ddbf9f4dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Sep 2021 19:10:05 +0200 Subject: [PATCH 0873/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 491acec..05d331d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210930.1-unstable +jellyfin-server20210930.3-unstable jellyfin-web20210929.16-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 878f74fc43d63d970195d5322843e10c7e857190 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Oct 2021 08:59:18 +0200 Subject: [PATCH 0874/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 05d331d..36e2390 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20210930.3-unstable +jellyfin-server20211001.1-unstable jellyfin-web20210929.16-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 76534ac1ca2a350cbcf81c0ff5905f42bdb7091a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Oct 2021 15:07:42 +0200 Subject: [PATCH 0875/2257] Bot Updating Templated Files --- Jenkinsfile | 108 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 101 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 33175aa..d2d3e6e 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -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/jellyfin") | .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/jellyfin",\ + "shortDescription":"example description",\ + "libraryType":"docker",\ + "website":"https://github.com/linuxserver/docker-jellyfin",\ + "backendUrl":"https://ghcr.io/linuxserver/jellyfin",\ + "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' \ + | 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 98c7c4d42a959aa8b765303c56256bf156b52338 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Oct 2021 15:08:48 +0200 Subject: [PATCH 0876/2257] Bot Updating Templated Files --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a9adfea..51c6eb7 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/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/jellyfin) [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/jellyfin` 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: @@ -120,7 +121,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: jellyfin: - image: ghcr.io/linuxserver/jellyfin + image: lscr.io/linuxserver/jellyfin container_name: jellyfin environment: - PUID=1000 @@ -165,7 +166,7 @@ docker run -d \ --device /dev/video11:/dev/video11 `#optional` \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ - ghcr.io/linuxserver/jellyfin + lscr.io/linuxserver/jellyfin ``` ## Parameters @@ -233,7 +234,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/jellyfin` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin` ## Updating Info @@ -251,7 +252,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull ghcr.io/linuxserver/jellyfin` +* Update the image: `docker pull lscr.io/linuxserver/jellyfin` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` * 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) @@ -286,7 +287,7 @@ cd docker-jellyfin docker build \ --no-cache \ --pull \ - -t ghcr.io/linuxserver/jellyfin:latest . + -t lscr.io/linuxserver/jellyfin:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From 9e1167b73009fa5d71f04cc7828d30f0cf916640 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Oct 2021 15:12:04 +0200 Subject: [PATCH 0877/2257] 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 36e2390..f758328 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211001.1-unstable -jellyfin-web20210929.16-unstable +jellyfin-server20211003.3-unstable +jellyfin-web20211003.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1fb9cb32e0cfae5e1cc478d0c0aa78f2d3f1e9c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Oct 2021 21:59:56 +0200 Subject: [PATCH 0878/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f758328..d35174a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211003.3-unstable +jellyfin-server20211003.8-unstable jellyfin-web20211003.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b995c40986e738223e99f2bb6b7300c3d1e539c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Oct 2021 16:00:24 +0200 Subject: [PATCH 0879/2257] 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 d35174a..7f2ea95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211003.8-unstable -jellyfin-web20211003.1-unstable +jellyfin-server20211004.7-unstable +jellyfin-web20211004.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7625076ecac5c27f6b1a27671ef289d84dd5fdbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Oct 2021 23:00:11 +0200 Subject: [PATCH 0880/2257] 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 7f2ea95..1f325cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211004.7-unstable -jellyfin-web20211004.3-unstable +jellyfin-server20211004.9-unstable +jellyfin-web20211004.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ef950c78d4544d8508a47c1dc7b597b1d17ff50f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Oct 2021 12:02:19 +0200 Subject: [PATCH 0881/2257] 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 1f325cb..aa621b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211004.9-unstable -jellyfin-web20211004.19-unstable +jellyfin-server20211006.2-unstable +jellyfin-web20211005.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6e7b9b4cbeb764fee7d47e03ba92ba147cb4291e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Oct 2021 04:31:46 +0200 Subject: [PATCH 0882/2257] Bot Updating Templated Files --- Jenkinsfile | 108 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 101 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a24a864..db77bda 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -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-' + 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 { @@ -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-' + 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 { @@ -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-' + 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 { @@ -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 "master" + 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/jellyfin") | .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/jellyfin",\ + "shortDescription":"example description",\ + "libraryType":"docker",\ + "website":"https://github.com/linuxserver/docker-jellyfin",\ + "backendUrl":"https://ghcr.io/linuxserver/jellyfin",\ + "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' \ + | 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}:latest docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} docker push ${PUSHIMAGE}:latest 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}:latest || : + ${DELETEIMAGE}:latest \ + ${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}:latest || : docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --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}:latest 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-latest \ ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:amd64-${SEMVER} \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ ${DELETEIMAGE}:arm32v7-latest \ ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:arm32v7-${SEMVER} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ ${DELETEIMAGE}:arm64v8-latest \ - ${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 b7ad3317f6bc4d725bf1113fea328d79faf44fb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Oct 2021 04:32:54 +0200 Subject: [PATCH 0883/2257] Bot Updating Templated Files --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a20856e..ddbe6e5 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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-jellyfin/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/jellyfin) [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) @@ -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/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/jellyfin` 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: @@ -121,7 +122,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: jellyfin: - image: ghcr.io/linuxserver/jellyfin + image: lscr.io/linuxserver/jellyfin container_name: jellyfin environment: - PUID=1000 @@ -172,7 +173,7 @@ docker run -d \ --device /dev/video11:/dev/video11 `#optional` \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ - ghcr.io/linuxserver/jellyfin + lscr.io/linuxserver/jellyfin ``` ## Parameters @@ -258,7 +259,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/jellyfin` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin` ## Updating Info @@ -276,7 +277,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull ghcr.io/linuxserver/jellyfin` +* Update the image: `docker pull lscr.io/linuxserver/jellyfin` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` * 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) @@ -311,7 +312,7 @@ cd docker-jellyfin docker build \ --no-cache \ --pull \ - -t ghcr.io/linuxserver/jellyfin:latest . + -t lscr.io/linuxserver/jellyfin:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From e747b3dc3aadde3582b2f02550cedffbbdac1d13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Oct 2021 01:00:53 +0200 Subject: [PATCH 0884/2257] 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 aa621b2..d257d85 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211006.2-unstable -jellyfin-web20211005.14-unstable +jellyfin-server20211012.3-unstable +jellyfin-web20211012.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -206,7 +206,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 62bf3251b0f5851a9b598e2c96c3b70897d2c433 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Oct 2021 04:31:11 +0200 Subject: [PATCH 0885/2257] 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 a35f9d3..825b1af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.2 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.3 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 @@ -205,7 +205,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 5e649f03607b764dd0e83d9ba33b171f9c680e02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Oct 2021 04:31:30 +0200 Subject: [PATCH 0886/2257] 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 d257d85..73fb99c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20211012.3-unstable -jellyfin-web20211012.1-unstable +jellyfin-web20211013.71-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -190,7 +190,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.2 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.3 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From ba750ce8c77c5e88b1bc695e34526fd3ff7d933a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Oct 2021 22:59:19 +0200 Subject: [PATCH 0887/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 73fb99c..805f3b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211012.3-unstable +jellyfin-server20211014.3-unstable jellyfin-web20211013.71-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 83fea4fb13eab2702d9ef0eae51a5d314857d132 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 16 Oct 2021 07:03:42 +0200 Subject: [PATCH 0888/2257] 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 805f3b3..53b7ab7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211014.3-unstable -jellyfin-web20211013.71-unstable +jellyfin-server20211016.1-unstable +jellyfin-web20211016.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d9cb98608b3744569fb39e9a532c5f3b4168f414 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 18 Oct 2021 20:59:22 +0200 Subject: [PATCH 0889/2257] 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 53b7ab7..d546b90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211016.1-unstable -jellyfin-web20211016.2-unstable +jellyfin-server20211018.8-unstable +jellyfin-web20211017.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 501dcab1036237abb8dbc2248f61483bbb49e692 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 19 Oct 2021 07:02:12 +0200 Subject: [PATCH 0890/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d546b90..00f9574 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211018.8-unstable +jellyfin-server20211019.1-unstable jellyfin-web20211017.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0013001db37dea55cd11c851a01fdecc5f38187c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 19 Oct 2021 22:02:13 +0200 Subject: [PATCH 0891/2257] 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 00f9574..450103c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211019.1-unstable -jellyfin-web20211017.5-unstable +jellyfin-server20211019.2-unstable +jellyfin-web20211019.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From a9860f32f15a22f4b4a46c2be3f0b991775d5d3e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Oct 2021 15:13:59 +0200 Subject: [PATCH 0892/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 450103c..b3175d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211019.2-unstable +jellyfin-server20211020.5-unstable jellyfin-web20211019.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8b95850d37f86ff9ffe601ebfbc6689ef9f1d980 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 21 Oct 2021 04:35:44 +0200 Subject: [PATCH 0893/2257] 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 825b1af..10e8e1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.3.1+i611~u20.04 +intel-media-va-driver-non-free21.3.3+i620~u20.04 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 @@ -96,7 +96,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2 libidn2-02.2.0-2 -libigdgmm1121.2.1+i611~u20.04 +libigdgmm1121.2.2+i620~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -154,7 +154,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.12.0+i611~u20.04 +libva22.12.0+i620~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From 9d74fdd969c91e135b437c3b8a23ecc5c91d0d48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 21 Oct 2021 23:59:35 +0200 Subject: [PATCH 0894/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b3175d5..8a654dd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211020.5-unstable +jellyfin-server20211021.1-unstable jellyfin-web20211019.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4efcd4a357035187116d7a439c9fae523fac3ba0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Oct 2021 15:14:07 +0200 Subject: [PATCH 0895/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8a654dd..ebd1233 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211021.1-unstable +jellyfin-server20211022.1-unstable jellyfin-web20211019.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5ae02dbe9d4f37bc3872df3be7f1af52b1d4df81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Oct 2021 13:00:07 +0200 Subject: [PATCH 0896/2257] 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 ebd1233..87bb646 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211022.1-unstable -jellyfin-web20211019.7-unstable +jellyfin-server20211023.1-unstable +jellyfin-web20211023.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3f56dd35efa6c8be01487830ea43efb459a35551 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Oct 2021 19:08:34 +0200 Subject: [PATCH 0897/2257] 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 87bb646..f7b9814 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211023.1-unstable -jellyfin-web20211023.22-unstable +jellyfin-server20211023.2-unstable +jellyfin-web20211023.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d2e56f9be23a56f50940b038916f7b2224e37c56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Oct 2021 01:59:13 +0200 Subject: [PATCH 0898/2257] 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 f7b9814..f5a77e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211023.2-unstable -jellyfin-web20211023.25-unstable +jellyfin-server20211023.3-unstable +jellyfin-web20211023.26-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 66bcddc6ddc03777f4b9fc0ecc88134d1dc4afe1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Oct 2021 19:09:52 +0200 Subject: [PATCH 0899/2257] 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 f5a77e1..a78000f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211023.3-unstable -jellyfin-web20211023.26-unstable +jellyfin-server20211024.1-unstable +jellyfin-web20211024.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d91210ac806a5c5d0f94a8abc894f3591b1aaebc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 Oct 2021 22:59:45 +0200 Subject: [PATCH 0900/2257] 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 a78000f..8700783 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211024.1-unstable -jellyfin-web20211024.2-unstable +jellyfin-server20211025.1-unstable +jellyfin-web20211025.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 94b538373eeec5933980e6e6a4f4a8a34e95434c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Oct 2021 05:59:08 +0200 Subject: [PATCH 0901/2257] 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 8700783..96cde4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211025.1-unstable -jellyfin-web20211025.7-unstable +jellyfin-server20211025.3-unstable +jellyfin-web20211026.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1c44c79e406338f766a92075bbe5928b603f5cf2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Oct 2021 12:59:34 +0200 Subject: [PATCH 0902/2257] 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 96cde4f..b0ab00a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211025.3-unstable -jellyfin-web20211026.2-unstable +jellyfin-server20211026.1-unstable +jellyfin-web20211026.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 84872e7661789ed7ff16e5399a911d69caaea83e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Oct 2021 19:12:31 +0200 Subject: [PATCH 0903/2257] 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 b0ab00a..25f7833 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211026.1-unstable -jellyfin-web20211026.3-unstable +jellyfin-server20211026.8-unstable +jellyfin-web20211026.62-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5741dff347b1ab31a1de71a3b4846edca9c6cd8a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Oct 2021 10:00:43 +0200 Subject: [PATCH 0904/2257] 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 25f7833..ae1ff62 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211026.8-unstable -jellyfin-web20211026.62-unstable +jellyfin-server20211027.3-unstable +jellyfin-web20211027.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f4cf36bee2d0269964b7d52f2157376c9ddf3400 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Oct 2021 17:00:24 +0200 Subject: [PATCH 0905/2257] 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 ae1ff62..d2e7a05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211027.3-unstable -jellyfin-web20211027.5-unstable +jellyfin-server20211027.4-unstable +jellyfin-web20211027.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From efab02912c8f8c969298871450c56155caf3ac6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Oct 2021 04:31:37 +0200 Subject: [PATCH 0906/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d2e7a05..6ffeed2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20211027.4-unstable -jellyfin-web20211027.7-unstable +jellyfin-web20211027.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4f36b04ffb3681b3a0e782e3d8a3f91c8b430b55 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Oct 2021 20:00:13 +0200 Subject: [PATCH 0907/2257] 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 6ffeed2..ea5d699 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211027.4-unstable -jellyfin-web20211027.10-unstable +jellyfin-server20211028.3-unstable +jellyfin-web20211028.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8ee3b7986f8c146802a8208971aba2eae9bdf2ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Oct 2021 07:59:36 +0200 Subject: [PATCH 0908/2257] 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 ea5d699..aeba208 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211028.3-unstable -jellyfin-web20211028.1-unstable +jellyfin-server20211030.1-unstable +jellyfin-web20211029.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f492c9da2ad892a7e05bdd004df3aaaa4c6bdffa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Nov 2021 02:51:20 +0100 Subject: [PATCH 0909/2257] 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 aeba208..644f3d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211030.1-unstable -jellyfin-web20211029.5-unstable +jellyfin-server20211101.2-unstable +jellyfin-web20211101.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 55f4c703a26011f0ac3a3246f674903591742e19 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Nov 2021 17:04:09 +0100 Subject: [PATCH 0910/2257] 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 644f3d0..cb926f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211101.2-unstable -jellyfin-web20211101.1-unstable +jellyfin-server20211101.13-unstable +jellyfin-web20211101.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From bfdd10ebaa8cb2c7a55ee5e7985474bbeaaedc1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Nov 2021 23:59:48 +0100 Subject: [PATCH 0911/2257] 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 cb926f3..38125aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211101.13-unstable -jellyfin-web20211101.3-unstable +jellyfin-server20211101.21-unstable +jellyfin-web20211101.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 21d57afcdb73871f843d17b427753de73bab1c06 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Nov 2021 06:59:20 +0100 Subject: [PATCH 0912/2257] 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 38125aa..8932ff2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211101.21-unstable +jellyfin-server20211101.22-unstable jellyfin-web20211101.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -206,7 +206,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 61acea45c6e8e9eb7f65d159ff71814788267e83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Nov 2021 20:00:42 +0100 Subject: [PATCH 0913/2257] 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 8932ff2..7b103ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211101.22-unstable -jellyfin-web20211101.25-unstable +jellyfin-server20211102.7-unstable +jellyfin-web20211102.75-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From cbfcba8f3770a6c8b73e61775d177ea8eba58a39 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Nov 2021 02:47:19 +0100 Subject: [PATCH 0914/2257] 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 7b103ef..35807da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211102.7-unstable -jellyfin-web20211102.75-unstable +jellyfin-server20211102.9-unstable +jellyfin-web20211103.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b33b92f3852301b2ffbb340e6fc4244a333ae8e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Nov 2021 14:13:45 +0100 Subject: [PATCH 0915/2257] 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 35807da..50ecea9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211102.9-unstable -jellyfin-web20211103.1-unstable +jellyfin-server20211103.2-unstable +jellyfin-web20211103.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4e174e42aa8e274101cbdad3a91c620dd113649b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Nov 2021 01:00:43 +0100 Subject: [PATCH 0916/2257] 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 50ecea9..e88c349 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211103.2-unstable -jellyfin-web20211103.2-unstable +jellyfin-server20211103.7-unstable +jellyfin-web20211103.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8d8e49dd15a18827322df6147949dd30a3d6bdac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Nov 2021 03:32:25 +0100 Subject: [PATCH 0917/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 10e8e1e..14966d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -205,7 +205,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 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 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.1 From 36452ab5c7d80ba1c359d614a0f8b758d0d41bd1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Nov 2021 10:01:28 +0100 Subject: [PATCH 0918/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e88c349..d20e6ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211103.7-unstable +jellyfin-server20211104.2-unstable jellyfin-web20211103.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 726df72e272e0bc50976c2807a17a7ca3757c649 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 4 Nov 2021 16:59:18 +0100 Subject: [PATCH 0919/2257] 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 d20e6ce..8d0dc40 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211104.2-unstable -jellyfin-web20211103.20-unstable +jellyfin-server20211104.3-unstable +jellyfin-web20211104.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ced22ff37f5251e42335f6a6460d68da7418f108 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Nov 2021 00:01:15 +0100 Subject: [PATCH 0920/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8d0dc40..e7dd50c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211104.3-unstable +jellyfin-server20211104.9-unstable jellyfin-web20211104.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1dda5cdba331f67827fb2bf2531e21906b6885b9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Nov 2021 13:00:18 +0100 Subject: [PATCH 0921/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e7dd50c..5ca4027 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211104.9-unstable +jellyfin-server20211105.1-unstable jellyfin-web20211104.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From fbc83e4c4e67265fac72e5db72d87137e11079a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Nov 2021 20:01:09 +0100 Subject: [PATCH 0922/2257] 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 5ca4027..337b966 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211105.1-unstable -jellyfin-web20211104.4-unstable +jellyfin-server20211105.6-unstable +jellyfin-web20211105.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 73b5ab2a6ce2a6bb6a586436a28272fd3d920943 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Nov 2021 02:45:16 +0100 Subject: [PATCH 0923/2257] 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 337b966..5085ea8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211105.6-unstable -jellyfin-web20211105.12-unstable +jellyfin-server20211105.11-unstable +jellyfin-web20211106.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c95d59ec32491db357d6ea8ab1a713149eb6a6e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Nov 2021 23:00:32 +0100 Subject: [PATCH 0924/2257] 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 5085ea8..45868f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211105.11-unstable -jellyfin-web20211106.1-unstable +jellyfin-server20211106.4-unstable +jellyfin-web20211106.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0ce3abccc4bbc37b5a1b61b88db7a595c71575af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Nov 2021 06:03:51 +0100 Subject: [PATCH 0925/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 45868f7..eab52db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211106.4-unstable +jellyfin-server20211106.7-unstable jellyfin-web20211106.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6a0127141ea0d08e78aeb829725ee4d9b1814b60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 7 Nov 2021 20:01:01 +0100 Subject: [PATCH 0926/2257] 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 eab52db..8184817 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211106.7-unstable -jellyfin-web20211106.10-unstable +jellyfin-server20211107.3-unstable +jellyfin-web20211107.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f3a49221ae8bc25b69792351086149f79c1af39e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Nov 2021 08:59:25 +0100 Subject: [PATCH 0927/2257] 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 8184817..99d0915 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211107.3-unstable -jellyfin-web20211107.4-unstable +jellyfin-server20211108.2-unstable +jellyfin-web20211108.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ef654fa9f96f64502915165f579ce69d2f901b77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Nov 2021 16:00:32 +0100 Subject: [PATCH 0928/2257] 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 99d0915..c6ca2b9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211108.2-unstable -jellyfin-web20211108.1-unstable +jellyfin-server20211108.26-unstable +jellyfin-web20211108.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b742850c22278d79c0e5726ed11fe5c5b73a7391 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 8 Nov 2021 23:00:56 +0100 Subject: [PATCH 0929/2257] 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 c6ca2b9..4efe44f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211108.26-unstable -jellyfin-web20211108.6-unstable +jellyfin-server20211108.29-unstable +jellyfin-web20211108.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 72c268ebd288d0be7ddb048546c6f68ceeea7fdb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Nov 2021 09:00:16 +0100 Subject: [PATCH 0930/2257] 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 4efe44f..0c06eab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211108.29-unstable +jellyfin-server20211109.1-unstable jellyfin-web20211108.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -120,10 +120,10 @@ libnuma12.0.12-1 libogg01.3.4-0ubuntu1 libopus01.3.1-0ubuntu1 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 libpciaccess00.16-0ubuntu1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 From ab35b8f660f1bdb898d880e457c0d6b16f244de3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Nov 2021 16:00:29 +0100 Subject: [PATCH 0931/2257] 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 0c06eab..bd58762 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211109.1-unstable -jellyfin-web20211108.17-unstable +jellyfin-server20211109.11-unstable +jellyfin-web20211109.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 86ed04c8386593f71485a0ee2157eb590e67104f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 9 Nov 2021 23:00:31 +0100 Subject: [PATCH 0932/2257] 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 bd58762..446e44e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211109.11-unstable -jellyfin-web20211109.2-unstable +jellyfin-server20211109.29-unstable +jellyfin-web20211109.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7ec7135d5ec25d7db0b42412c7f1f648cd710c99 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Nov 2021 06:01:43 +0100 Subject: [PATCH 0933/2257] 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 446e44e..777067e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211109.29-unstable -jellyfin-web20211109.7-unstable +jellyfin-server20211110.2-unstable +jellyfin-web20211109.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From cba50df164999c17a50f653bb1cafcb3e48434e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Nov 2021 03:32:03 +0100 Subject: [PATCH 0934/2257] 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 14966d2..2e21f48 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -119,10 +119,10 @@ libnuma12.0.12-1 libogg01.3.4-0ubuntu1 libopus01.3.1-0ubuntu1 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 libpciaccess00.16-0ubuntu1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 From 3d52d3904700b5aa04932df5cf01984e5ba7834d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Nov 2021 03:34:25 +0100 Subject: [PATCH 0935/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 777067e..f4f3177 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20211110.2-unstable -jellyfin-web20211109.20-unstable +jellyfin-web20211110.31-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 168b205df827ba84b585238788365913c2d1dfc6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Nov 2021 19:59:59 +0100 Subject: [PATCH 0936/2257] 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 f4f3177..dea963a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211110.2-unstable -jellyfin-web20211110.31-unstable +jellyfin-server20211111.6-unstable +jellyfin-web20211111.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f40d7a6e5653d10e0cc0942dc707cc005a9b2d51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Nov 2021 17:02:28 +0100 Subject: [PATCH 0937/2257] 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 dea963a..97d887a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211111.6-unstable -jellyfin-web20211111.3-unstable +jellyfin-server20211112.5-unstable +jellyfin-web20211112.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f8c4302cea36da2dd4f7da550dc084a8696a1522 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Nov 2021 00:00:08 +0100 Subject: [PATCH 0938/2257] 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 97d887a..ad559b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211112.5-unstable -jellyfin-web20211112.3-unstable +jellyfin-server20211112.9-unstable +jellyfin-web20211112.21-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8726a41cec5910d991031fb61fb37cc9bb7de56e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Nov 2021 16:01:34 +0100 Subject: [PATCH 0939/2257] 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 ad559b1..7312250 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211112.9-unstable -jellyfin-web20211112.21-unstable +jellyfin-server20211113.3-unstable +jellyfin-web20211113.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5f44e6c289bd1b091e49a2c1d00448ec3e92e4e4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Nov 2021 22:59:40 +0100 Subject: [PATCH 0940/2257] 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 7312250..c6a39ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211113.3-unstable -jellyfin-web20211113.5-unstable +jellyfin-server20211113.10-unstable +jellyfin-web20211113.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 50030a5ef6bddd4f3c2740576b0a4e6e2483e472 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Nov 2021 06:02:39 +0100 Subject: [PATCH 0941/2257] 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 c6a39ad..848703a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211113.10-unstable -jellyfin-web20211113.15-unstable +jellyfin-server20211113.12-unstable +jellyfin-web20211113.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 42047094d9a4ef1dc7e72d4153fc6d60668a95a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Nov 2021 12:59:36 +0100 Subject: [PATCH 0942/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 848703a..84d003f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211113.12-unstable +jellyfin-server20211114.1-unstable jellyfin-web20211113.18-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a04be76ddd1f040a536efc2d3550a695e4e14970 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Nov 2021 22:01:31 +0100 Subject: [PATCH 0943/2257] 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 84d003f..9515e74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211114.1-unstable -jellyfin-web20211113.18-unstable +jellyfin-server20211114.4-unstable +jellyfin-web20211114.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7df686aa0fb512326ab1780baca87d429613ea43 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Nov 2021 14:14:53 +0100 Subject: [PATCH 0944/2257] 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 9515e74..38b751f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211114.4-unstable -jellyfin-web20211114.2-unstable +jellyfin-server20211115.6-unstable +jellyfin-web20211115.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7d2d0ed6df718578d520da30b66c2a5883c125b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Nov 2021 20:59:40 +0100 Subject: [PATCH 0945/2257] 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 38b751f..24cab33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211115.6-unstable -jellyfin-web20211115.3-unstable +jellyfin-server20211115.9-unstable +jellyfin-web20211115.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -146,7 +146,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 From 2c5dff8ee2cc36ea62d494223278e2a639d98654 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Nov 2021 03:21:28 +0100 Subject: [PATCH 0946/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 24cab33..3b59d64 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211115.9-unstable +jellyfin-server20211115.24-unstable jellyfin-web20211115.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b8e642f898f9c6aeb53346f7266bca442d7f6ece Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Nov 2021 16:00:26 +0100 Subject: [PATCH 0947/2257] 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 3b59d64..bcdd137 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211115.24-unstable -jellyfin-web20211115.15-unstable +jellyfin-server20211116.7-unstable +jellyfin-web20211116.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -195,7 +195,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 0cca87f3727051b8e04b4481a5f4e2af4374bd42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 16 Nov 2021 22:59:51 +0100 Subject: [PATCH 0948/2257] 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 bcdd137..9cf724f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211116.7-unstable -jellyfin-web20211116.1-unstable +jellyfin-server20211116.10-unstable +jellyfin-web20211116.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e4d3d560ca317cebbd9b711cfb332826e79b1806 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Nov 2021 15:59:51 +0100 Subject: [PATCH 0949/2257] 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 9cf724f..12ecff9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211116.10-unstable -jellyfin-web20211116.5-unstable +jellyfin-server20211117.6-unstable +jellyfin-web20211117.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 16ac4d1a8263a82c49ad2e3d48e2f8eb172e2766 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Nov 2021 22:59:32 +0100 Subject: [PATCH 0950/2257] 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 12ecff9..7717d0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211117.6-unstable -jellyfin-web20211117.10-unstable +jellyfin-server20211117.10-unstable +jellyfin-web20211117.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 02a316986320600f791e8eed723d1386ee42686e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Nov 2021 03:32:08 +0100 Subject: [PATCH 0951/2257] 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 2e21f48..fdb71cc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -145,7 +145,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 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 6265c19e4e2ff1f8a794e0c17516d87c6f701e35 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Nov 2021 03:32:41 +0100 Subject: [PATCH 0952/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7717d0a..9c3018f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server20211117.10-unstable -jellyfin-web20211117.11-unstable +jellyfin-web20211117.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4e2fea2e650e673a1a93e088c49e27b14830947c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Nov 2021 14:12:53 +0100 Subject: [PATCH 0953/2257] 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 9c3018f..570930d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211117.10-unstable -jellyfin-web20211117.17-unstable +jellyfin-server20211119.3-unstable +jellyfin-web20211119.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -190,7 +190,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.3 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.4 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From 7513550f39d087767a43d92bd14337ddcbd6caa1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 19 Nov 2021 20:59:47 +0100 Subject: [PATCH 0954/2257] 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 570930d..242cf88 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211119.3-unstable -jellyfin-web20211119.1-unstable +jellyfin-server20211119.9-unstable +jellyfin-web20211119.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8ac6faa6648de4165744d7dd9ac3bab1574cbaee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 20 Nov 2021 18:10:41 +0100 Subject: [PATCH 0955/2257] 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 242cf88..056dd05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211119.9-unstable -jellyfin-web20211119.3-unstable +jellyfin-server20211120.5-unstable +jellyfin-web20211120.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From bcfeb7fdbf806cfe18a9ca3a86bb0ec9c3a9e522 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Nov 2021 01:00:13 +0100 Subject: [PATCH 0956/2257] 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 056dd05..003cc9e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211120.5-unstable -jellyfin-web20211120.9-unstable +jellyfin-server20211120.6-unstable +jellyfin-web20211120.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From aa2d9aaa17378e07410ac44eb10a9f56d6828316 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Nov 2021 21:59:23 +0100 Subject: [PATCH 0957/2257] 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 003cc9e..df6b7f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211120.6-unstable -jellyfin-web20211120.10-unstable +jellyfin-server20211121.3-unstable +jellyfin-web20211121.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 696817b1f36aa5cd234b2ac01ef9fcc719a7b4b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Nov 2021 04:59:09 +0100 Subject: [PATCH 0958/2257] 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 df6b7f2..827cea1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211121.3-unstable -jellyfin-web20211121.4-unstable +jellyfin-server20211121.5-unstable +jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c415406c6ea14a882bb2001470a7a908997ee113 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Nov 2021 14:59:50 +0100 Subject: [PATCH 0959/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 827cea1..8c63864 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211121.5-unstable +jellyfin-server20211122.9-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ece68614585ad77d83513530bfc8034a4ec36b05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Nov 2021 15:28:17 +0100 Subject: [PATCH 0960/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8c63864..8b1aaa7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211122.9-unstable +jellyfin-server20211122.12-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9327f65ba692251c5ceab710d0220b30e1250b88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Nov 2021 09:59:51 +0100 Subject: [PATCH 0961/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8b1aaa7..8023964 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211122.12-unstable +jellyfin-server20211124.4-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9f00829780acd04eb9fca3c6f1b8d746d40cd5c7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Nov 2021 16:59:32 +0100 Subject: [PATCH 0962/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8023964..a08654b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211124.4-unstable +jellyfin-server20211124.5-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7434a9a4208ee885bd256138929993a30564f7df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Nov 2021 03:33:37 +0100 Subject: [PATCH 0963/2257] 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 fdb71cc..ba4cef9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -94,7 +94,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 libigdgmm1121.2.2+i620~u20.04 libk5crypto31.17-6ubuntu4.1 @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.3 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.4 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From 88d2875bd7a927776c6e0d8b0e563ef0128fd9f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Nov 2021 03:33:58 +0100 Subject: [PATCH 0964/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a08654b..db82f10 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -95,7 +95,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 libigdgmm1120.1.1+ds1-1 libk5crypto31.17-6ubuntu4.1 From 1ff61b299fb199004d5ce4a9694f69a5c8bf681e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Nov 2021 11:00:10 +0100 Subject: [PATCH 0965/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index db82f10..17c608e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211124.5-unstable +jellyfin-server20211126.1-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 97d53ab718109d5ca19515cae4b94a963d1e94c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Nov 2021 03:08:54 +0000 Subject: [PATCH 0966/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 17c608e..59caade 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211126.1-unstable +jellyfin-server20211127.1-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5f1a07f38f0a69b09c22f4734324484f0b6b2bfc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Nov 2021 17:00:18 +0100 Subject: [PATCH 0967/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 59caade..0f64c5f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211127.1-unstable +jellyfin-server20211127.8-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4fa890343af89fd102b7e2200d19f76718d7c2f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 28 Nov 2021 03:14:31 +0100 Subject: [PATCH 0968/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0f64c5f..70e2183 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211127.8-unstable +jellyfin-server20211127.21-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f03172000a66f1d2d296f2d5cc08aa255dc37973 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 29 Nov 2021 14:14:37 +0100 Subject: [PATCH 0969/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 70e2183..7365657 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211127.21-unstable +jellyfin-server20211129.2-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a1a6e5c686520a591c67baa65f913f82e866a7a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Dec 2021 00:00:16 +0100 Subject: [PATCH 0970/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7365657..92023a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211129.2-unstable +jellyfin-server20211130.10-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 4fbb3582e048f1cb0a9195940bc888609c7a2b09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Dec 2021 06:04:27 +0100 Subject: [PATCH 0971/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 92023a3..61e01bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211130.10-unstable +jellyfin-server20211130.11-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ea7f9df18ca0d40103ac2296651218218df977c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Dec 2021 03:33:46 +0100 Subject: [PATCH 0972/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ba4cef9..dfe7df6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.4 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.5 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From 056fc0feab64e086c84cd4ed48ee6e7cbc4d9360 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Dec 2021 03:34:00 +0100 Subject: [PATCH 0973/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 61e01bb..8236ff7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,7 +190,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.4 +mesa-va-drivers21.0.3-0ubuntu0.3~20.04.5 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From 2c3d48cf7c596628fdfaa148633774eda80d7624 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Dec 2021 14:13:16 +0100 Subject: [PATCH 0974/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8236ff7..0a4dc0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211130.11-unstable +jellyfin-server20211202.2-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d56e78ee057f2da6a82aa56ca947bcf138b647df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Dec 2021 20:59:47 +0100 Subject: [PATCH 0975/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0a4dc0e..c387fb0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211202.2-unstable +jellyfin-server20211202.4-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c13680ca1357612338639c2b2b52a58398bae209 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Dec 2021 15:59:29 +0100 Subject: [PATCH 0976/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c387fb0..27ef3c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211202.4-unstable +jellyfin-server20211203.13-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 918d42acb25a6ef0ecdde4d3bfa016cb3e428193 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 5 Dec 2021 02:57:08 +0100 Subject: [PATCH 0977/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 27ef3c3..8440876 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211203.13-unstable +jellyfin-server20211205.1-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 91f19d3246f38981bb39c98d2968e0868d4793bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Dec 2021 10:59:58 +0100 Subject: [PATCH 0978/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8440876..71c28e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211205.1-unstable +jellyfin-server20211206.1-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From eca1674322d07e728e9c9aafa3089143cc0133a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Dec 2021 18:03:17 +0100 Subject: [PATCH 0979/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 71c28e5..3d7471f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211206.1-unstable +jellyfin-server20211206.9-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a9c707a50188b3721439a2f240fb003ad8e489a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 7 Dec 2021 20:00:09 +0100 Subject: [PATCH 0980/2257] 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 3d7471f..f655cd2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211206.9-unstable +jellyfin-server20211207.4-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -146,7 +146,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 From 448e128357c63b9b7a2d9f40cb73e5e039424884 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Dec 2021 20:59:52 +0100 Subject: [PATCH 0981/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f655cd2..2ce0019 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211207.4-unstable +jellyfin-server20211208.7-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ab52a025b8e7bb444ce6d8bac2a376ffd4b7da2d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 9 Dec 2021 03:35:27 +0100 Subject: [PATCH 0982/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dfe7df6..c4eaa93 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -145,7 +145,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 From a98e4e5ff8388c35ba2bbe2a065623b7c3b42a7d Mon Sep 17 00:00:00 2001 From: Roxedus Date: Fri, 10 Dec 2021 08:30:42 +0100 Subject: [PATCH 0983/2257] Move hardware transcoding instruction to app setup --- readme-vars.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 17be826..8acdc38 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -38,10 +38,10 @@ param_env_vars: opt_param_usage_include_env: true opt_param_env_vars: - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} -opt_param_usage_include_vols: true +opt_param_usage_include_vols: false opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } -opt_param_device_map: true +opt_param_device_map: false opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } - { device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } From a086f541c5394375f294b45534825790fe4b43c4 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Fri, 10 Dec 2021 08:50:06 +0100 Subject: [PATCH 0984/2257] Disable template sync --- readme-vars.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme-vars.yml b/readme-vars.yml index 8acdc38..41f7be8 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -113,8 +113,11 @@ app_setup_block: | --device=/dev/video12:/dev/video12 ``` +unraid_template_sync: false + # changelog changelogs: + - { date: "10.12.21:", desc: "Rework readme, disable template sync." } - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } - { date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } From 25cbbf3e31755f161676b17f7267ab6b40550608 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 10 Dec 2021 08:59:06 +0100 Subject: [PATCH 0985/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2ce0019..835714b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211208.7-unstable +jellyfin-server20211210.1-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3faa14030688f88c0b5b0793941c85da29b32a85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 10 Dec 2021 11:44:51 +0100 Subject: [PATCH 0986/2257] Bot Updating Templated Files --- README.md | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/README.md b/README.md index ddbe6e5..6db8827 100644 --- a/README.md +++ b/README.md @@ -133,19 +133,11 @@ services: - /path/to/library:/config - /path/to/tvseries:/data/tvshows - /path/to/movies:/data/movies - - /opt/vc/lib:/opt/vc/lib #optional ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional - devices: - - /dev/dri:/dev/dri #optional - - /dev/vcsm:/dev/vcsm #optional - - /dev/vchiq:/dev/vchiq #optional - - /dev/video10:/dev/video10 #optional - - /dev/video11:/dev/video11 #optional - - /dev/video12:/dev/video12 #optional restart: unless-stopped ``` @@ -165,13 +157,6 @@ docker run -d \ -v /path/to/library:/config \ -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ - -v /opt/vc/lib:/opt/vc/lib `#optional` \ - --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vcsm:/dev/vcsm `#optional` \ - --device /dev/vchiq:/dev/vchiq `#optional` \ - --device /dev/video10:/dev/video10 `#optional` \ - --device /dev/video11:/dev/video11 `#optional` \ - --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/jellyfin ``` @@ -193,13 +178,6 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | -| `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | -| `--device /dev/vcsm` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | -| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding. | -| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | ## Environment variables from files (Docker secrets) @@ -325,6 +303,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **10.12.21:** - Rework readme, disable template sync. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. * **23.06.21:** - Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag. * **21.05.21:** - Add nvidia.icd file to fix missing tonemapping using Nvidia HW. From d20b98c015925b16cc3537f53dc5ba6dacc4899a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 11 Dec 2021 21:00:25 +0100 Subject: [PATCH 0987/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 835714b..a7c40d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211210.1-unstable +jellyfin-server20211211.4-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From de065a3aea2ae5e54a26e744f24bc7199c402332 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 12 Dec 2021 03:26:50 +0100 Subject: [PATCH 0988/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a7c40d5..d508a2a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211211.4-unstable +jellyfin-server20211211.10-unstable jellyfin-web20211122.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 04e3bf403082be1b80ac8ce58ed52716a6d99625 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 16 Dec 2021 03:35:10 +0100 Subject: [PATCH 0989/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4eaa93..44eb308 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 2dcbb202cb0df4f547b40b90312476e1207d38e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 16 Dec 2021 03:35:20 +0100 Subject: [PATCH 0990/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d508a2a..1407903 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -195,7 +195,7 @@ mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -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 0e821bf6af050c8d4139ee86b0ab1c2ab0d87a65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Dec 2021 03:36:40 +0100 Subject: [PATCH 0991/2257] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 50 insertions(+), 38 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index db77bda..8c4266b 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/jellyfin") | .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/jellyfin") | .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/jellyfin",\ @@ -413,22 +420,10 @@ pipeline { "libraryType":"docker",\ "website":"https://github.com/linuxserver/docker-jellyfin",\ "backendUrl":"https://ghcr.io/linuxserver/jellyfin",\ - "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' \ - | jq -r .uuid) + "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' || : 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}:latest 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}:latest 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}:latest \ - ${DELETEIMAGE}:${SEMVER} || : + ${DELETEIMAGE}:latest || : + 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}:latest || : docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --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}:latest 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-latest \ ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:amd64-${SEMVER} \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ ${DELETEIMAGE}:arm32v7-latest \ ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm32v7-${SEMVER} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ ${DELETEIMAGE}:arm64v8-latest \ - ${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 dfc24338c52ea92180518c459213d4cff522be1d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Dec 2021 03:36:56 +0100 Subject: [PATCH 0992/2257] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 50 insertions(+), 38 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d2d3e6e..7aaab4c 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/jellyfin") | .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/jellyfin") | .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/jellyfin",\ @@ -413,22 +420,10 @@ pipeline { "libraryType":"docker",\ "website":"https://github.com/linuxserver/docker-jellyfin",\ "backendUrl":"https://ghcr.io/linuxserver/jellyfin",\ - "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' \ - | jq -r .uuid) + "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' || : 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 84778f680916d447ae7d732354d86e56edf04e67 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Dec 2021 03:38:05 +0100 Subject: [PATCH 0993/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6db8827..9fc61a2 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Find us at: # [linuxserver/jellyfin](https://github.com/linuxserver/docker-jellyfin) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fjellyfin?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fjellyfin) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/packages) From 2b27c7fa4bd321b5be54de0c36c8a8bf0dc5c81e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Dec 2021 03:38:22 +0100 Subject: [PATCH 0994/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 51c6eb7..3825cf1 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Find us at: # [linuxserver/jellyfin](https://github.com/linuxserver/docker-jellyfin) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fjellyfin?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fjellyfin) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/packages) From f7f9bc0da51f42fa760e0f6bc8dd71d6e6e2c900 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Dec 2021 03:41:42 +0100 Subject: [PATCH 0995/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1407903..b1da615 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,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 a87e789bc712b1aa802597547dbd1d46391d4a26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Dec 2021 03:42:00 +0100 Subject: [PATCH 0996/2257] 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 44eb308..4a39429 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.3.3+i620~u20.04 +intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.3.1-4-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 @@ -63,12 +63,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.107-1028 -libdrm-amdgpu12.4.107-1028 -libdrm-common2.4.107-1028 -libdrm-intel12.4.107-1028 -libdrm-nouveau22.4.107-1028 -libdrm-radeon12.4.107-1028 +libdrm22.4.107-1029 +libdrm-amdgpu12.4.107-1029 +libdrm-common2.4.107-1029 +libdrm-intel12.4.107-1029 +libdrm-nouveau22.4.107-1029 +libdrm-radeon12.4.107-1029 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -96,7 +96,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 -libigdgmm1121.2.2+i620~u20.04 +libigdgmm1121.3.3+i643~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -136,7 +136,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 @@ -154,7 +154,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.12.0+i620~u20.04 +libva22.13.0+i643~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From 39d6a2091e39f822cbc41fe122861239003e4f8a Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 25 Dec 2021 14:28:17 -0500 Subject: [PATCH 0997/2257] fix video perm error message --- README.md | 1 + readme-vars.yml | 1 + root/etc/cont-init.d/40-gid-video | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fc61a2..3f45a97 100644 --- a/README.md +++ b/README.md @@ -304,6 +304,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **25.12.21:** - Fix video device group perms error message. * **10.12.21:** - Rework readme, disable template sync. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. * **23.06.21:** - Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag. diff --git a/readme-vars.yml b/readme-vars.yml index 41f7be8..a74409d 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -117,6 +117,7 @@ unraid_template_sync: false # changelog changelogs: + - { date: "25.12.21:", desc: "Fix video device group perms error message." } - { date: "10.12.21:", desc: "Rework readme, disable template sync." } - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 5210ccc..c519926 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -13,7 +13,7 @@ do groupmod -g "$VIDEO_GID" "$VIDEO_NAME" fi usermod -a -G "$VIDEO_NAME" abc - if [ $(stat -c '%A' "${i}" | cut -b 8,9) != "rw" ]; then + if [ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]; then echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n" fi fi From 811eea8879bea060abaa118080765428c546cfa6 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 25 Dec 2021 14:29:38 -0500 Subject: [PATCH 0998/2257] fix video perm error message --- README.md | 1 + readme-vars.yml | 1 + root/etc/cont-init.d/40-gid-video | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3825cf1..84e6cf6 100644 --- a/README.md +++ b/README.md @@ -301,6 +301,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **25.12.21:** - Fix video device group perms error message. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. * **23.06.21:** - Add log message if device permissions are incorrect. Deprecate the `bionic` tag. * **20.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 51328c1..9720ba3 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -98,6 +98,7 @@ app_setup_block: | # changelog changelogs: + - { date: "25.12.21:", desc: "Fix video device group perms error message." } - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Deprecate the `bionic` tag." } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/cont-init.d/40-gid-video index 5210ccc..c519926 100644 --- a/root/etc/cont-init.d/40-gid-video +++ b/root/etc/cont-init.d/40-gid-video @@ -13,7 +13,7 @@ do groupmod -g "$VIDEO_GID" "$VIDEO_NAME" fi usermod -a -G "$VIDEO_NAME" abc - if [ $(stat -c '%A' "${i}" | cut -b 8,9) != "rw" ]; then + if [ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]; then echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n" fi fi From 1531590a5ba104e7f2b4096623a9295a2e042722 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 31 Dec 2021 10:59:58 +0100 Subject: [PATCH 0999/2257] 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 b1da615..a3e2158 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211211.10-unstable -jellyfin-web20211122.1-unstable +jellyfin-server20211231.1-unstable +jellyfin-web20211231.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 700d56fc0a5cbbea3f2c7aa221070c4075fe77a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 31 Dec 2021 18:14:46 +0100 Subject: [PATCH 1000/2257] 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 a3e2158..7e39d65 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211231.1-unstable -jellyfin-web20211231.3-unstable +jellyfin-server20211231.3-unstable +jellyfin-web20211231.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d0640e4b0375ed2006290c250acf7f120c0ed9c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 Jan 2022 01:00:26 +0100 Subject: [PATCH 1001/2257] 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 7e39d65..f5b43f1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211231.3-unstable -jellyfin-web20211231.5-unstable +jellyfin-server20211231.6-unstable +jellyfin-web20211231.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6a2666e9f9a7e57cfcbd8c8e9d0f3c02de95abdb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 2 Jan 2022 12:59:54 +0100 Subject: [PATCH 1002/2257] 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 f5b43f1..253f6ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20211231.6-unstable -jellyfin-web20211231.7-unstable +jellyfin-server20220102.1-unstable +jellyfin-web20220102.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3845ff85466172b12644dddde4d363cf60f78e9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 Jan 2022 00:00:09 +0100 Subject: [PATCH 1003/2257] 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 253f6ac..349b26b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20220102.1-unstable -jellyfin-web20220102.3-unstable +jellyfin-server20220102.2-unstable +jellyfin-web20220102.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6eae3e735e9abdf563c3a2b8d2b89dc1fad294c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 Jan 2022 14:59:11 +0100 Subject: [PATCH 1004/2257] 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 349b26b..776aaf7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20220102.2-unstable -jellyfin-web20220102.7-unstable +jellyfin-server20220103.3-unstable +jellyfin-web20220103.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 76b23d75f452cf26e52b82e831fc92cb79d35975 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 Jan 2022 02:57:03 +0100 Subject: [PATCH 1005/2257] 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 776aaf7..3f14fc2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20220103.3-unstable -jellyfin-web20220103.4-unstable +jellyfin-server20220104.4-unstable +jellyfin-web20220103.25-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c856ed4bcaeaf35017dc8463304567b5fd919e5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Jan 2022 00:58:54 +0100 Subject: [PATCH 1006/2257] 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 3f14fc2..93579b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,9 +38,9 @@ hostname3.23 i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 -jellyfin-ffmpeg4.3.1-4-focal -jellyfin-server20220104.4-unstable -jellyfin-web20220103.25-unstable +jellyfin-ffmpeg4.4.1-1-focal +jellyfin-server20220104.17-unstable +jellyfin-web20220104.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e3525f738b32e3aa18689e42ab2dc8a24240c287 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Jan 2022 14:16:14 +0100 Subject: [PATCH 1007/2257] 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 93579b3..a0e813f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220104.17-unstable -jellyfin-web20220104.13-unstable +jellyfin-server20220105.6-unstable +jellyfin-web20220105.46-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 08f8192c49d22b1ca9c7332154a9328962cc1cc2 Mon Sep 17 00:00:00 2001 From: nyanmisaka Date: Thu, 6 Jan 2022 00:56:25 +0800 Subject: [PATCH 1008/2257] Specify Intel iHD driver versions to avoid mismatched libva errors --- Dockerfile | 10 +++++++++- README.md | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 173ac10..bd81585 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,12 @@ LABEL maintainer="thelamer" ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" +# set Intel iHD driver versions +# https://dgpu-docs.intel.com/releases/index.html +ARG INTEL_LIBVA_VER="2.13.0+i643~u20.04" +ARG INTEL_GMM_VER="21.3.3+i643~u20.04" +ARG INTEL_iHD_VER="21.4.1+i643~u20.04" + RUN \ echo "**** install packages ****" && \ apt-get update && \ @@ -29,7 +35,9 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - intel-media-va-driver-non-free \ + libva2="${INTEL_LIBVA_VER}" \ + libigdgmm11="${INTEL_GMM_VER}" \ + intel-media-va-driver-non-free="${INTEL_iHD_VER}" \ ${JELLYFIN} \ jellyfin-ffmpeg \ jellyfin-web \ diff --git a/README.md b/README.md index 3f45a97..f783316 100644 --- a/README.md +++ b/README.md @@ -304,6 +304,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. * **10.12.21:** - Rework readme, disable template sync. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. From 91b9474f42dd61fa74ac49ef0cd26ebf4513b6a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Jan 2022 18:53:58 +0100 Subject: [PATCH 1009/2257] Bot Updating Templated Files --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index f783316..3f45a97 100644 --- a/README.md +++ b/README.md @@ -304,7 +304,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. * **10.12.21:** - Rework readme, disable template sync. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. From 6760904a2d82711c71995694c2520101d598b31b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Jan 2022 18:58:06 +0100 Subject: [PATCH 1010/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4a39429..4e72fdc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.3.1-4-focal +jellyfin-ffmpeg4.4.1-1-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 krb5-locales1.17-6ubuntu4.1 From 31e12fb6d2f2835770f3a8c251fbc7d0e363223f Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 5 Jan 2022 12:59:50 -0500 Subject: [PATCH 1011/2257] pin intel driver version --- Dockerfile | 13 +++++++++++-- README.md | 1 + readme-vars.yml | 1 + 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 773abd8..ee35e2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,12 @@ LABEL maintainer="thelamer" ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" +# set Intel iHD driver versions +# https://dgpu-docs.intel.com/releases/index.html +ARG INTEL_LIBVA_VER="2.13.0+i643~u20.04" +ARG INTEL_GMM_VER="21.3.3+i643~u20.04" +ARG INTEL_iHD_VER="21.4.1+i643~u20.04" + RUN \ echo "**** install packages ****" && \ apt-get update && \ @@ -20,6 +26,8 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ + echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -28,8 +36,9 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - i965-va-driver \ - intel-media-va-driver-non-free \ + libva2="${INTEL_LIBVA_VER}" \ + libigdgmm11="${INTEL_GMM_VER}" \ + intel-media-va-driver-non-free="${INTEL_iHD_VER}" \ ${JELLYFIN} \ jellyfin-ffmpeg \ jellyfin-web \ diff --git a/README.md b/README.md index 84e6cf6..d867027 100644 --- a/README.md +++ b/README.md @@ -301,6 +301,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. * **23.06.21:** - Add log message if device permissions are incorrect. Deprecate the `bionic` tag. diff --git a/readme-vars.yml b/readme-vars.yml index 9720ba3..1ce7634 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -98,6 +98,7 @@ app_setup_block: | # changelog changelogs: + - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - { date: "25.12.21:", desc: "Fix video device group perms error message." } - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Deprecate the `bionic` tag." } From 74b6205d3aafd6c2c0d4602e2a3b2b1c4cc6e1df Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 5 Jan 2022 13:01:19 -0500 Subject: [PATCH 1012/2257] update readme --- README.md | 1 + readme-vars.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 3f45a97..f783316 100644 --- a/README.md +++ b/README.md @@ -304,6 +304,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. * **10.12.21:** - Rework readme, disable template sync. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. diff --git a/readme-vars.yml b/readme-vars.yml index a74409d..9026367 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -117,6 +117,7 @@ unraid_template_sync: false # changelog changelogs: + - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - { date: "25.12.21:", desc: "Fix video device group perms error message." } - { date: "10.12.21:", desc: "Rework readme, disable template sync." } - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } From 78684b4ebcf8bfe385ec8c5edd223b8f2b875e19 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 5 Jan 2022 13:05:59 -0500 Subject: [PATCH 1013/2257] remove deprecated image mention --- README.md | 3 +-- readme-vars.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f783316..74807ff 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | -| latest | Stable Jellyfin releases - Focal baseimage | -| bionic | DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage | +| latest | Stable Jellyfin releases | | nightly | Nightly Jellyfin releases | ## Application Setup diff --git a/readme-vars.yml b/readme-vars.yml index 9026367..fadecc1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -16,8 +16,7 @@ available_architectures: # development version development_versions: true development_versions_items: - - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } - - { tag: "bionic", desc: "DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage" } + - { tag: "latest", desc: "Stable Jellyfin releases" } - { tag: "nightly", desc: "Nightly Jellyfin releases" } # container parameters From e02c5dde5998ae1878da9361f7ecfdbef6672338 Mon Sep 17 00:00:00 2001 From: aptalca Date: Wed, 5 Jan 2022 13:06:51 -0500 Subject: [PATCH 1014/2257] remove deprecated image mention --- README.md | 3 +-- readme-vars.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d867027..9389baa 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | -| latest | Stable Jellyfin releases - Focal baseimage | -| bionic | DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage | +| latest | Stable Jellyfin releases | | nightly | Unstable Jellyfin releases | ## Application Setup diff --git a/readme-vars.yml b/readme-vars.yml index 1ce7634..78f5cc5 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -16,8 +16,7 @@ available_architectures: # development version development_versions: true development_versions_items: - - { tag: "latest", desc: "Stable Jellyfin releases - Focal baseimage" } - - { tag: "bionic", desc: "DEPRECATED, no longer updated - Stable Jellyfin releases - Bionic baseimage" } + - { tag: "latest", desc: "Stable Jellyfin releases" } - { tag: "nightly", desc: "Unstable Jellyfin releases" } # container parameters From a00037817f67c6c953b71a53ca17811507164e80 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 6 Jan 2022 03:42:29 +0100 Subject: [PATCH 1015/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a0e813f..ce84bb9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,7 +40,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220105.6-unstable -jellyfin-web20220105.46-unstable +jellyfin-web20220105.49-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ecebd7f37133d19fcd3afd51c60b783b2540ac91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Jan 2022 01:01:04 +0100 Subject: [PATCH 1016/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ce84bb9..4bd874b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220105.6-unstable +jellyfin-server20220106.3-unstable jellyfin-web20220105.49-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0e829e5174f01bbd831266a2d3219b3f35497a38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Jan 2022 08:04:26 +0100 Subject: [PATCH 1017/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4bd874b..edb6f25 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220106.3-unstable +jellyfin-server20220107.1-unstable jellyfin-web20220105.49-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1127787ba72cfeca08fea623216bce88470b3758 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Jan 2022 14:15:18 +0100 Subject: [PATCH 1018/2257] 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 edb6f25..5b8a853 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220107.1-unstable -jellyfin-web20220105.49-unstable +jellyfin-server20220107.3-unstable +jellyfin-web20220107.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 344bf8c34b2bed6ebb94a046117e692071f03be3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Jan 2022 21:00:08 +0100 Subject: [PATCH 1019/2257] 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 5b8a853..0ac4530 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,8 +39,8 @@ i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 intel-media-va-driver-non-free20.1.1+ds1-1build1 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220107.3-unstable -jellyfin-web20220107.2-unstable +jellyfin-server20220107.7-unstable +jellyfin-web20220107.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9c11a81751bb5a70a2488616cbaf5d407458bcd7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Jan 2022 22:11:39 +0100 Subject: [PATCH 1020/2257] 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 0ac4530..3e7993d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,12 +35,11 @@ gpg-wks-server2.2.19-3ubuntu2.1 grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 -i965-va-driver2.4.0-0ubuntu1 init-system-helpers1.57 -intel-media-va-driver-non-free20.1.1+ds1-1build1 +intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220107.7-unstable -jellyfin-web20220107.3-unstable +jellyfin-server20220107.9-unstable +jellyfin-web20220107.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -64,12 +63,12 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.7 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.105-3~20.04.2 -libdrm-amdgpu12.4.105-3~20.04.2 -libdrm-common2.4.105-3~20.04.2 -libdrm-intel12.4.105-3~20.04.2 -libdrm-nouveau22.4.105-3~20.04.2 -libdrm-radeon12.4.105-3~20.04.2 +libdrm22.4.107-1029 +libdrm-amdgpu12.4.107-1029 +libdrm-common2.4.107-1029 +libdrm-intel12.4.107-1029 +libdrm-nouveau22.4.107-1029 +libdrm-radeon12.4.107-1029 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 @@ -97,7 +96,7 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 -libigdgmm1120.1.1+ds1-1 +libigdgmm1121.3.3+i643~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -155,7 +154,7 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.13 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 -libva22.7.0-2 +libva22.13.0+i643~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 From c181019a30638ca4a6f7f943fc18cfdba219b08b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 8 Jan 2022 14:14:18 +0100 Subject: [PATCH 1021/2257] 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 3e7993d..592ce17 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220107.9-unstable -jellyfin-web20220107.5-unstable +jellyfin-server20220108.6-unstable +jellyfin-web20220108.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9ee5e52492aed2cc9aa632fe3ec9352d182a6507 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 8 Jan 2022 20:59:23 +0100 Subject: [PATCH 1022/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 592ce17..91eaf8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220108.6-unstable +jellyfin-server20220108.15-unstable jellyfin-web20220108.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9ab17324d68443a42686a40dfb0dd4447046a6a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 9 Jan 2022 15:59:14 +0100 Subject: [PATCH 1023/2257] 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 91eaf8a..c233bd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220108.15-unstable -jellyfin-web20220108.1-unstable +jellyfin-server20220109.3-unstable +jellyfin-web20220109.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From cadc441eeecd98a5c978aa9d805a02f57b6d42d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 Jan 2022 15:00:17 +0100 Subject: [PATCH 1024/2257] 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 c233bd7..e75d8ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220109.3-unstable -jellyfin-web20220109.2-unstable +jellyfin-server20220110.6-unstable +jellyfin-web20220110.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ca00bbdea652ef2c66eff0ae2a9e41214cc2d2ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 11 Jan 2022 02:58:15 +0100 Subject: [PATCH 1025/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e75d8ab..24fe883 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220110.6-unstable +jellyfin-server20220111.2-unstable jellyfin-web20220110.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d6e9a965e6d9da32822436426ba4a351069f3810 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Jan 2022 00:59:29 +0100 Subject: [PATCH 1026/2257] 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 24fe883..73bdf3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220111.2-unstable -jellyfin-web20220110.3-unstable +jellyfin-server20220111.6-unstable +jellyfin-web20220111.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -147,11 +147,11 @@ 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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.13 +libudev1245.4-4ubuntu3.14 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.13.0+i643~u20.04 From 0d6bc4049e2268656a0a0b1a67bd0e06c4ff7c07 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Jan 2022 23:00:20 +0100 Subject: [PATCH 1027/2257] 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 73bdf3e..b25abd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220111.6-unstable -jellyfin-web20220111.10-unstable +jellyfin-server20220112.4-unstable +jellyfin-web20220112.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 18a1e7e309f6a691686245036a7706144196e66c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 13 Jan 2022 03:40:39 +0100 Subject: [PATCH 1028/2257] 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 4e72fdc..9a314b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,11 +147,11 @@ 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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.13 +libudev1245.4-4ubuntu3.14 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.13.0+i643~u20.04 From 51e77c4e97661d434c8f84dfd76aa87f9afd31ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Jan 2022 21:00:06 +0100 Subject: [PATCH 1029/2257] 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 b25abd4..61ab59a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220112.4-unstable -jellyfin-web20220112.7-unstable +jellyfin-server20220114.13-unstable +jellyfin-web20220114.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From cea8fade4a9516f2c72a69622677c3820241ec39 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Jan 2022 03:33:09 +0100 Subject: [PATCH 1030/2257] 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 61ab59a..fa084f5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220114.13-unstable -jellyfin-web20220114.23-unstable +jellyfin-server20220114.16-unstable +jellyfin-web20220114.37-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6f01865c73a90491a1b3728f96b18c55104e0347 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Jan 2022 15:00:38 +0100 Subject: [PATCH 1031/2257] 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 fa084f5..82c0835 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220114.16-unstable -jellyfin-web20220114.37-unstable +jellyfin-server20220115.4-unstable +jellyfin-web20220115.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 23da786b17a88c5c63de0fdcb5993bf1cf935fac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Jan 2022 21:59:09 +0100 Subject: [PATCH 1032/2257] 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 82c0835..e36e00e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220115.4-unstable -jellyfin-web20220115.12-unstable +jellyfin-server20220115.6-unstable +jellyfin-web20220115.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From dc6cbd06c85bd0fa4872812e753f9d1323bb4aea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Jan 2022 09:59:09 +0100 Subject: [PATCH 1033/2257] 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 e36e00e..56717a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220115.6-unstable -jellyfin-web20220115.13-unstable +jellyfin-server20220116.1-unstable +jellyfin-web20220116.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 06de1199f0bc845e858fb6ad1785853157472f21 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 16 Jan 2022 23:59:11 +0100 Subject: [PATCH 1034/2257] 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 56717a6..cf13bb3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220116.1-unstable -jellyfin-web20220116.1-unstable +jellyfin-server20220116.12-unstable +jellyfin-web20220116.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9e5a2d972aaa265b58a2eafd695bed1edc67d522 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 Jan 2022 08:59:07 +0100 Subject: [PATCH 1035/2257] 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 cf13bb3..ce5f3fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220116.12-unstable -jellyfin-web20220116.13-unstable +jellyfin-server20220118.2-unstable +jellyfin-web20220118.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -147,11 +147,11 @@ 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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.14 +libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.13.0+i643~u20.04 From 14c2bdf4ede57007f42398410336959f040adb96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Jan 2022 14:59:50 +0100 Subject: [PATCH 1036/2257] 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 ce5f3fd..2b5ad48 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220118.2-unstable -jellyfin-web20220118.2-unstable +jellyfin-server20220119.3-unstable +jellyfin-web20220119.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2fe07c98c42aa03ccc304a87dc696f50fdff1ada Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Jan 2022 00:00:15 +0100 Subject: [PATCH 1037/2257] 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 2b5ad48..d47de57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220119.3-unstable -jellyfin-web20220119.2-unstable +jellyfin-server20220119.4-unstable +jellyfin-web20220119.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9b7056d7d79232b942575cb828fb5b7b058d4119 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Jan 2022 03:39:24 +0100 Subject: [PATCH 1038/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d47de57..51c4c75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220119.4-unstable -jellyfin-web20220119.6-unstable +jellyfin-web20220120.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5570d809e460c141118d624079efc572ea88292d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Jan 2022 03:39:46 +0100 Subject: [PATCH 1039/2257] 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 9a314b0..fdc0288 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,11 +147,11 @@ 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 libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.14 +libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.1 libva22.13.0+i643~u20.04 From 4394acc6b85a9fe01097d47ffc0dda46b4eb6a02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Jan 2022 09:59:47 +0100 Subject: [PATCH 1040/2257] 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 51c4c75..d8e5bc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220119.4-unstable -jellyfin-web20220120.1-unstable +jellyfin-server20220120.8-unstable +jellyfin-web20220120.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 002baa991dad12173a9d0439ee039bbb6689a9dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Jan 2022 18:08:51 +0100 Subject: [PATCH 1041/2257] 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 d8e5bc8..f7c6743 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220120.8-unstable -jellyfin-web20220120.3-unstable +jellyfin-server20220120.13-unstable +jellyfin-web20220120.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From a52250bf8215b124a31e6d7fdc4fef609f65fc20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 21 Jan 2022 20:59:55 +0100 Subject: [PATCH 1042/2257] 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 f7c6743..bc24cbf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220120.13-unstable -jellyfin-web20220120.7-unstable +jellyfin-server20220121.2-unstable +jellyfin-web20220121.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1ef2ccb5e6941ee33b02978a0f44ef5df69e709c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 22 Jan 2022 18:05:30 +0100 Subject: [PATCH 1043/2257] 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 bc24cbf..7d3376a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220121.2-unstable -jellyfin-web20220121.2-unstable +jellyfin-server20220122.5-unstable +jellyfin-web20220121.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ca027a22a9cad753fd755196fb98190c3ce897a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 23 Jan 2022 00:59:47 +0100 Subject: [PATCH 1044/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7d3376a..b6ca821 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220122.5-unstable +jellyfin-server20220122.16-unstable jellyfin-web20220121.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 851c769b6fd0bef4764d3bcce6b2b921092836d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 25 Jan 2022 18:08:23 +0100 Subject: [PATCH 1045/2257] 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 b6ca821..11e1a8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220122.16-unstable -jellyfin-web20220121.4-unstable +jellyfin-server20220125.1-unstable +jellyfin-web20220123.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c45d651380b23754168f30c2652ea883106350a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 Jan 2022 13:00:07 +0100 Subject: [PATCH 1046/2257] 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 11e1a8a..fa14965 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220125.1-unstable -jellyfin-web20220123.3-unstable +jellyfin-server20220126.1-unstable +jellyfin-web20220125.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ce7572c04162793315fc5d1d7015e9b980e113aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 Jan 2022 13:04:11 +0100 Subject: [PATCH 1047/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fa14965..94e4d7b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220126.1-unstable -jellyfin-web20220125.2-unstable +jellyfin-web20220126.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e050d337f7888f06efda470d1ffcbfcaf4dba482 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 Jan 2022 03:31:31 +0100 Subject: [PATCH 1048/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 94e4d7b..38061d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220126.1-unstable -jellyfin-web20220126.1-unstable +jellyfin-web20220126.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 81bbebaf259f3cc078b6ccf560db8a70eeaf1337 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 Jan 2022 14:11:46 +0100 Subject: [PATCH 1049/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 38061d8..34a61af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220126.1-unstable +jellyfin-server20220127.1-unstable jellyfin-web20220126.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 98ae187ad6ae0a0267bbd068e6f75a9d0eef7945 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Jan 2022 13:00:06 +0100 Subject: [PATCH 1050/2257] 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 34a61af..aaa01bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220127.1-unstable -jellyfin-web20220126.2-unstable +jellyfin-server20220128.2-unstable +jellyfin-web20220128.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f54a7a61faabd8dd10021fc1c1f28caec2da226f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Jan 2022 19:59:07 +0100 Subject: [PATCH 1051/2257] 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 aaa01bd..ae701b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220128.2-unstable -jellyfin-web20220128.2-unstable +jellyfin-server20220128.4-unstable +jellyfin-web20220128.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From cb1acea5767b455cdaa0c99f2b21aea2565c2109 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Feb 2022 22:58:47 +0100 Subject: [PATCH 1052/2257] 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 ae701b7..b97c496 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220128.4-unstable -jellyfin-web20220128.3-unstable +jellyfin-server20220201.1-unstable +jellyfin-web20220201.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d7ceb726a8622db8ee5559cadab5b2beb92de9ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 2 Feb 2022 06:01:23 +0100 Subject: [PATCH 1053/2257] 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 b97c496..4f4664b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220201.1-unstable -jellyfin-web20220201.1-unstable +jellyfin-server20220201.2-unstable +jellyfin-web20220201.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1545fd060c0eb1ee92e9ffeb1af56901b45364e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Feb 2022 00:00:13 +0100 Subject: [PATCH 1054/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f4664b..c2bbd1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220201.2-unstable +jellyfin-server20220202.2-unstable jellyfin-web20220201.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b7083192ed7da3b672d6cd2e5bbea529d4947436 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Feb 2022 21:00:26 +0100 Subject: [PATCH 1055/2257] 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 c2bbd1e..8208a18 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220202.2-unstable -jellyfin-web20220201.2-unstable +jellyfin-server20220204.2-unstable +jellyfin-web20220204.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3098f06d46ca4730fbc23a4eeeedf185f3c3aa7e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Feb 2022 03:04:59 +0100 Subject: [PATCH 1056/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8208a18..6eb0001 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220204.2-unstable +jellyfin-server20220204.5-unstable jellyfin-web20220204.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 14fa5fa5edfc299bd6e3dd575bdbec5ea599742e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Feb 2022 22:59:58 +0100 Subject: [PATCH 1057/2257] 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 6eb0001..abea8bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220204.5-unstable -jellyfin-web20220204.5-unstable +jellyfin-server20220206.3-unstable +jellyfin-web20220206.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0425c9a0867102571ae8752ed08487e14602152b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Feb 2022 05:59:21 +0100 Subject: [PATCH 1058/2257] 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 abea8bd..8fc4e01 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220206.3-unstable -jellyfin-web20220206.1-unstable +jellyfin-server20220206.4-unstable +jellyfin-web20220207.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 733fb462a81c0f9e0a18dde305f7e0101938fc9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Feb 2022 14:07:53 +0100 Subject: [PATCH 1059/2257] 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 8fc4e01..a70854d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220206.4-unstable -jellyfin-web20220207.1-unstable +jellyfin-server20220208.2-unstable +jellyfin-web20220208.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 03da0abf02d6eeacd339d494ca1da90af34a6192 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Feb 2022 20:59:39 +0100 Subject: [PATCH 1060/2257] 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 a70854d..43929af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220208.2-unstable -jellyfin-web20220208.3-unstable +jellyfin-server20220208.3-unstable +jellyfin-web20220208.106-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 308c566bbb2f55d97af1e9d92863d72a9a0ff78c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Feb 2022 20:00:53 +0100 Subject: [PATCH 1061/2257] 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 43929af..55772c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220208.3-unstable -jellyfin-web20220208.106-unstable +jellyfin-server20220209.6-unstable +jellyfin-web20220209.103-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From bfbc68b6eb75a03be919c8d0185a3f65dda51d26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Feb 2022 03:31:14 +0100 Subject: [PATCH 1062/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 55772c1..2084882 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220209.6-unstable -jellyfin-web20220209.103-unstable +jellyfin-web20220209.128-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6931252a1af15921ee23fe4307e9f0f5e56d62e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Feb 2022 06:00:13 +0100 Subject: [PATCH 1063/2257] 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 2084882..012ebce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220209.6-unstable -jellyfin-web20220209.128-unstable +jellyfin-server20220212.1-unstable +jellyfin-web20220212.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.5 +mesa-va-drivers21.2.6-0ubuntu0.1~20.04.1 mount2.34-0.1ubuntu9.1 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From d5326c57bee313435b6c4d8e0a4400365578c4d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Feb 2022 21:00:00 +0100 Subject: [PATCH 1064/2257] 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 012ebce..cc8b96b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220212.1-unstable -jellyfin-web20220212.27-unstable +jellyfin-server20220212.5-unstable +jellyfin-web20220212.61-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b69b5d2903075be633e8f322dc1353c124fe5bde Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Feb 2022 14:59:25 +0100 Subject: [PATCH 1065/2257] 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 cc8b96b..632001f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220212.5-unstable -jellyfin-web20220212.61-unstable +jellyfin-server20220214.19-unstable +jellyfin-web20220214.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9806760ee8e2afc201e485d6614933d668c0ca42 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Feb 2022 21:59:00 +0100 Subject: [PATCH 1066/2257] 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 632001f..1e19a60 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220214.19-unstable -jellyfin-web20220214.14-unstable +jellyfin-server20220214.24-unstable +jellyfin-web20220214.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4e216c868e067f792ab5771d931199605edf8d15 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Feb 2022 04:58:59 +0100 Subject: [PATCH 1067/2257] 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 1e19a60..f4ed4e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220214.24-unstable -jellyfin-web20220214.27-unstable +jellyfin-server20220215.1-unstable +jellyfin-web20220214.57-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ccbb36e1528c192a83343259c89e2afba7825eaa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Feb 2022 12:00:17 +0100 Subject: [PATCH 1068/2257] 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 f4ed4e1..4ad275c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ at3.1.23-1ubuntu1 base-files11ubuntu5.4 base-passwd3.5.47 bash5.0-6ubuntu1.1 -bsdutils1:2.34-0.1ubuntu9.1 +bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 @@ -17,7 +17,7 @@ diffutils1:3.7-3 dirmngr2.2.19-3ubuntu2.1 dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 -fdisk2.34-0.1ubuntu9.1 +fdisk2.34-0.1ubuntu9.3 findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220215.1-unstable -jellyfin-web20220214.57-unstable +jellyfin-server20220215.2-unstable +jellyfin-web20220215.27-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -49,7 +49,7 @@ 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 +libblkid12.34-0.1ubuntu9.3 libbluray21:1.2.0-1 libbrotli11.0.7-6ubuntu0.1 libbsd00.10.0-1 @@ -73,7 +73,7 @@ libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 libext2fs21.45.5-2ubuntu1 -libfdisk12.34-0.1ubuntu9.1 +libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 @@ -108,7 +108,7 @@ libldap-common2.4.49+dfsg-2ubuntu1.8 libllvm121:12.0.0-3ubuntu1~20.04.4 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 -libmount12.34-0.1ubuntu9.1 +libmount12.34-0.1ubuntu9.3 libmp3lame03.100-3 libncurses66.2-0ubuntu2 libncursesw66.2-0ubuntu2 @@ -141,7 +141,7 @@ libselinux13.0-1build2 libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 -libsmartcols12.34-0.1ubuntu9.1 +libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 @@ -153,7 +153,7 @@ libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 -libuuid12.34-0.1ubuntu9.1 +libuuid12.34-0.1ubuntu9.3 libva22.13.0+i643~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 @@ -190,7 +190,7 @@ logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 mesa-va-drivers21.2.6-0ubuntu0.1~20.04.1 -mount2.34-0.1ubuntu9.1 +mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 @@ -208,5 +208,5 @@ tar1.30+dfsg-7ubuntu0.20.04.1 tzdata2021e-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 -util-linux2.34-0.1ubuntu9.1 +util-linux2.34-0.1ubuntu9.3 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From 777c25befdd5e5304af3db41821000f98b804524 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Feb 2022 03:27:31 +0100 Subject: [PATCH 1069/2257] 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 fdc0288..b2079a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ at3.1.23-1ubuntu1 base-files11ubuntu5.4 base-passwd3.5.47 bash5.0-6ubuntu1.1 -bsdutils1:2.34-0.1ubuntu9.1 +bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 @@ -17,7 +17,7 @@ diffutils1:3.7-3 dirmngr2.2.19-3ubuntu2.1 dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 -fdisk2.34-0.1ubuntu9.1 +fdisk2.34-0.1ubuntu9.3 findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 @@ -49,7 +49,7 @@ 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 +libblkid12.34-0.1ubuntu9.3 libbluray21:1.2.0-1 libbrotli11.0.7-6ubuntu0.1 libbsd00.10.0-1 @@ -73,7 +73,7 @@ libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1build1 libext2fs21.45.5-2ubuntu1 -libfdisk12.34-0.1ubuntu9.1 +libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 @@ -108,7 +108,7 @@ libldap-common2.4.49+dfsg-2ubuntu1.8 libllvm121:12.0.0-3ubuntu1~20.04.4 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 -libmount12.34-0.1ubuntu9.1 +libmount12.34-0.1ubuntu9.3 libmp3lame03.100-3 libncurses66.2-0ubuntu2 libncursesw66.2-0ubuntu2 @@ -141,7 +141,7 @@ libselinux13.0-1build2 libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 -libsmartcols12.34-0.1ubuntu9.1 +libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 @@ -153,7 +153,7 @@ libtheora01.1.1+dfsg.1-15ubuntu2 libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 -libuuid12.34-0.1ubuntu9.1 +libuuid12.34-0.1ubuntu9.3 libva22.13.0+i643~u20.04 libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 @@ -189,8 +189,8 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.0.3-0ubuntu0.3~20.04.5 -mount2.34-0.1ubuntu9.1 +mesa-va-drivers21.2.6-0ubuntu0.1~20.04.1 +mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 @@ -208,5 +208,5 @@ tar1.30+dfsg-7ubuntu0.20.04.1 tzdata2021e-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 -util-linux2.34-0.1ubuntu9.1 +util-linux2.34-0.1ubuntu9.3 zlib1g1:1.2.11.dfsg-2ubuntu1.2 From ff4a35433c16a51c870c508919014868ef63a3b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Feb 2022 03:27:47 +0100 Subject: [PATCH 1070/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4ad275c..2a88acd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220215.2-unstable -jellyfin-web20220215.27-unstable +jellyfin-web20220216.41-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 47afc8a03fe9a2af51fc646bbdad87f720665ee6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Feb 2022 10:00:04 +0100 Subject: [PATCH 1071/2257] 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 2a88acd..daeeed3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220215.2-unstable -jellyfin-web20220216.41-unstable +jellyfin-server20220217.5-unstable +jellyfin-web20220217.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0fc892242b61453aa1f11d746f49284ee1374519 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Feb 2022 02:58:23 +0100 Subject: [PATCH 1072/2257] 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 daeeed3..6b81096 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220217.5-unstable -jellyfin-web20220217.3-unstable +jellyfin-server20220218.1-unstable +jellyfin-web20220217.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8ab06eead1cad00aa0fbba181d438ec515eac937 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Feb 2022 18:03:15 +0100 Subject: [PATCH 1073/2257] 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 6b81096..99f1bd0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220218.1-unstable -jellyfin-web20220217.23-unstable +jellyfin-server20220219.3-unstable +jellyfin-web20220219.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6a1f0ce77b656efd4f4dcc3b3ea69f0d9aac464c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Feb 2022 18:02:40 +0100 Subject: [PATCH 1074/2257] 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 99f1bd0..d77beac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220219.3-unstable -jellyfin-web20220219.1-unstable +jellyfin-server20220220.3-unstable +jellyfin-web20220220.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2c5ccbd6b261467abe2a370319d0c4adc88f1768 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Feb 2022 00:58:52 +0100 Subject: [PATCH 1075/2257] 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 d77beac..4d4baf6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220220.3-unstable -jellyfin-web20220220.4-unstable +jellyfin-server20220220.4-unstable +jellyfin-web20220220.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7ff55c6ce775d8db92cb422b322bc8364050c98c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Feb 2022 16:01:17 +0100 Subject: [PATCH 1076/2257] 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 4d4baf6..f2ac430 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220220.4-unstable -jellyfin-web20220220.5-unstable +jellyfin-server20220221.8-unstable +jellyfin-web20220221.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 522653efe23ed871d7a2c635682e02ab6f660148 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Feb 2022 22:58:58 +0100 Subject: [PATCH 1077/2257] 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 f2ac430..67983d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220221.8-unstable -jellyfin-web20220221.8-unstable +jellyfin-server20220221.10-unstable +jellyfin-web20220221.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -71,7 +71,7 @@ libdrm-nouveau22.4.107-1029 libdrm-radeon12.4.107-1029 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1build1 +libexpat12.2.9-1ubuntu0.2 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 From b051994e38ffe98c593a5895c64ac2db2233b90e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Feb 2022 03:37:09 +0100 Subject: [PATCH 1078/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b2079a8..f4f7605 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -71,7 +71,7 @@ libdrm-nouveau22.4.107-1029 libdrm-radeon12.4.107-1029 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1build1 +libexpat12.2.9-1ubuntu0.2 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 From 9cebb1083eafc1e7672bb662add2a60ed1014f84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Feb 2022 03:37:47 +0100 Subject: [PATCH 1079/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 67983d2..5f0925c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal jellyfin-server20220221.10-unstable -jellyfin-web20220221.22-unstable +jellyfin-web20220224.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d6870897079ce77c111d29a322d3e2512b9a7304 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 26 Feb 2022 15:59:22 +0100 Subject: [PATCH 1080/2257] 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 5f0925c..7912ee2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220221.10-unstable -jellyfin-web20220224.1-unstable +jellyfin-server20220226.1-unstable +jellyfin-web20220226.16-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b9ae1e051b500546e57bc84ae70162f2b0dc8824 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 26 Feb 2022 22:59:26 +0100 Subject: [PATCH 1081/2257] 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 7912ee2..60171b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-1-focal -jellyfin-server20220226.1-unstable +jellyfin-ffmpeg4.4.1-2-focal +jellyfin-server20220226.2-unstable jellyfin-web20220226.16-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ff527e293c764cd8898f2c26eaf89817d2a991cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Feb 2022 17:00:07 +0100 Subject: [PATCH 1082/2257] 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 60171b5..72a2423 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220226.2-unstable -jellyfin-web20220226.16-unstable +jellyfin-server20220228.12-unstable +jellyfin-web20220228.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 39774f51a2a6cc6a862ae8b3928f4d1a503f78b9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Feb 2022 23:59:11 +0100 Subject: [PATCH 1083/2257] 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 72a2423..f584063 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220228.12-unstable -jellyfin-web20220228.14-unstable +jellyfin-server20220228.15-unstable +jellyfin-web20220228.22-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 07cf4501cd4282b3f494ee19477b954bc2684c1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Mar 2022 07:00:29 +0100 Subject: [PATCH 1084/2257] 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 f584063..8a30623 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220228.15-unstable -jellyfin-web20220228.22-unstable +jellyfin-server20220301.9-unstable +jellyfin-web20220301.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -133,9 +133,9 @@ 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 +libsasl2-22.1.27+dfsg-2ubuntu0.1 +libsasl2-modules2.1.27+dfsg-2ubuntu0.1 +libsasl2-modules-db2.1.27+dfsg-2ubuntu0.1 libseccomp22.5.1-1ubuntu1~20.04.2 libselinux13.0-1build2 libsemanage13.0-1build2 From aad576257e3662c03c1e34dd1dc251a2852b8caa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Mar 2022 14:13:55 +0100 Subject: [PATCH 1085/2257] 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 8a30623..3b6968c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220301.9-unstable -jellyfin-web20220301.4-unstable +jellyfin-server20220301.13-unstable +jellyfin-web20220301.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2e0cc17e465e140427c54ac8788fdea5fe33fc3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Mar 2022 20:58:58 +0100 Subject: [PATCH 1086/2257] 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 3b6968c..467e047 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220301.13-unstable -jellyfin-web20220301.7-unstable +jellyfin-server20220301.17-unstable +jellyfin-web20220301.20-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 46e747050236210540c90d07069ba57ad2e2d99a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 2 Mar 2022 17:00:14 +0100 Subject: [PATCH 1087/2257] 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 467e047..c25f15b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220301.17-unstable -jellyfin-web20220301.20-unstable +jellyfin-server20220302.1-unstable +jellyfin-web20220302.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f8911bca1beada49c4123627f6e4a57250d6af1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Mar 2022 03:44:28 +0100 Subject: [PATCH 1088/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c25f15b..0e23b73 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal jellyfin-server20220302.1-unstable -jellyfin-web20220302.6-unstable +jellyfin-web20220302.11-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0a1d2a91f3a0e8ac29a32752b5c26bf858a67a76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Mar 2022 03:44:45 +0100 Subject: [PATCH 1089/2257] 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 f4f7605..fef2196 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-1-focal +jellyfin-ffmpeg4.4.1-2-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 krb5-locales1.17-6ubuntu4.1 @@ -133,9 +133,9 @@ 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 +libsasl2-22.1.27+dfsg-2ubuntu0.1 +libsasl2-modules2.1.27+dfsg-2ubuntu0.1 +libsasl2-modules-db2.1.27+dfsg-2ubuntu0.1 libseccomp22.5.1-1ubuntu1~20.04.2 libselinux13.0-1build2 libsemanage13.0-1build2 From c6476bdc3b10f8d4a9f398058c408309d425d698 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Mar 2022 14:13:11 +0100 Subject: [PATCH 1090/2257] 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 0e23b73..e61b4ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220302.1-unstable -jellyfin-web20220302.11-unstable +jellyfin-server20220303.2-unstable +jellyfin-web20220303.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 442a1ed7fba9f995bfea048c98566d5daea56557 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Mar 2022 20:59:33 +0100 Subject: [PATCH 1091/2257] 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 e61b4ee..23b4b38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220303.2-unstable -jellyfin-web20220303.3-unstable +jellyfin-server20220303.3-unstable +jellyfin-web20220303.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9f69c26f7b4ccaaaa4cb296d3149a95297ae0c9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Mar 2022 03:11:25 +0100 Subject: [PATCH 1092/2257] 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 23b4b38..d953fbd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220303.3-unstable -jellyfin-web20220303.13-unstable +jellyfin-server20220304.1-unstable +jellyfin-web20220303.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d4d4e218c2efc2215475943dc4135e5f2aa7ef99 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Mar 2022 09:59:29 +0100 Subject: [PATCH 1093/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d953fbd..1fa53e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220304.1-unstable +jellyfin-server20220304.2-unstable jellyfin-web20220303.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 55ebf7f722513eef91e32ce7f474774b17897bcd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Mar 2022 09:59:57 +0100 Subject: [PATCH 1094/2257] 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 1fa53e9..b8acf3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220304.2-unstable -jellyfin-web20220303.19-unstable +jellyfin-server20220305.1-unstable +jellyfin-web20220305.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0a7c4228beda6c50c2834309c02037016f95f6ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Mar 2022 19:59:29 +0100 Subject: [PATCH 1095/2257] 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 b8acf3d..65536d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220305.1-unstable -jellyfin-web20220305.1-unstable +jellyfin-server20220305.5-unstable +jellyfin-web20220305.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 86460f5e4cc20fd5346f88313b26a13afaf3f9ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Mar 2022 03:01:32 +0100 Subject: [PATCH 1096/2257] 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 65536d8..182ecbf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220305.5-unstable -jellyfin-web20220305.3-unstable +jellyfin-server20220305.6-unstable +jellyfin-web20220305.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7d91153c8b17c02cfd62eb2fe186c52e868e6264 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Mar 2022 16:28:24 +0100 Subject: [PATCH 1097/2257] 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 182ecbf..a0076c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220305.6-unstable -jellyfin-web20220305.8-unstable +jellyfin-server20220306.3-unstable +jellyfin-web20220306.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 58678929b03268b8edbe42fdcd39395114444e62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Mar 2022 17:00:00 +0100 Subject: [PATCH 1098/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a0076c5..4b7c95b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal jellyfin-server20220306.3-unstable -jellyfin-web20220306.4-unstable +jellyfin-web20220306.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4bffeeab9201563eb9489c14a37f190d65ef41e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 6 Mar 2022 17:06:29 +0100 Subject: [PATCH 1099/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4b7c95b..9e0e44a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal jellyfin-server20220306.3-unstable -jellyfin-web20220306.5-unstable +jellyfin-web20220306.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0693896631008acd62be31bcfd4a88bd1d40c941 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Mar 2022 00:01:27 +0100 Subject: [PATCH 1100/2257] 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 9e0e44a..24b5f7c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220306.3-unstable -jellyfin-web20220306.6-unstable +jellyfin-server20220306.6-unstable +jellyfin-web20220306.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 37832bdf26bf3f2890769d434df96d7f20d20684 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Mar 2022 14:59:27 +0100 Subject: [PATCH 1101/2257] 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 24b5f7c..bde5e81 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220306.6-unstable -jellyfin-web20220306.7-unstable +jellyfin-server20220307.14-unstable +jellyfin-web20220307.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -145,7 +145,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.10 +libssl1.11.1.1f-1ubuntu2.11 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From a82ab8009e6793f35adb9d833fa6c5058ff1d30c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Mar 2022 21:59:12 +0100 Subject: [PATCH 1102/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bde5e81..b45f160 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220307.14-unstable +jellyfin-server20220307.30-unstable jellyfin-web20220307.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2a2101b7061aabeb395dfa55172a8894e16882b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Mar 2022 04:58:51 +0100 Subject: [PATCH 1103/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b45f160..d26b41b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220307.30-unstable +jellyfin-server20220307.31-unstable jellyfin-web20220307.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 20101e40fff84d205ddf6cddf591a49c7561042a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Mar 2022 17:00:00 +0100 Subject: [PATCH 1104/2257] 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 d26b41b..82c44d1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu2 apt2.0.6 apt-utils2.0.6 at3.1.23-1ubuntu1 -base-files11ubuntu5.4 +base-files11ubuntu5.5 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.3 @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220307.31-unstable -jellyfin-web20220307.4-unstable +jellyfin-server20220308.3-unstable +jellyfin-web20220308.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -54,10 +54,10 @@ libbluray21:1.2.0-1 libbrotli11.0.7-6ubuntu0.1 libbsd00.10.0-1 libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.2 +libc62.31-0ubuntu9.7 libcairo21.16.0-4ubuntu1 libcap-ng00.7.9-2.1build1 -libc-bin2.31-0ubuntu9.2 +libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.7 @@ -184,7 +184,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.2 +locales2.31-0ubuntu9.7 login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.10 +openssl1.1.1f-1ubuntu2.11 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From acf7db9dd164d3a11046aeb8b41adb288b6a82c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Mar 2022 23:59:57 +0100 Subject: [PATCH 1105/2257] 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 82c44d1..c109937 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220308.3-unstable -jellyfin-web20220308.3-unstable +jellyfin-server20220308.6-unstable +jellyfin-web20220308.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e624c504d3eabda05f1cbbc749c734fe98a8e440 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Mar 2022 03:48:53 +0100 Subject: [PATCH 1106/2257] 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 fef2196..369c01b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu2 apt2.0.6 apt-utils2.0.6 at3.1.23-1ubuntu1 -base-files11ubuntu5.4 +base-files11ubuntu5.5 base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.3 @@ -54,10 +54,10 @@ libbluray21:1.2.0-1 libbrotli11.0.7-6ubuntu0.1 libbsd00.10.0-1 libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.2 +libc62.31-0ubuntu9.7 libcairo21.16.0-4ubuntu1 libcap-ng00.7.9-2.1build1 -libc-bin2.31-0ubuntu9.2 +libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.7 @@ -145,7 +145,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.10 +libssl1.11.1.1f-1ubuntu2.11 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 @@ -184,7 +184,7 @@ libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.2 +locales2.31-0ubuntu9.7 login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.10 +openssl1.1.1f-1ubuntu2.11 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 79801957dc13262dbafbfcf4f25f2390f7b0b43c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Mar 2022 20:48:55 -0600 Subject: [PATCH 1107/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c109937..405bf8e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-2-focal jellyfin-server20220308.6-unstable -jellyfin-web20220308.12-unstable +jellyfin-web20220310.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1685eccf44adb604668b475cd6a153544e451196 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Mar 2022 13:01:21 -0600 Subject: [PATCH 1108/2257] 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 405bf8e..ce11890 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,9 +37,9 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-2-focal -jellyfin-server20220308.6-unstable -jellyfin-web20220310.2-unstable +jellyfin-ffmpeg4.4.1-3-focal +jellyfin-server20220310.5-unstable +jellyfin-web20220310.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -71,7 +71,7 @@ libdrm-nouveau22.4.107-1029 libdrm-radeon12.4.107-1029 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.2 +libexpat12.2.9-1ubuntu0.4 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 @@ -105,7 +105,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 -libllvm121:12.0.0-3ubuntu1~20.04.4 +libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.3 @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.2.6-0ubuntu0.1~20.04.1 +mesa-va-drivers21.2.6-0ubuntu0.1~20.04.2 mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From ecd7915fa9675ce6ac2ad5ac868cdedb591908bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Mar 2022 03:07:26 +0100 Subject: [PATCH 1109/2257] 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 ce11890..0bccfd1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220310.5-unstable -jellyfin-web20220310.13-unstable +jellyfin-server20220310.9-unstable +jellyfin-web20220310.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 86e2c792ea98fb21f2c350593ebeaf95c5cec018 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Mar 2022 02:59:41 -0600 Subject: [PATCH 1110/2257] 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 0bccfd1..e0e6c54 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220310.9-unstable -jellyfin-web20220310.15-unstable +jellyfin-server20220311.3-unstable +jellyfin-web20220311.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7dbda84821e6dc1bdfbaa74ef030d668bb040a13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Mar 2022 09:59:15 -0600 Subject: [PATCH 1111/2257] 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 e0e6c54..feb5422 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220311.3-unstable -jellyfin-web20220311.1-unstable +jellyfin-server20220311.8-unstable +jellyfin-web20220311.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5b690e5bf266c41f4938277d62ce2cefc99f4f9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Mar 2022 00:00:24 +0100 Subject: [PATCH 1112/2257] 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 feb5422..3614fbb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220311.8-unstable -jellyfin-web20220311.6-unstable +jellyfin-server20220311.11-unstable +jellyfin-web20220311.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e8ffc8b8b60ff15e5e76ebfb43033b3109c4c5a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Mar 2022 23:00:40 -0600 Subject: [PATCH 1113/2257] 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 3614fbb..69b5f50 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220311.11-unstable -jellyfin-web20220311.7-unstable +jellyfin-server20220312.1-unstable +jellyfin-web20220311.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5d4e1107e7158aec1c7ee96bdbdf88c25b74a084 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Mar 2022 18:03:59 +0100 Subject: [PATCH 1114/2257] 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 69b5f50..2a4a3e2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220312.1-unstable -jellyfin-web20220311.10-unstable +jellyfin-server20220312.7-unstable +jellyfin-web20220312.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From baddc6f4d839ae8317fdc6648215c7201aaf01f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Mar 2022 17:59:18 -0600 Subject: [PATCH 1115/2257] 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 2a4a3e2..ccfbc3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220312.7-unstable -jellyfin-web20220312.4-unstable +jellyfin-server20220312.11-unstable +jellyfin-web20220312.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 284fe82d6978622f009f3feb0b4a5135d726e606 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Mar 2022 14:59:24 -0500 Subject: [PATCH 1116/2257] 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 ccfbc3e..b83c75a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220312.11-unstable -jellyfin-web20220312.9-unstable +jellyfin-server20220313.3-unstable +jellyfin-web20220313.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f08133d27e675b2715b50d88bc2b9cac58388200 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Mar 2022 23:00:19 +0100 Subject: [PATCH 1117/2257] 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 b83c75a..e483be5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220313.3-unstable -jellyfin-web20220313.6-unstable +jellyfin-server20220314.5-unstable +jellyfin-web20220314.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -178,7 +178,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.1 +libxml22.9.10+dfsg-5ubuntu0.20.04.2 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From 3adae9c38da4666d89f3bf28e38e1cdec7fdaa52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Mar 2022 03:42:38 +0100 Subject: [PATCH 1118/2257] 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 369c01b..8eb7553 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-2-focal +jellyfin-ffmpeg4.4.1-3-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 krb5-locales1.17-6ubuntu4.1 @@ -71,7 +71,7 @@ libdrm-nouveau22.4.107-1029 libdrm-radeon12.4.107-1029 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.2 +libexpat12.2.9-1ubuntu0.4 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 @@ -105,7 +105,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 -libllvm121:12.0.0-3ubuntu1~20.04.4 +libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 libmount12.34-0.1ubuntu9.3 @@ -145,7 +145,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.11 +libssl1.11.1.1f-1ubuntu2.12 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 @@ -178,7 +178,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.1 +libxml22.9.10+dfsg-5ubuntu0.20.04.2 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 @@ -189,7 +189,7 @@ login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 mawk1.3.4.20200120-2 -mesa-va-drivers21.2.6-0ubuntu0.1~20.04.1 +mesa-va-drivers21.2.6-0ubuntu0.1~20.04.2 mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 From e90b0ccf986c16f17da62f48a14a78f350ca7c73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Mar 2022 21:43:27 -0500 Subject: [PATCH 1119/2257] 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 e483be5..40d1417 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal jellyfin-server20220314.5-unstable -jellyfin-web20220314.6-unstable +jellyfin-web20220316.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -145,7 +145,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.11 +libssl1.11.1.1f-1ubuntu2.12 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From d67157475b6c5229ea4b46e82777c80c93f0b01f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Mar 2022 03:59:41 -0500 Subject: [PATCH 1120/2257] 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 40d1417..f72b8c8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220314.5-unstable -jellyfin-web20220316.5-unstable +jellyfin-server20220317.2-unstable +jellyfin-web20220317.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From bb4c3df2a754e79442ecd61dc7798accedba7574 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Mar 2022 11:59:15 +0100 Subject: [PATCH 1121/2257] 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 f72b8c8..135ebe0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220317.2-unstable -jellyfin-web20220317.1-unstable +jellyfin-server20220318.2-unstable +jellyfin-web20220318.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e17ca2e3cb2ea3005ce68c10d3f85702339ef07e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 18 Mar 2022 12:07:05 -0500 Subject: [PATCH 1122/2257] 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 135ebe0..16e2d15 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220318.2-unstable -jellyfin-web20220318.4-unstable +jellyfin-server20220318.3-unstable +jellyfin-web20220318.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3ea9957bdd6c1d6d573019957c7adc5c9eafc01f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Mar 2022 00:59:09 +0100 Subject: [PATCH 1123/2257] 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 16e2d15..cc4a2e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220318.3-unstable -jellyfin-web20220318.7-unstable +jellyfin-server20220318.12-unstable +jellyfin-web20220318.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0356d38f10e353f28a21bdaf7a639c1617b130b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Mar 2022 12:04:54 -0500 Subject: [PATCH 1124/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cc4a2e6..ff08357 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220318.12-unstable +jellyfin-server20220319.4-unstable jellyfin-web20220318.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9a5c90d10e03e06b2467fd2794394de5dd082446 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Mar 2022 00:59:21 +0100 Subject: [PATCH 1125/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ff08357..53b21da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220319.4-unstable +jellyfin-server20220319.8-unstable jellyfin-web20220318.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 176f331990e4c9c63459ff022c9db3a29853bd30 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Mar 2022 09:58:59 +0100 Subject: [PATCH 1126/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 53b21da..197af54 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220319.8-unstable +jellyfin-server20220320.2-unstable jellyfin-web20220318.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3d7c4ee5fd5d03d3ee2265cfc7cd286cf29e9778 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 20 Mar 2022 16:59:09 +0100 Subject: [PATCH 1127/2257] 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 197af54..5d17d64 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220320.2-unstable -jellyfin-web20220318.8-unstable +jellyfin-server20220320.3-unstable +jellyfin-web20220320.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c5f410a617be9396d76dae70728b8bf688d11dd5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Mar 2022 19:00:14 +0100 Subject: [PATCH 1128/2257] 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 5d17d64..de982ff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220320.3-unstable -jellyfin-web20220320.2-unstable +jellyfin-server20220321.8-unstable +jellyfin-web20220321.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 6b2174fd7b4562cdac4deed30cd900a53ae5e456 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Mar 2022 21:23:08 -0500 Subject: [PATCH 1129/2257] 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 de982ff..53c90c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220321.8-unstable -jellyfin-web20220321.7-unstable +jellyfin-server20220323.2-unstable +jellyfin-web20220322.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.11 +openssl1.1.1f-1ubuntu2.12 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 @@ -204,7 +204,7 @@ readline-common8.0-4 sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 -tar1.30+dfsg-7ubuntu0.20.04.1 +tar1.30+dfsg-7ubuntu0.20.04.2 tzdata2021e-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 From c912156ead15a7f4e1476108925a787671cd477c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Mar 2022 14:59:21 -0500 Subject: [PATCH 1130/2257] 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 53c90c1..631f4dd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220323.2-unstable -jellyfin-web20220322.1-unstable +jellyfin-server20220323.6-unstable +jellyfin-web20220323.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8e8f85ede20c3611cec3ea9ff4000592c1ad12cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Mar 2022 03:17:49 +0100 Subject: [PATCH 1131/2257] 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 631f4dd..e09281f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,9 +37,9 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-3-focal -jellyfin-server20220323.6-unstable -jellyfin-web20220323.3-unstable +jellyfin-ffmpeg4.4.1-4-focal +jellyfin-server20220324.1-unstable +jellyfin-web20220323.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d88ce2676c7ac271c65085bcfe410ece79bdbee6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Mar 2022 03:51:13 +0100 Subject: [PATCH 1132/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e09281f..50cd10e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220324.1-unstable -jellyfin-web20220323.4-unstable +jellyfin-web20220324.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 449059065df22ff985ae5a3c575192223f8caa1c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Mar 2022 21:51:26 -0500 Subject: [PATCH 1133/2257] 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 8eb7553..1de6baa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-3-focal +jellyfin-ffmpeg4.4.1-4-focal jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 krb5-locales1.17-6ubuntu4.1 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.11 +openssl1.1.1f-1ubuntu2.12 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 @@ -204,7 +204,7 @@ readline-common8.0-4 sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 -tar1.30+dfsg-7ubuntu0.20.04.1 +tar1.30+dfsg-7ubuntu0.20.04.2 tzdata2021e-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 From 1e1d14339dbddb6d19b140f1500a1b75427aff4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Mar 2022 00:59:27 +0100 Subject: [PATCH 1134/2257] 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 50cd10e..99dfd2d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220324.1-unstable -jellyfin-web20220324.3-unstable +jellyfin-server20220326.8-unstable +jellyfin-web20220325.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5722b4cd4d726e83f898ea15dc03bd305fe04e5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Mar 2022 16:59:22 -0500 Subject: [PATCH 1135/2257] 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 99dfd2d..021a662 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220326.8-unstable -jellyfin-web20220325.7-unstable +jellyfin-server20220327.5-unstable +jellyfin-web20220327.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From fb1196f629cc5b4a72976e2354d2dfeb68ac4db0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Mar 2022 10:59:16 -0500 Subject: [PATCH 1136/2257] 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 021a662..6200e63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220327.5-unstable -jellyfin-web20220327.1-unstable +jellyfin-server20220328.10-unstable +jellyfin-web20220328.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2a4d5f72d12398a163a12a73ebd91b2adeb3de3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Mar 2022 17:59:45 -0500 Subject: [PATCH 1137/2257] 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 6200e63..91be6a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220328.10-unstable -jellyfin-web20220328.7-unstable +jellyfin-server20220328.12-unstable +jellyfin-web20220328.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1cda06aa6984fe585fd3496f0733ad8b2354ba98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Mar 2022 08:19:07 -0500 Subject: [PATCH 1138/2257] 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 91be6a9..b39f04b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220328.12-unstable +jellyfin-server20220329.4-unstable jellyfin-web20220328.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -205,7 +205,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2021e-0ubuntu0.20.04 +tzdata2022a-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From ce1433c2434b49ccf3b16f6e84708fb761aacf56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Mar 2022 21:59:45 +0200 Subject: [PATCH 1139/2257] 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 b39f04b..81e61a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220329.4-unstable -jellyfin-web20220328.9-unstable +jellyfin-server20220329.8-unstable +jellyfin-web20220329.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5af02df14655a199563725a7ef1013712b5a6323 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Mar 2022 21:25:43 -0500 Subject: [PATCH 1140/2257] 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 81e61a9..db47c96 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220329.8-unstable -jellyfin-web20220329.6-unstable +jellyfin-server20220330.1-unstable +jellyfin-web20220329.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9b9c0e4ed45ae7de681448f89841e7296c7efc2c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Mar 2022 06:59:34 -0500 Subject: [PATCH 1141/2257] 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 db47c96..6cd88d6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220330.1-unstable -jellyfin-web20220329.9-unstable +jellyfin-server20220330.3-unstable +jellyfin-web20220330.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From a74281d7c02ebdfdd7c02b20adb41da083cdb406 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 31 Mar 2022 04:20:37 +0200 Subject: [PATCH 1142/2257] 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 6cd88d6..8baf422 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220330.3-unstable -jellyfin-web20220330.2-unstable +jellyfin-server20220331.4-unstable +jellyfin-web20220330.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From c1bc4d2e00a79e66da95ba78e4a0422d3f4ee8ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 31 Mar 2022 04:56:05 +0200 Subject: [PATCH 1143/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1de6baa..7982ef6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -205,7 +205,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2021e-0ubuntu0.20.04 +tzdata2022a-0ubuntu0.20.04 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From ded303895fa2163b2bc6517a7c2d757f4403a9bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 31 Mar 2022 08:44:37 -0500 Subject: [PATCH 1144/2257] 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 8baf422..daa8194 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220331.4-unstable -jellyfin-web20220330.5-unstable +jellyfin-server20220331.8-unstable +jellyfin-web20220331.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7388940d912bd0f7edc0bfa4dc6214625b91625a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Apr 2022 21:59:38 +0200 Subject: [PATCH 1145/2257] 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 daa8194..5ddb047 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220331.8-unstable -jellyfin-web20220331.3-unstable +jellyfin-server20220402.9-unstable +jellyfin-web20220401.14-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 4c19d0613af7dac9d7508aaabad2eba7c65d243e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Apr 2022 16:59:15 +0200 Subject: [PATCH 1146/2257] 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 5ddb047..de94c7c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220402.9-unstable -jellyfin-web20220401.14-unstable +jellyfin-server20220404.13-unstable +jellyfin-web20220403.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1efead462080d4bb4e8c6186b008a76310654412 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Apr 2022 23:59:10 +0200 Subject: [PATCH 1147/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index de94c7c..48f92e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220404.13-unstable +jellyfin-server20220404.17-unstable jellyfin-web20220403.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 78232ee1f712e5fb6b1c9d4cddb5f40f3c2c10a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Apr 2022 00:59:19 +0200 Subject: [PATCH 1148/2257] 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 48f92e7..22e23c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220404.17-unstable -jellyfin-web20220403.1-unstable +jellyfin-server20220406.3-unstable +jellyfin-web20220405.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -78,7 +78,7 @@ libffi73.3-4 libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 libfreetype62.10.1-2ubuntu0.1 -libfribidi01.0.8-2 +libfribidi01.0.8-2ubuntu0.1 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1.1 libglib2.0-02.64.6-1~ubuntu20.04.4 From 3f6e32fb94407bff195e0be060c9e4f231a9754b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Apr 2022 21:55:29 -0500 Subject: [PATCH 1149/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7982ef6..ca63f17 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -78,7 +78,7 @@ libffi73.3-4 libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 libfreetype62.10.1-2ubuntu0.1 -libfribidi01.0.8-2 +libfribidi01.0.8-2ubuntu0.1 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1.1 libglib2.0-02.64.6-1~ubuntu20.04.4 From 63d7b6c85ba17154e42a7692104c696b9a19f2a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Apr 2022 13:00:26 -0500 Subject: [PATCH 1150/2257] 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 22e23c5..b6f7f24 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220406.3-unstable -jellyfin-web20220405.10-unstable +jellyfin-server20220407.1-unstable +jellyfin-web20220407.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 9a8bd79efb1e0dfc1e62327131696a22894f70b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Apr 2022 16:59:20 +0200 Subject: [PATCH 1151/2257] 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 b6f7f24..c7e5431 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220407.1-unstable -jellyfin-web20220407.8-unstable +jellyfin-server20220408.2-unstable +jellyfin-web20220408.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ce3b11659dbe05b6fc9351a810ef5492af8816b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 12 Apr 2022 15:59:30 -0500 Subject: [PATCH 1152/2257] 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 c7e5431..d749eb0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220408.2-unstable -jellyfin-web20220408.5-unstable +jellyfin-server20220412.4-unstable +jellyfin-web20220412.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From ea96321cf091cc4ca1c0337a118af9a09bc1dec1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 12 Apr 2022 22:30:40 -0500 Subject: [PATCH 1153/2257] 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 d749eb0..25a1e71 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220412.4-unstable -jellyfin-web20220412.12-unstable +jellyfin-server20220412.6-unstable +jellyfin-web20220413.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1ab912b798dd73d134a034c54de73991263f786b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Apr 2022 05:08:06 +0200 Subject: [PATCH 1154/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 25a1e71..4adfda8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220412.6-unstable -jellyfin-web20220413.2-unstable +jellyfin-web20220413.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 7130e2df58a7144714db4232e348b1072b42e3a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Apr 2022 15:59:16 -0500 Subject: [PATCH 1155/2257] 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 4adfda8..fdcc939 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220412.6-unstable -jellyfin-web20220413.12-unstable +jellyfin-server20220415.12-unstable +jellyfin-web20220415.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 770f35acb04cc7fbd8b005fd16f4c2210b18b09d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Apr 2022 09:59:38 -0500 Subject: [PATCH 1156/2257] 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 fdcc939..7643b9a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220415.12-unstable -jellyfin-web20220415.8-unstable +jellyfin-server20220417.4-unstable +jellyfin-web20220415.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 43fdcf39111a308388e25fd9662058369d067c3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 17 Apr 2022 16:59:36 -0500 Subject: [PATCH 1157/2257] 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 7643b9a..f47283d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220417.4-unstable -jellyfin-web20220415.17-unstable +jellyfin-server20220417.5-unstable +jellyfin-web20220417.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 573ff6af3aaf8b06ed7afd6da7657e8b419c3610 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 18 Apr 2022 16:59:59 +0200 Subject: [PATCH 1158/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f47283d..18799eb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220417.5-unstable +jellyfin-server20220418.9-unstable jellyfin-web20220417.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f389a2fa809e911c058e5f79ea18e825701abc8a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Apr 2022 22:32:00 -0500 Subject: [PATCH 1159/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 18799eb..2d5f2b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220418.9-unstable -jellyfin-web20220417.6-unstable +jellyfin-web20220420.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 1b9639a9d21543baf836bdbd630cbd1bfa4e8dbb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 21 Apr 2022 05:00:21 -0500 Subject: [PATCH 1160/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2d5f2b2..6c3e5c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220418.9-unstable +jellyfin-server20220421.1-unstable jellyfin-web20220420.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a4b033785b7898b7dec17461450650ada86382e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Apr 2022 09:59:05 +0000 Subject: [PATCH 1161/2257] 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 6c3e5c3..1f96ef4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220421.1-unstable -jellyfin-web20220420.9-unstable +jellyfin-server20220424.1-unstable +jellyfin-web20220423.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d8e20863031660de7532e69562339a7e0d2ef080 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 26 Apr 2022 04:54:33 +0200 Subject: [PATCH 1162/2257] 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 1f96ef4..27540d6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220424.1-unstable -jellyfin-web20220423.7-unstable +jellyfin-server20220426.1-unstable +jellyfin-web20220425.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d8a1c874b3e015fe8df69d2a762d7bbb2948e670 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Apr 2022 13:00:00 +0200 Subject: [PATCH 1163/2257] 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 27540d6..91cac5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220426.1-unstable -jellyfin-web20220425.13-unstable +jellyfin-server20220427.1-unstable +jellyfin-web20220426.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3e75664ef26098313233ab34ffea11c853d919c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Apr 2022 23:13:23 -0500 Subject: [PATCH 1164/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 91cac5b..38b1a6a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220427.1-unstable -jellyfin-web20220426.8-unstable +jellyfin-web20220427.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From b38ccb17d5ef0ef47090529ffc3d30258df3cf88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Apr 2022 16:02:31 +0200 Subject: [PATCH 1165/2257] 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 38b1a6a..54dd659 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220427.1-unstable -jellyfin-web20220427.15-unstable +jellyfin-server20220428.2-unstable +jellyfin-web20220428.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 2e6eb12ea43d05df063cb50defcf88463f926321 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Apr 2022 15:59:51 -0500 Subject: [PATCH 1166/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 54dd659..9b6e214 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220428.2-unstable +jellyfin-server20220428.3-unstable jellyfin-web20220428.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a542673f36b9cc45742efd5155f3d20f65357a6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Apr 2022 13:57:22 -0500 Subject: [PATCH 1167/2257] Bot Updating Templated Files --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7aaab4c..b5327a5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -343,9 +343,11 @@ pipeline { if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then cd ${TEMPDIR}/unraid/templates/ if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then - echo "Image is on the ignore list, removing Unraid template" - git rm unraid/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Removing Deprecated Unraid Template' || : + echo "Image is on the ignore list, marking Unraid template as deprecated" + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add unraid/${CONTAINER_NAME}.xml + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : else cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ git add unraid/${CONTAINER_NAME}.xml From f6e228f05688fddfeee08c2a61e5ed8aa7cf596b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Apr 2022 20:58:39 +0200 Subject: [PATCH 1168/2257] Bot Updating Templated Files --- README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 9389baa..0847423 100644 --- a/README.md +++ b/README.md @@ -46,26 +46,26 @@ Find us at: ## Supported Architectures -Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `lscr.io/linuxserver/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/jellyfin: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 Jellyfin releases | -| nightly | Unstable Jellyfin releases | +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable Jellyfin releases | +| nightly | ✅ | Unstable Jellyfin releases | ## Application Setup @@ -121,7 +121,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: jellyfin: - image: lscr.io/linuxserver/jellyfin + image: lscr.io/linuxserver/jellyfin:nightly container_name: jellyfin environment: - PUID=1000 @@ -166,7 +166,7 @@ docker run -d \ --device /dev/video11:/dev/video11 `#optional` \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ - lscr.io/linuxserver/jellyfin + lscr.io/linuxserver/jellyfin:nightly ``` ## Parameters @@ -234,7 +234,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin:nightly` ## Updating Info @@ -252,7 +252,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/jellyfin` +* Update the image: `docker pull lscr.io/linuxserver/jellyfin:nightly` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` * 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) @@ -287,7 +287,7 @@ cd docker-jellyfin docker build \ --no-cache \ --pull \ - -t lscr.io/linuxserver/jellyfin:latest . + -t lscr.io/linuxserver/jellyfin:nightly . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From 2f3758831bf23262def90403191923cdfa21e2af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Apr 2022 14:01:59 -0500 Subject: [PATCH 1169/2257] 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 9b6e214..0af75ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220428.3-unstable -jellyfin-web20220428.4-unstable +jellyfin-server20220430.2-unstable +jellyfin-web20220429.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From cbbefbd15a210c7df13abd2c5b8c7040b993365c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 May 2022 09:00:33 -0500 Subject: [PATCH 1170/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b5327a5..35e1af9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -345,7 +345,7 @@ pipeline { if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then echo "Image is on the ignore list, marking Unraid template as deprecated" cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add unraid/${CONTAINER_NAME}.xml + git add -u unraid/${CONTAINER_NAME}.xml git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : git commit -m 'Bot Moving Deprecated Unraid Template' || : else From e99eee549eaa84f4100696d66f66c7403d6c0081 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 May 2022 16:04:51 +0200 Subject: [PATCH 1171/2257] 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 0af75ad..a4c6302 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220430.2-unstable -jellyfin-web20220429.10-unstable +jellyfin-server20220502.8-unstable +jellyfin-web20220502.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 5f3f304e5f6760df1ede43cdad3e9cbf82458c59 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 May 2022 05:23:59 +0200 Subject: [PATCH 1172/2257] Bot Updating Templated Files --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8c4266b..4fc46ed 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 2fabd79b347aa4558552c263e4471f451ad3413a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 May 2022 05:25:20 +0200 Subject: [PATCH 1173/2257] Bot Updating Templated Files --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 74807ff..41969d6 100644 --- a/README.md +++ b/README.md @@ -46,26 +46,26 @@ Find us at: ## Supported Architectures -Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `lscr.io/linuxserver/jellyfin` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/jellyfin:latest` 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 Jellyfin releases | -| nightly | Nightly Jellyfin releases | +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable Jellyfin releases | +| nightly | ✅ | Nightly Jellyfin releases | ## Application Setup @@ -122,7 +122,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: jellyfin: - image: lscr.io/linuxserver/jellyfin + image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin environment: - PUID=1000 @@ -158,7 +158,7 @@ docker run -d \ -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ --restart unless-stopped \ - lscr.io/linuxserver/jellyfin + lscr.io/linuxserver/jellyfin:latest ``` ## Parameters @@ -237,7 +237,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin:latest` ## Updating Info @@ -255,7 +255,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/jellyfin` +* Update the image: `docker pull lscr.io/linuxserver/jellyfin:latest` * Stop the running container: `docker stop jellyfin` * Delete the container: `docker rm jellyfin` * 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) From 35c73cc373d3128d7db143e5936247b15bb7a79e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 May 2022 05:25:57 +0200 Subject: [PATCH 1174/2257] 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 a4c6302..9ff60c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.7 +curl7.68.0-1ubuntu2.10 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220502.8-unstable -jellyfin-web20220502.4-unstable +jellyfin-web20220504.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -60,7 +60,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.7 +libcurl47.68.0-1ubuntu2.10 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-1029 @@ -145,7 +145,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.12 +libssl1.11.1.1f-1ubuntu2.13 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From df1d56c75e2c040206daabe21e938ae3ca083f0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 4 May 2022 22:28:55 -0500 Subject: [PATCH 1175/2257] 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 ca63f17..bd27fd0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.7 +curl7.68.0-1ubuntu2.10 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -60,7 +60,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.7 +libcurl47.68.0-1ubuntu2.10 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-1029 @@ -145,7 +145,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.2 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.12 +libssl1.11.1.1f-1ubuntu2.13 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From 36daf31eea423f8b4ad87fffc4e8ef8abc64097c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 7 May 2022 12:07:56 -0500 Subject: [PATCH 1176/2257] 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 9ff60c7..d1c1466 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220502.8-unstable -jellyfin-web20220504.8-unstable +jellyfin-server20220507.5-unstable +jellyfin-web20220506.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From d2dd34286ce92adbcc0784a49cd62014113f1add Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 9 May 2022 15:59:28 -0500 Subject: [PATCH 1177/2257] 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 d1c1466..599cf89 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220507.5-unstable -jellyfin-web20220506.6-unstable +jellyfin-server20220509.16-unstable +jellyfin-web20220508.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 8681bc708dcea6a56f2d9f307fac6e754cd0dc18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 10 May 2022 05:19:16 +0200 Subject: [PATCH 1178/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 599cf89..030cf08 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220509.16-unstable +jellyfin-server20220510.1-unstable jellyfin-web20220508.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8796f76ba83535eced5d91d8bc8e4d41061af595 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 May 2022 22:16:37 -0500 Subject: [PATCH 1179/2257] 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 bd27fd0..497c2bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -142,7 +142,7 @@ libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.2 +libsqlite3-03.31.1-4ubuntu0.3 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.13 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.12 +openssl1.1.1f-1ubuntu2.13 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 6b2ed72fe92724b1e80bb124d93203a886171e26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 11 May 2022 22:17:18 -0500 Subject: [PATCH 1180/2257] 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 030cf08..a3aa22f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220510.1-unstable -jellyfin-web20220508.2-unstable +jellyfin-web20220511.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -142,7 +142,7 @@ libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.2 +libsqlite3-03.31.1-4ubuntu0.3 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.13 @@ -194,7 +194,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.12 +openssl1.1.1f-1ubuntu2.13 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 77cca3c6e0994abf0dbb0c48340c0a2b8e86a94c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 May 2022 10:00:37 -0500 Subject: [PATCH 1181/2257] 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 a3aa22f..a4f5e65 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220510.1-unstable -jellyfin-web20220511.4-unstable +jellyfin-server20220513.1-unstable +jellyfin-web20220513.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 0573052e19050c0a554f59309b7d0ad255ad0309 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 14 May 2022 19:59:16 +0200 Subject: [PATCH 1182/2257] 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 a4f5e65..3c441c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220513.1-unstable -jellyfin-web20220513.4-unstable +jellyfin-server20220514.1-unstable +jellyfin-web20220514.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 36f0a20a8d1c5b99c2a846d23a51405fbd864c3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 15 May 2022 08:25:00 -0500 Subject: [PATCH 1183/2257] 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 3c441c7..e04a823 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220514.1-unstable -jellyfin-web20220514.9-unstable +jellyfin-server20220515.1-unstable +jellyfin-web20220515.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From e800496a8d95f6562541a40a33da46aed16c66cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 17 May 2022 00:59:39 -0500 Subject: [PATCH 1184/2257] 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 e04a823..a23a19f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.10 +curl7.68.0-1ubuntu2.11 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220515.1-unstable -jellyfin-web20220515.3-unstable +jellyfin-server20220517.4-unstable +jellyfin-web20220516.21-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 @@ -60,7 +60,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.10 +libcurl47.68.0-1ubuntu2.11 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-1029 @@ -178,13 +178,13 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.2 +libxml22.9.10+dfsg-5ubuntu0.20.04.3 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.7 +locales2.31-0ubuntu9.9 login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From 56d6914c85648f7f2afcb16e4c9300cc7585ff96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 May 2022 22:09:45 -0500 Subject: [PATCH 1185/2257] 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 a23a19f..9702209 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220517.4-unstable -jellyfin-web20220516.21-unstable +jellyfin-server20220518.1-unstable +jellyfin-web20220517.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3b81084395fc8d80d0c51631159523cb97ed191d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 19 May 2022 05:28:39 +0200 Subject: [PATCH 1186/2257] 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 497c2bf..36e9c4d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20210119~20.04.2 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.10 +curl7.68.0-1ubuntu2.11 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -60,7 +60,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.10 +libcurl47.68.0-1ubuntu2.11 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-1029 @@ -178,13 +178,13 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.2 +libxml22.9.10+dfsg-5ubuntu0.20.04.3 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 libzvbi00.2.35-17 libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.7 +locales2.31-0ubuntu9.9 login1:4.8.1-1ubuntu5.20.04.1 logsave1.45.5-2ubuntu1 lsb-base11.1.0ubuntu2 From a8480220cf615566927a94eae7c45fc3284cf4d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 20 May 2022 18:00:00 +0200 Subject: [PATCH 1187/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9702209..f7bc2d6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220518.1-unstable +jellyfin-server20220520.1-unstable jellyfin-web20220517.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f419f222887240d3857ca4f49d9b488ff42dfd48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 May 2022 00:59:48 +0200 Subject: [PATCH 1188/2257] 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 f7bc2d6..d2a126c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220520.1-unstable -jellyfin-web20220517.13-unstable +jellyfin-server20220520.4-unstable +jellyfin-web20220520.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From bd9888043723bccdb530623791cd6433f37ed868 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 May 2022 07:03:52 +0200 Subject: [PATCH 1189/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d2a126c..b9faa7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220520.4-unstable +jellyfin-server20220521.3-unstable jellyfin-web20220520.13-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 668c20e745dad87c62003b87034a5b3b52ed329a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 22 May 2022 16:00:15 +0200 Subject: [PATCH 1190/2257] 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 b9faa7a..4a95a32 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220521.3-unstable -jellyfin-web20220520.13-unstable +jellyfin-server20220522.1-unstable +jellyfin-web20220522.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From 3dcab9eb3a9c04cca30cb03d8991f473833fa754 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 23 May 2022 12:00:15 +0200 Subject: [PATCH 1191/2257] 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 4a95a32..8c63813 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220522.1-unstable -jellyfin-web20220522.6-unstable +jellyfin-server20220523.1-unstable +jellyfin-web20220522.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.6 From f3207831d2e0a737a9a80a45b81d4629c5743350 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 24 May 2022 09:59:11 -0500 Subject: [PATCH 1192/2257] 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 8c63813..b1bcc2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.6 -apt-utils2.0.6 +apt2.0.8 +apt-utils2.0.8 at3.1.23-1ubuntu1 base-files11ubuntu5.5 base-passwd3.5.47 @@ -38,11 +38,11 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220523.1-unstable -jellyfin-web20220522.8-unstable +jellyfin-server20220524.8-unstable +jellyfin-web20220524.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.6 +libapt-pkg6.02.0.8 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -103,8 +103,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.8 -libldap-common2.4.49+dfsg-2ubuntu1.8 +libldap-2.4-22.4.49+dfsg-2ubuntu1.9 +libldap-common2.4.49+dfsg-2ubuntu1.9 libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 From 90851cda8e464cc22f2a87e2327eb9b8fb3fbff2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 May 2022 00:00:26 +0200 Subject: [PATCH 1193/2257] 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 b1bcc2e..a3aeb23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220524.8-unstable -jellyfin-web20220524.1-unstable +jellyfin-server20220524.11-unstable +jellyfin-web20220524.6-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From fefb33592e5e3b1119ed3d5aa2b39af09645a719 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 25 May 2022 19:59:19 +0200 Subject: [PATCH 1194/2257] 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 a3aeb23..a9731fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220524.11-unstable -jellyfin-web20220524.6-unstable +jellyfin-server20220525.2-unstable +jellyfin-web20220525.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 02227bfbae131618953e603a930b591f77525de0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 May 2022 05:27:12 +0200 Subject: [PATCH 1195/2257] 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 36e9c4d..146dd06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.6 -apt-utils2.0.6 +apt2.0.8 +apt-utils2.0.8 at3.1.23-1ubuntu1 base-files11ubuntu5.5 base-passwd3.5.47 @@ -42,7 +42,7 @@ jellyfin-server10.7.7-1 jellyfin-web10.7.7-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.6 +libapt-pkg6.02.0.8 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -103,8 +103,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.8 -libldap-common2.4.49+dfsg-2ubuntu1.8 +libldap-2.4-22.4.49+dfsg-2ubuntu1.9 +libldap-common2.4.49+dfsg-2ubuntu1.9 libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 From 3b2868ce6c9acf6df0e10faaf069ebd467bcf304 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 26 May 2022 13:00:18 -0500 Subject: [PATCH 1196/2257] 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 a9731fc..22bc7c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220525.2-unstable -jellyfin-web20220525.1-unstable +jellyfin-server20220526.4-unstable +jellyfin-web20220526.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 24223284580a378bbe2970ea641b55a818548b24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 29 May 2022 09:03:20 +0200 Subject: [PATCH 1197/2257] 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 22bc7c6..a825533 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220526.4-unstable -jellyfin-web20220526.2-unstable +jellyfin-server20220529.1-unstable +jellyfin-web20220528.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 13e112f96c903e3bc0754c43b10302d64e2946d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 Jun 2022 20:00:27 +0200 Subject: [PATCH 1198/2257] 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 a825533..bb98054 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220529.1-unstable -jellyfin-web20220528.2-unstable +jellyfin-server20220601.4-unstable +jellyfin-web20220601.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 4c54ef7afb307330fc33dd9d7cd1a9a2fa27941d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 2 Jun 2022 05:50:35 +0200 Subject: [PATCH 1199/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bb98054..2bf7299 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220601.4-unstable -jellyfin-web20220601.4-unstable +jellyfin-web20220602.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 65275cd70b11b2741ffd974da0f56d50403835b9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 3 Jun 2022 18:00:06 -0500 Subject: [PATCH 1200/2257] 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 2bf7299..cdbaafc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220601.4-unstable -jellyfin-web20220602.1-unstable +jellyfin-server20220603.3-unstable +jellyfin-web20220602.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From a5417734fb20cba41884c256549ab3a423f26600 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Jun 2022 08:00:18 +0200 Subject: [PATCH 1201/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cdbaafc..c8d882a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220603.3-unstable +jellyfin-server20220603.4-unstable jellyfin-web20220602.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cec2c93f2b425751de0b293b8858e158b9c1b5b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Jun 2022 20:59:17 +0200 Subject: [PATCH 1202/2257] 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 c8d882a..f08f49d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220603.4-unstable -jellyfin-web20220602.4-unstable +jellyfin-server20220604.5-unstable +jellyfin-web20220604.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 22d323796939c56ffbe01856361db1c90b225a36 Mon Sep 17 00:00:00 2001 From: nyanmisaka Date: Sun, 5 Jun 2022 16:57:49 +0800 Subject: [PATCH 1203/2257] Switch to jellyfin-ffmpeg5 for nightly Jellyfin 10.7.x and older are incompatible with FFmpeg 5.x due to a breaking API change. So we edit the package name of our ffmpeg to jellyfin-ffmpeg5. --- Dockerfile | 13 +------------ Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index ee35e2b..6d0a8a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,12 +11,6 @@ LABEL maintainer="thelamer" ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" -# set Intel iHD driver versions -# https://dgpu-docs.intel.com/releases/index.html -ARG INTEL_LIBVA_VER="2.13.0+i643~u20.04" -ARG INTEL_GMM_VER="21.3.3+i643~u20.04" -ARG INTEL_iHD_VER="21.4.1+i643~u20.04" - RUN \ echo "**** install packages ****" && \ apt-get update && \ @@ -26,8 +20,6 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -36,11 +28,8 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - libva2="${INTEL_LIBVA_VER}" \ - libigdgmm11="${INTEL_GMM_VER}" \ - intel-media-va-driver-non-free="${INTEL_iHD_VER}" \ ${JELLYFIN} \ - jellyfin-ffmpeg \ + jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 496a20f..cea09f7 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,7 @@ RUN \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ - jellyfin-ffmpeg \ + jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 6648e78..ad5471a 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -31,7 +31,7 @@ RUN \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ - jellyfin-ffmpeg \ + jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ From 22a08e41fd827429f609a99cb15efd9322f13495 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Jun 2022 05:59:13 -0500 Subject: [PATCH 1204/2257] 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 f08f49d..43654ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220604.5-unstable -jellyfin-web20220604.3-unstable +jellyfin-server20220606.1-unstable +jellyfin-web20220605.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 58bab9064b2c4526d3fdf845e16da654bb06902f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 6 Jun 2022 12:11:17 -0500 Subject: [PATCH 1205/2257] 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 43654ab..6f7a291 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server20220606.1-unstable -jellyfin-web20220605.2-unstable +jellyfin-server20220606.6-unstable +jellyfin-web20220606.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 3f6167ac49c144292de5bdc158d9586e82f8a9a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Jun 2022 22:27:39 -0500 Subject: [PATCH 1206/2257] 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 6f7a291..541dc08 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal jellyfin-server20220606.6-unstable -jellyfin-web20220606.1-unstable +jellyfin-web20220608.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 @@ -98,7 +98,7 @@ libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 libigdgmm1121.3.3+i643~u20.04 libk5crypto31.17-6ubuntu4.1 -libkeyutils11.6-6ubuntu1 +libkeyutils11.6-6ubuntu1.1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 From 59e1b154acdf402fb0c1cd160fbf6beed2b6b602 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 9 Jun 2022 05:27:59 +0200 Subject: [PATCH 1207/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 146dd06..6949903 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -98,7 +98,7 @@ libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 libigdgmm1121.3.3+i643~u20.04 libk5crypto31.17-6ubuntu4.1 -libkeyutils11.6-6ubuntu1 +libkeyutils11.6-6ubuntu1.1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 From f1514335de4853838c2aaf879a1e8b99082ba0e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 9 Jun 2022 17:58:25 +0200 Subject: [PATCH 1208/2257] Bot Updating Package Versions --- package_versions.txt | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 541dc08..0720dc9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,8 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-4-focal +jellyfin-ffmpeg55.0.1-5-focal jellyfin-server20220606.6-unstable jellyfin-web20220608.1-unstable krb5-locales1.17-6ubuntu4.1 @@ -63,12 +62,11 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.11 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.107-1029 -libdrm-amdgpu12.4.107-1029 -libdrm-common2.4.107-1029 -libdrm-intel12.4.107-1029 -libdrm-nouveau22.4.107-1029 -libdrm-radeon12.4.107-1029 +libdrm22.4.107-8ubuntu1~20.04.2 +libdrm-amdgpu12.4.107-8ubuntu1~20.04.2 +libdrm-common2.4.107-8ubuntu1~20.04.2 +libdrm-nouveau22.4.107-8ubuntu1~20.04.2 +libdrm-radeon12.4.107-8ubuntu1~20.04.2 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1ubuntu0.4 @@ -96,7 +94,6 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 -libigdgmm1121.3.3+i643~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1.1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -105,6 +102,7 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.9 libldap-common2.4.49+dfsg-2ubuntu1.9 +libllvm111:11.0.0-2~ubuntu20.04.1 libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 @@ -154,8 +152,6 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.3 -libva22.13.0+i643~u20.04 -libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 libvpx61.8.2-1build1 @@ -172,6 +168,7 @@ libxcb11.14-2 libxcb-dri2-01.14-2 libxcb-dri3-01.14-2 libxcb-present01.14-2 +libxcb-randr01.14-2 libxcb-render01.14-2 libxcb-shm01.14-2 libxcb-sync11.14-2 From 622d437b3aa031cc6e3a1e8c2ef1c793fc1c5352 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 11 Jun 2022 05:39:08 +0200 Subject: [PATCH 1209/2257] 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 6949903..32aeb69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,8 +38,8 @@ hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg4.4.1-4-focal -jellyfin-server10.7.7-1 -jellyfin-web10.7.7-1 +jellyfin-server10.8.0-1 +jellyfin-web10.8.0-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 0173237bd1eaf510b4cb4c58576a0a732d551657 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 11 Jun 2022 00:04:22 -0400 Subject: [PATCH 1210/2257] Update jellyfin-ffmpeg to jellyfin-ffmpeg5 The package name in our repos was updated to ensure backwards compatibility with ffmpeg4 for 10.7.z and older. Thus, the latest version for 10.8.0 is actually "jellyfin-ffmpeg5" instead. Update this in the various dockerfiles and in the package_versions.txt file. --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- package_versions.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd81585..1003bd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ RUN \ libigdgmm11="${INTEL_GMM_VER}" \ intel-media-va-driver-non-free="${INTEL_iHD_VER}" \ ${JELLYFIN} \ - jellyfin-ffmpeg \ + jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d7b24a2..7af80e6 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,7 +30,7 @@ RUN \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ - jellyfin-ffmpeg \ + jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 6c4fe41..ce6901e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -30,7 +30,7 @@ RUN \ apt-get install -y --no-install-recommends \ at \ ${JELLYFIN} \ - jellyfin-ffmpeg \ + jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ diff --git a/package_versions.txt b/package_versions.txt index 32aeb69..5e3ef78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 intel-media-va-driver-non-free21.4.1+i643~u20.04 -jellyfin-ffmpeg4.4.1-4-focal +jellyfin-ffmpeg55.0.1-5-focal jellyfin-server10.8.0-1 jellyfin-web10.8.0-1 krb5-locales1.17-6ubuntu4.1 From 19e9d73254b6e42c9465df75e38027d90940cf04 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 10 Jun 2022 23:08:39 -0500 Subject: [PATCH 1211/2257] 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 0720dc9..ad25ff2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-5-focal -jellyfin-server20220606.6-unstable -jellyfin-web20220608.1-unstable +jellyfin-server20220611.6-unstable +jellyfin-web20220609.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From f0b9e3ac54e9cb25e7350158150e81c9f5a76970 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 11 Jun 2022 13:58:12 -0400 Subject: [PATCH 1212/2257] remove pinned intel drivers, update readme --- Dockerfile | 11 ----------- README.md | 1 + readme-vars.yml | 1 + 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1003bd8..5bbce31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,12 +11,6 @@ LABEL maintainer="thelamer" ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" -# set Intel iHD driver versions -# https://dgpu-docs.intel.com/releases/index.html -ARG INTEL_LIBVA_VER="2.13.0+i643~u20.04" -ARG INTEL_GMM_VER="21.3.3+i643~u20.04" -ARG INTEL_iHD_VER="21.4.1+i643~u20.04" - RUN \ echo "**** install packages ****" && \ apt-get update && \ @@ -25,8 +19,6 @@ RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - curl -s https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' > /etc/apt/sources.list.d/intel-graphics.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -35,9 +27,6 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - libva2="${INTEL_LIBVA_VER}" \ - libigdgmm11="${INTEL_GMM_VER}" \ - intel-media-va-driver-non-free="${INTEL_iHD_VER}" \ ${JELLYFIN} \ jellyfin-ffmpeg5 \ jellyfin-web \ diff --git a/README.md b/README.md index 41969d6..f295469 100644 --- a/README.md +++ b/README.md @@ -303,6 +303,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **11.06.22:** - Switch to upstream repo's ffmpeg5 build. * **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. * **10.12.21:** - Rework readme, disable template sync. diff --git a/readme-vars.yml b/readme-vars.yml index fadecc1..4b82972 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -116,6 +116,7 @@ unraid_template_sync: false # changelog changelogs: + - { date: "11.06.22:", desc: "Switch to upstream repo's ffmpeg5 build." } - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - { date: "25.12.21:", desc: "Fix video device group perms error message." } - { date: "10.12.21:", desc: "Rework readme, disable template sync." } From 203ef42b6ff07901c92a237406e3c65837c510fe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 11 Jun 2022 20:15:11 +0200 Subject: [PATCH 1213/2257] Bot Updating Package Versions --- package_versions.txt | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5e3ef78..8879cdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,6 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -intel-media-va-driver-non-free21.4.1+i643~u20.04 jellyfin-ffmpeg55.0.1-5-focal jellyfin-server10.8.0-1 jellyfin-web10.8.0-1 @@ -63,12 +62,11 @@ libcrypt11:4.4.10-10ubuntu4 libcurl47.68.0-1ubuntu2.11 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 -libdrm22.4.107-1029 -libdrm-amdgpu12.4.107-1029 -libdrm-common2.4.107-1029 -libdrm-intel12.4.107-1029 -libdrm-nouveau22.4.107-1029 -libdrm-radeon12.4.107-1029 +libdrm22.4.107-8ubuntu1~20.04.2 +libdrm-amdgpu12.4.107-8ubuntu1~20.04.2 +libdrm-common2.4.107-8ubuntu1~20.04.2 +libdrm-nouveau22.4.107-8ubuntu1~20.04.2 +libdrm-radeon12.4.107-8ubuntu1~20.04.2 libedit23.1-20191231-1 libelf10.176-1.1build1 libexpat12.2.9-1ubuntu0.4 @@ -96,7 +94,6 @@ libhogweed53.5.1+really3.5.1-2ubuntu0.2 libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 -libigdgmm1121.3.3+i643~u20.04 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1.1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 @@ -105,6 +102,7 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 libldap-2.4-22.4.49+dfsg-2ubuntu1.9 libldap-common2.4.49+dfsg-2ubuntu1.9 +libllvm111:11.0.0-2~ubuntu20.04.1 libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 @@ -154,8 +152,6 @@ libtinfo66.2-0ubuntu2 libudev1245.4-4ubuntu3.15 libunistring20.9.10-2 libuuid12.34-0.1ubuntu9.3 -libva22.13.0+i643~u20.04 -libvdpau11.3-1ubuntu2 libvorbis0a1.3.6-2ubuntu1 libvorbisenc21.3.6-2ubuntu1 libvpx61.8.2-1build1 @@ -172,6 +168,7 @@ libxcb11.14-2 libxcb-dri2-01.14-2 libxcb-dri3-01.14-2 libxcb-present01.14-2 +libxcb-randr01.14-2 libxcb-render01.14-2 libxcb-shm01.14-2 libxcb-sync11.14-2 From b53c1e930608fcb91145513a5e34fffd3e7ef240 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 12 Jun 2022 14:00:25 +0200 Subject: [PATCH 1214/2257] 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 ad25ff2..f056de6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-5-focal -jellyfin-server20220611.6-unstable -jellyfin-web20220609.7-unstable +jellyfin-server20220612.4-unstable +jellyfin-web20220611.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From c7c4c5a9de723c588e20528c29de2a402dd5a9e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 14 Jun 2022 09:00:28 -0500 Subject: [PATCH 1215/2257] 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 f056de6..6a73e74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 -ca-certificates20210119~20.04.2 +ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.11 dash0.5.10.2-6 @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-5-focal -jellyfin-server20220612.4-unstable -jellyfin-web20220611.7-unstable +jellyfin-server20220614.10-unstable +jellyfin-web20220613.17-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 185b47f7d56fc68615723147bff413c1f15af5b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 14 Jun 2022 22:59:40 +0200 Subject: [PATCH 1216/2257] 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 6a73e74..f4f38ff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-5-focal -jellyfin-server20220614.10-unstable -jellyfin-web20220613.17-unstable +jellyfin-server20220614.16-unstable +jellyfin-web20220614.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 592c8a2921df9c3ab131ad13371c001be2a753b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 14 Jun 2022 23:23:28 -0500 Subject: [PATCH 1217/2257] 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 f4f38ff..a1c8a0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-5-focal -jellyfin-server20220614.16-unstable -jellyfin-web20220614.19-unstable +jellyfin-server20220614.18-unstable +jellyfin-web20220615.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 074d73d41f01df217650337de12a6b5d9356820f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 15 Jun 2022 22:25:49 -0500 Subject: [PATCH 1218/2257] 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 8879cdf..58ba77e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 -ca-certificates20210119~20.04.2 +ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.11 dash0.5.10.2-6 @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-5-focal +jellyfin-ffmpeg55.0.1-6-focal jellyfin-server10.8.0-1 jellyfin-web10.8.0-1 krb5-locales1.17-6ubuntu4.1 From 445e357d06c777dee75b75b6478aa1968d5a9f75 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 15 Jun 2022 22:26:15 -0500 Subject: [PATCH 1219/2257] 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 a1c8a0a..d5f4026 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-5-focal +jellyfin-ffmpeg55.0.1-6-focal jellyfin-server20220614.18-unstable -jellyfin-web20220615.3-unstable +jellyfin-web20220615.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From 89e57650e7886f967f51c6b9addd303a5705a240 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 16 Jun 2022 04:59:17 -0500 Subject: [PATCH 1220/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d5f4026..0cae55d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-6-focal -jellyfin-server20220614.18-unstable +jellyfin-server20220616.1-unstable jellyfin-web20220615.15-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a539b09fd5562bb8de035f49a30141136e349d67 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 20 Jun 2022 16:02:49 +0200 Subject: [PATCH 1221/2257] 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 0cae55d..9d634ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-6-focal -jellyfin-server20220616.1-unstable -jellyfin-web20220615.15-unstable +jellyfin-server20220620.23-unstable +jellyfin-web20220620.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.8 From c607d3c8ebacfcac3c391aee5401cb9cf01a6c06 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Jun 2022 00:59:34 +0200 Subject: [PATCH 1222/2257] 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 9d634ee..143bc37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.8 -apt-utils2.0.8 +apt2.0.9 +apt-utils2.0.9 at3.1.23-1ubuntu1 base-files11ubuntu5.5 base-passwd3.5.47 @@ -37,11 +37,11 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-6-focal -jellyfin-server20220620.23-unstable -jellyfin-web20220620.2-unstable +jellyfin-server20220622.6-unstable +jellyfin-web20220622.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.8 +libapt-pkg6.02.0.9 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -143,7 +143,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.3 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.13 +libssl1.11.1.1f-1ubuntu2.15 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From 0e370887a20a3b548260428b9daad1aa553510ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 22 Jun 2022 22:39:31 -0500 Subject: [PATCH 1223/2257] 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 58ba77e..e2bf643 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.118ubuntu2 -apt2.0.8 -apt-utils2.0.8 +apt2.0.9 +apt-utils2.0.9 at3.1.23-1ubuntu1 base-files11ubuntu5.5 base-passwd3.5.47 @@ -41,7 +41,7 @@ jellyfin-server10.8.0-1 jellyfin-web10.8.0-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 -libapt-pkg6.02.0.8 +libapt-pkg6.02.0.9 libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 @@ -143,7 +143,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.3 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.13 +libssl1.11.1.1f-1ubuntu2.15 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From 923e287493a26ce9fc6faebc9b2de96edc28ca53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 27 Jun 2022 05:06:23 +0200 Subject: [PATCH 1224/2257] 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 e2bf643..4dcb9cc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-6-focal -jellyfin-server10.8.0-1 -jellyfin-web10.8.0-1 +jellyfin-ffmpeg55.0.1-7-focal +jellyfin-server10.8.1-1 +jellyfin-web10.8.1-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From b3ff4d0262dfdd667240a8dbea4d3486d2c5c2b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Jun 2022 05:07:52 +0200 Subject: [PATCH 1225/2257] 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 143bc37..b267bf4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.11 +curl7.68.0-1ubuntu2.12 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-6-focal -jellyfin-server20220622.6-unstable -jellyfin-web20220622.1-unstable +jellyfin-ffmpeg55.0.1-7-focal +jellyfin-server20220629.1-unstable +jellyfin-web20220628.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -59,7 +59,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.11 +libcurl47.68.0-1ubuntu2.12 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-8ubuntu1~20.04.2 @@ -191,7 +191,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.13 +openssl1.1.1f-1ubuntu2.15 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From 041722278992be9b4e036c337d2017af173c359b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Jun 2022 05:00:10 -0500 Subject: [PATCH 1226/2257] 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 b267bf4..0fe8558 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220629.1-unstable -jellyfin-web20220628.5-unstable +jellyfin-server20220629.2-unstable +jellyfin-web20220629.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 2eac4aeb0312d1c5ed8e8f1239fdd026f59d60c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Jun 2022 05:45:42 +0200 Subject: [PATCH 1227/2257] 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 4dcb9cc..b374fa7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.11 +curl7.68.0-1ubuntu2.12 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -59,7 +59,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.11 +libcurl47.68.0-1ubuntu2.12 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-8ubuntu1~20.04.2 @@ -191,7 +191,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.13 +openssl1.1.1f-1ubuntu2.15 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From a1b9041bb25ccfb1ff1e1da328f5a64406542407 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Jun 2022 22:46:39 -0500 Subject: [PATCH 1228/2257] 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 0fe8558..0bc08e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220629.2-unstable -jellyfin-web20220629.7-unstable +jellyfin-server20220630.1-unstable +jellyfin-web20220630.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From ce975cf78a1eb996869165ea84300031eaaec476 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 30 Jun 2022 19:16:32 +0200 Subject: [PATCH 1229/2257] 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 0bc08e3..2e8e999 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220630.1-unstable -jellyfin-web20220630.1-unstable +jellyfin-server20220630.11-unstable +jellyfin-web20220630.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 43203a39d342197c982b205191a1034c3f5cfff3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 3 Jul 2022 22:00:30 +0200 Subject: [PATCH 1230/2257] 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 2e8e999..5b4b469 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220630.11-unstable -jellyfin-web20220630.2-unstable +jellyfin-server20220703.2-unstable +jellyfin-web20220703.9-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From fdc540737f318a11f64f6c5c8b57cd602793a5da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Jul 2022 18:00:26 +0200 Subject: [PATCH 1231/2257] 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 5b4b469..d8cdb9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220703.2-unstable -jellyfin-web20220703.9-unstable +jellyfin-server20220704.6-unstable +jellyfin-web20220704.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 7e2dec21eece64a92685ab848554d2705ea73b95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Jul 2022 05:51:33 +0200 Subject: [PATCH 1232/2257] 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 b374fa7..32724ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 diffutils1:3.7-3 -dirmngr2.2.19-3ubuntu2.1 +dirmngr2.2.19-3ubuntu2.2 dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 fdisk2.34-0.1ubuntu9.3 @@ -22,16 +22,16 @@ findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 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 +gnupg2.2.19-3ubuntu2.2 +gnupg-l10n2.2.19-3ubuntu2.2 +gnupg-utils2.2.19-3ubuntu2.2 +gpg2.2.19-3ubuntu2.2 +gpg-agent2.2.19-3ubuntu2.2 +gpgconf2.2.19-3ubuntu2.2 +gpgsm2.2.19-3ubuntu2.2 +gpgv2.2.19-3ubuntu2.2 +gpg-wks-client2.2.19-3ubuntu2.2 +gpg-wks-server2.2.19-3ubuntu2.2 grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 @@ -143,7 +143,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.3 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.15 +libssl1.11.1.1f-1ubuntu2.16 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From 6282534486feb267b7dd7e799bd69e1ba2878d13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 6 Jul 2022 22:51:52 -0500 Subject: [PATCH 1233/2257] 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 d8cdb9b..556a49c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 diffutils1:3.7-3 -dirmngr2.2.19-3ubuntu2.1 +dirmngr2.2.19-3ubuntu2.2 dpkg1.19.7ubuntu3 e2fsprogs1.45.5-2ubuntu1 fdisk2.34-0.1ubuntu9.3 @@ -22,23 +22,23 @@ findutils4.7.0-1ubuntu1 fontconfig-config2.13.1-2ubuntu3 fonts-dejavu-core2.37-1 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 +gnupg2.2.19-3ubuntu2.2 +gnupg-l10n2.2.19-3ubuntu2.2 +gnupg-utils2.2.19-3ubuntu2.2 +gpg2.2.19-3ubuntu2.2 +gpg-agent2.2.19-3ubuntu2.2 +gpgconf2.2.19-3ubuntu2.2 +gpgsm2.2.19-3ubuntu2.2 +gpgv2.2.19-3ubuntu2.2 +gpg-wks-client2.2.19-3ubuntu2.2 +gpg-wks-server2.2.19-3ubuntu2.2 grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal jellyfin-server20220704.6-unstable -jellyfin-web20220704.5-unstable +jellyfin-web20220706.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -143,7 +143,7 @@ libsmartcols12.34-0.1ubuntu9.3 libsqlite3-03.31.1-4ubuntu0.3 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.15 +libssl1.11.1.1f-1ubuntu2.16 libstdc++610.3.0-1ubuntu1~20.04 libsystemd0245.4-4ubuntu3.15 libtasn1-64.16.0-2 From ff26e062b1297dd4e9fc4b844e0eacf631ca99f1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Jul 2022 12:59:51 -0500 Subject: [PATCH 1234/2257] 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 556a49c..0234fd0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220704.6-unstable -jellyfin-web20220706.7-unstable +jellyfin-server20220707.2-unstable +jellyfin-web20220707.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From fda8ffd65b98c09dbf2020a237c46177d931ad3d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jul 2022 05:05:22 +0200 Subject: [PATCH 1235/2257] 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 0234fd0..ac2159f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-7-focal -jellyfin-server20220707.2-unstable -jellyfin-web20220707.2-unstable +jellyfin-server20220707.3-unstable +jellyfin-web20220708.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 67ad819aa2f6018cc793495d773a56d7b857a0d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Jul 2022 22:54:24 -0500 Subject: [PATCH 1236/2257] 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 32724ec..1c24a47 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-7-focal +jellyfin-ffmpeg55.0.1-8-focal jellyfin-server10.8.1-1 jellyfin-web10.8.1-1 krb5-locales1.17-6ubuntu4.1 @@ -191,7 +191,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.15 +openssl1.1.1f-1ubuntu2.16 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From aa32079cb51cb9e624c349ffb4774bd85757757a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Jul 2022 22:54:52 -0500 Subject: [PATCH 1237/2257] 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 ac2159f..7daa756 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-7-focal +jellyfin-ffmpeg55.0.1-8-focal jellyfin-server20220707.3-unstable -jellyfin-web20220708.1-unstable +jellyfin-web20220713.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -191,7 +191,7 @@ mount2.34-0.1ubuntu9.3 ncurses-base6.2-0ubuntu2 ncurses-bin6.2-0ubuntu2 ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.15 +openssl1.1.1f-1ubuntu2.16 passwd1:4.8.1-1ubuntu5.20.04.1 perl-base5.30.0-9ubuntu0.2 pinentry-curses1.1.0-3build1 From c9a3e7e812fb33461c1cd5bcb8bb32b950dffd57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 15 Jul 2022 08:38:46 -0500 Subject: [PATCH 1238/2257] 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 7daa756..c8d9061 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220707.3-unstable -jellyfin-web20220713.1-unstable +jellyfin-server20220715.1-unstable +jellyfin-web20220715.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 47299a7818c9eb6083be8e9022cd8f6e1c4f7198 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 16 Jul 2022 21:59:35 +0200 Subject: [PATCH 1239/2257] 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 c8d9061..e8fe46f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220715.1-unstable -jellyfin-web20220715.2-unstable +jellyfin-server20220716.7-unstable +jellyfin-web20220716.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From ebae18d207eb728de55ff4a0b9678c33d9314e1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jul 2022 02:00:33 +0200 Subject: [PATCH 1240/2257] 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 e8fe46f..bc4bbcb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220716.7-unstable -jellyfin-web20220716.2-unstable +jellyfin-server20220719.8-unstable +jellyfin-web20220718.10-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -86,7 +86,7 @@ libgpg-error01.37-1 libgraphite2-31.3.13-11build1 libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 libgssapi-krb5-21.17-6ubuntu4.1 -libharfbuzz0b2.6.4-1ubuntu4 +libharfbuzz0b2.6.4-1ubuntu4.2 libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 From 6803f7fd87addee29bf1e00563cb5b4e93ed2de6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jul 2022 18:59:33 -0500 Subject: [PATCH 1241/2257] 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 bc4bbcb..71899f9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220719.8-unstable -jellyfin-web20220718.10-unstable +jellyfin-server20220720.10-unstable +jellyfin-web20220720.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -75,7 +75,7 @@ libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 -libfreetype62.10.1-2ubuntu0.1 +libfreetype62.10.1-2ubuntu0.2 libfribidi01.0.8-2ubuntu0.1 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1.1 From 3c6d46fdb107e2fec5c6c8eb895e7ee7c4f368a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jul 2022 22:43:57 -0500 Subject: [PATCH 1242/2257] 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 1c24a47..c71e985 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -75,7 +75,7 @@ libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 libfl22.6.4-6.2 libfontconfig12.13.1-2ubuntu3 -libfreetype62.10.1-2ubuntu0.1 +libfreetype62.10.1-2ubuntu0.2 libfribidi01.0.8-2ubuntu0.1 libgcc-s110.3.0-1ubuntu1~20.04 libgcrypt201.8.5-5ubuntu1.1 @@ -86,7 +86,7 @@ libgpg-error01.37-1 libgraphite2-31.3.13-11build1 libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 libgssapi-krb5-21.17-6ubuntu4.1 -libharfbuzz0b2.6.4-1ubuntu4 +libharfbuzz0b2.6.4-1ubuntu4.2 libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 From 48fce61c1e5608b76808377ab2c8a1fe6097bbbc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 22 Jul 2022 14:59:41 +0000 Subject: [PATCH 1243/2257] 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 71899f9..d207521 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220720.10-unstable -jellyfin-web20220720.3-unstable +jellyfin-server20220722.1-unstable +jellyfin-web20220721.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From c859c363b9b75ce3095a5a451960ee6bf3f6dea3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Jul 2022 19:09:52 +0200 Subject: [PATCH 1244/2257] 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 d207521..98d6955 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220722.1-unstable -jellyfin-web20220721.3-unstable +jellyfin-server20220724.7-unstable +jellyfin-web20220724.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 569aea0b40e647b5e1c3f65cbf7d4583135af768 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 25 Jul 2022 13:59:38 +0200 Subject: [PATCH 1245/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 98d6955..73194e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220724.7-unstable +jellyfin-server20220725.4-unstable jellyfin-web20220724.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a69c1d1d210599680fbea3f17edead654abdf9b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Jul 2022 05:47:13 +0200 Subject: [PATCH 1246/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 73194e9..28daaf8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal jellyfin-server20220725.4-unstable -jellyfin-web20220724.3-unstable +jellyfin-web20220727.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 106c782e658a44605fc5e0b0533d3c59e4157f76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Aug 2022 19:16:14 +0200 Subject: [PATCH 1247/2257] 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 28daaf8..0e122b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220725.4-unstable -jellyfin-web20220727.4-unstable +jellyfin-server20220801.5-unstable +jellyfin-web20220729.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From d9773b48debd475dfaad19295365b9e396d56cf1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Aug 2022 22:00:13 +0200 Subject: [PATCH 1248/2257] 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 c71e985..97564e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server10.8.1-1 -jellyfin-web10.8.1-1 +jellyfin-server10.8.2-1 +jellyfin-web10.8.2-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From cddb35d1b61b091a6fa5df4cc5e835cc3f8cf6db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Aug 2022 02:00:12 +0200 Subject: [PATCH 1249/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0e122b1..425ecd6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220801.5-unstable +jellyfin-server20220801.7-unstable jellyfin-web20220729.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 39e19b73e688a17de48b0323b622ef40f93621a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Aug 2022 22:25:03 -0500 Subject: [PATCH 1250/2257] 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 97564e1..cca8c97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server10.8.2-1 -jellyfin-web10.8.2-1 +jellyfin-server10.8.3-1 +jellyfin-web10.8.3-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 7c3274df68fb1992c4e69c63de4adc14daa17ca1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 2 Aug 2022 20:00:44 +0200 Subject: [PATCH 1251/2257] 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 425ecd6..17f803b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-8-focal -jellyfin-server20220801.7-unstable -jellyfin-web20220729.1-unstable +jellyfin-ffmpeg55.1-1-focal +jellyfin-server20220802.7-unstable +jellyfin-web20220802.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From aa4dd12b4077b8f047963ccdb1e975932b682d7c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Aug 2022 22:59:10 +0200 Subject: [PATCH 1252/2257] 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 17f803b..09b3f78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-1-focal -jellyfin-server20220802.7-unstable -jellyfin-web20220802.4-unstable +jellyfin-server20220803.1-unstable +jellyfin-web20220803.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From c3fa5af3c7fa6dfb8d9e1e2af4d99aae49a3ff1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Aug 2022 22:29:50 -0500 Subject: [PATCH 1253/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cca8c97..700fc3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.0.1-8-focal +jellyfin-ffmpeg55.1-1-focal jellyfin-server10.8.3-1 jellyfin-web10.8.3-1 krb5-locales1.17-6ubuntu4.1 From 38f8063eb21d2448dcb67ebfdf3aa0df81e2a00b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Aug 2022 05:21:28 +0200 Subject: [PATCH 1254/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 700fc3f..034c6bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.3 +libxml22.9.10+dfsg-5ubuntu0.20.04.4 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From 9154aa07c094fbcf4829b3a113a2c6d0ee50e752 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 11 Aug 2022 05:21:52 +0200 Subject: [PATCH 1255/2257] 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 09b3f78..e983c7f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-1-focal jellyfin-server20220803.1-unstable -jellyfin-web20220803.5-unstable +jellyfin-web20220808.5-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -175,7 +175,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.3 +libxml22.9.10+dfsg-5ubuntu0.20.04.4 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From 15970d08a620d38f1571870ff751efced8859482 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Aug 2022 05:03:59 +0200 Subject: [PATCH 1256/2257] 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 034c6bf..c9e4b39 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-1-focal -jellyfin-server10.8.3-1 -jellyfin-web10.8.3-1 +jellyfin-server10.8.4-1 +jellyfin-web10.8.4-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 8f08dd772304a1b700c8fdb4bd6c30373b03f362 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Aug 2022 22:05:16 -0500 Subject: [PATCH 1257/2257] 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 e983c7f..258897e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-1-focal -jellyfin-server20220803.1-unstable -jellyfin-web20220808.5-unstable +jellyfin-server20220814.5-unstable +jellyfin-web20220813.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 574bbe716ab85996c4c17704b3b5b3edabd17534 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 14 Aug 2022 19:05:17 +0200 Subject: [PATCH 1258/2257] 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 258897e..82c3466 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-1-focal -jellyfin-server20220814.5-unstable -jellyfin-web20220813.4-unstable +jellyfin-server20220814.13-unstable +jellyfin-web20220814.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 832c5899d69725da4e7f497dae6baab09bd1c2cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Aug 2022 01:59:11 +0200 Subject: [PATCH 1259/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 82c3466..e3bf892 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-1-focal -jellyfin-server20220814.13-unstable +jellyfin-server20220814.14-unstable jellyfin-web20220814.7-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ffe90c3b5b3392efb7618eeb421b04e39630498e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Aug 2022 06:59:54 +0200 Subject: [PATCH 1260/2257] 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 e3bf892..e13f088 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1-1-focal -jellyfin-server20220814.14-unstable -jellyfin-web20220814.7-unstable +jellyfin-ffmpeg55.1-2-focal +jellyfin-server20220817.1-unstable +jellyfin-web20220816.4-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 75e996b5ed982cde5589caa16c32e00195795e53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Aug 2022 06:05:47 +0200 Subject: [PATCH 1261/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e13f088..57cb800 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal jellyfin-server20220817.1-unstable -jellyfin-web20220816.4-unstable +jellyfin-web20220817.19-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From bc6ccdba307b349c36d25be98aba5fda10aadc89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Aug 2022 23:05:54 -0500 Subject: [PATCH 1262/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c9e4b39..ce5e84e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1-1-focal +jellyfin-ffmpeg55.1-2-focal jellyfin-server10.8.4-1 jellyfin-web10.8.4-1 krb5-locales1.17-6ubuntu4.1 From 52f13d4d6698587b2f745e1c6d1721c71a0589a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 18 Aug 2022 21:00:11 +0200 Subject: [PATCH 1263/2257] 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 57cb800..d1792a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220817.1-unstable -jellyfin-web20220817.19-unstable +jellyfin-server20220818.6-unstable +jellyfin-web20220818.34-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 5637c462c736d4e1a52798db752c9ec011c63e89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 20 Aug 2022 19:59:08 +0200 Subject: [PATCH 1264/2257] 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 d1792a5..5e1e497 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220818.6-unstable -jellyfin-web20220818.34-unstable +jellyfin-server20220820.1-unstable +jellyfin-web20220819.23-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From df69b858eb8af0e31d2d3334f9ba438226f21088 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 21 Aug 2022 09:59:55 -0500 Subject: [PATCH 1265/2257] 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 5e1e497..61568b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220820.1-unstable -jellyfin-web20220819.23-unstable +jellyfin-server20220821.1-unstable +jellyfin-web20220821.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 7cb03e44cd036cf20232f68ce79f5d1039322c60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Aug 2022 19:07:07 +0200 Subject: [PATCH 1266/2257] 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 61568b0..6f8ea11 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220821.1-unstable -jellyfin-web20220821.2-unstable +jellyfin-server20220822.9-unstable +jellyfin-web20220822.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 40b370fc091354604e9ea6f3495a51d4fab91a01 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 22 Aug 2022 19:00:26 -0500 Subject: [PATCH 1267/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6f8ea11..394a6bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220822.9-unstable +jellyfin-server20220822.12-unstable jellyfin-web20220822.2-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f6245adfd45ba5f8f6337ffc6a580001a6753565 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Aug 2022 23:14:30 -0500 Subject: [PATCH 1268/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 394a6bb..1ebfca4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal jellyfin-server20220822.12-unstable -jellyfin-web20220822.2-unstable +jellyfin-web20220825.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From d1978efe6a78171460cf0c1bfb747491ae515357 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 25 Aug 2022 10:59:24 -0500 Subject: [PATCH 1269/2257] 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 1ebfca4..22a2c24 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220822.12-unstable -jellyfin-web20220825.1-unstable +jellyfin-server20220825.2-unstable +jellyfin-web20220825.8-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From b894e5394ea226d585e2b609ea5b8fccf01a0935 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Aug 2022 12:07:33 -0500 Subject: [PATCH 1270/2257] 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 22a2c24..dca934e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220825.2-unstable -jellyfin-web20220825.8-unstable +jellyfin-server20220827.3-unstable +jellyfin-web20220827.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 7f33bbc9ed29183d570d191280a3fd64a4ded7e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 31 Aug 2022 23:11:20 -0500 Subject: [PATCH 1271/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dca934e..e637bb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal jellyfin-server20220827.3-unstable -jellyfin-web20220827.3-unstable +jellyfin-web20220831.3-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 3f93e8a01ca37195bc27b6fbe65fa02712c92da1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 1 Sep 2022 11:01:16 -0500 Subject: [PATCH 1272/2257] 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 e637bb7..8ea7cd9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220827.3-unstable -jellyfin-web20220831.3-unstable +jellyfin-server20220901.2-unstable +jellyfin-web20220901.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 0ce0373b4af6da7a649a9e3508be8ab48e7260ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 4 Sep 2022 15:22:13 +0200 Subject: [PATCH 1273/2257] 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 8ea7cd9..511ff05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.12 +curl7.68.0-1ubuntu2.13 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1-2-focal -jellyfin-server20220901.2-unstable -jellyfin-web20220901.1-unstable +jellyfin-ffmpeg55.1.1-1-focal +jellyfin-server20220904.4-unstable +jellyfin-web20220903.12-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -59,7 +59,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.12 +libcurl47.68.0-1ubuntu2.13 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-8ubuntu1~20.04.2 @@ -202,7 +202,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022a-0ubuntu0.20.04 +tzdata2022c-0ubuntu0.20.04.0 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From e7bb1c9dc2658a243874a57b0a137ddeaf718b1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 7 Sep 2022 23:12:52 -0500 Subject: [PATCH 1274/2257] 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 ce5e84e..dcbdfd1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.12 +curl7.68.0-1ubuntu2.13 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1-2-focal +jellyfin-ffmpeg55.1.1-1-focal jellyfin-server10.8.4-1 jellyfin-web10.8.4-1 krb5-locales1.17-6ubuntu4.1 @@ -59,7 +59,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.12 +libcurl47.68.0-1ubuntu2.13 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-8ubuntu1~20.04.2 @@ -202,7 +202,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022a-0ubuntu0.20.04 +tzdata2022c-0ubuntu0.20.04.0 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From f4ac82b08d2e996f64a1a719a2bee850b2bffdda Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Sep 2022 06:13:03 +0200 Subject: [PATCH 1275/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 511ff05..5277265 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -38,7 +38,7 @@ hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal jellyfin-server20220904.4-unstable -jellyfin-web20220903.12-unstable +jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From 5f5154fd6a4809ef62530c8eea572cb55380bfbc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Sep 2022 07:07:50 +0200 Subject: [PATCH 1276/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5277265..b145553 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220904.4-unstable +jellyfin-server20220909.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 22f3518659af00015d814bf3e5f08bf87427d0e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Sep 2022 14:00:14 +0200 Subject: [PATCH 1277/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b145553..6c8e353 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220909.5-unstable +jellyfin-server20220909.12-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 25fa66121d2ceb752466af328b63d6bf269a9e3c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Sep 2022 14:03:35 +0200 Subject: [PATCH 1278/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6c8e353..9ad3afd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220909.12-unstable +jellyfin-server20220909.14-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0c519df354eb48c42a7e9966b8c518fe64ddf9af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 9 Sep 2022 21:07:40 +0200 Subject: [PATCH 1279/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9ad3afd..0230d73 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220909.14-unstable +jellyfin-server20220909.27-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b6d0ab7f7f6350ae6d3e1afd012f9ed437cec9fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Sep 2022 13:00:28 +0200 Subject: [PATCH 1280/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0230d73..a17938e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220909.27-unstable +jellyfin-server20220911.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cb9ae02f1c79e3cb57d8761beaf5d44f16e424ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Sep 2022 23:01:02 +0200 Subject: [PATCH 1281/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a17938e..81b4de0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220911.1-unstable +jellyfin-server20220911.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 613e8283b7e806846d62c6619ed3a068c778c6a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 11 Sep 2022 22:43:15 -0500 Subject: [PATCH 1282/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 81b4de0..7b041b6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220911.3-unstable +jellyfin-server20220912.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0731290384eafaf9e19321c7a6bf483df4cebca8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 12 Sep 2022 12:00:24 +0200 Subject: [PATCH 1283/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7b041b6..545f0e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220912.1-unstable +jellyfin-server20220912.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From dc76d5c3f1115bc9cef01aabd80f0f680adc710a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Sep 2022 02:03:27 +0200 Subject: [PATCH 1284/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 545f0e4..06247ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220912.2-unstable +jellyfin-server20220913.9-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From fca56cf1608fabb64b6ebe6a44af8fd5dca64889 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 14 Sep 2022 21:05:56 +0200 Subject: [PATCH 1285/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 06247ee..d209fac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220913.9-unstable +jellyfin-server20220914.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1552f3031b4886f0e0b6b2a91bffc44ea7cf3c3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Sep 2022 05:41:07 +0200 Subject: [PATCH 1286/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d209fac..01b11bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220914.4-unstable +jellyfin-server20220914.8-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 06f21d4fa498448329978aca72998dce4c1cdc33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Sep 2022 13:00:42 +0200 Subject: [PATCH 1287/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 01b11bd..5ed6d7d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220914.8-unstable +jellyfin-server20220915.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 094e45d1ecf9deb8fcaf9ac01618aff3dd8532a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Sep 2022 12:17:51 -0500 Subject: [PATCH 1288/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5ed6d7d..fdfe719 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220915.2-unstable +jellyfin-server20220915.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b9a43bf733d836b3268b474c89e889d33d890399 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 20 Sep 2022 15:39:19 +0200 Subject: [PATCH 1289/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 35e1af9..6f66469 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 0dc157752fad83b9f497e1feb19f89f0ad0bfaab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 20 Sep 2022 15:42:42 +0200 Subject: [PATCH 1290/2257] 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 fdfe719..6815265 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220915.5-unstable +jellyfin-server20220920.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -140,7 +140,7 @@ libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.3 +libsqlite3-03.31.1-4ubuntu0.4 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.16 From f7d2626b9a25988b852f1899dc8fa0bddfada25b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Sep 2022 23:17:30 -0500 Subject: [PATCH 1291/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4fc46ed..f3a2b71 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 a5079877d168e31fbf3bd2969df57ef6bdfb1e56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 21 Sep 2022 23:20:49 -0500 Subject: [PATCH 1292/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dcbdfd1..7b1170d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -140,7 +140,7 @@ libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.3 +libsqlite3-03.31.1-4ubuntu0.4 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.16 From 5d381cda9ff8decf8e85ef98bcc7da012a197556 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Sep 2022 06:01:57 -0500 Subject: [PATCH 1293/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6815265..2e89ce5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220920.4-unstable +jellyfin-server20220922.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From fb3a0b87e07612df736382385f5fcb5e9547490f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Sep 2022 05:35:31 +0200 Subject: [PATCH 1294/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2e89ce5..e2e541d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220922.1-unstable +jellyfin-server20220924.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6ac08f238d7f9c809528ee768a3ffff8ce6465f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Sep 2022 22:32:14 -0500 Subject: [PATCH 1295/2257] 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 7b1170d..5de0ccf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server10.8.4-1 -jellyfin-web10.8.4-1 +jellyfin-server10.8.5-1 +jellyfin-web10.8.5-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From afd4ab8ebc31a2931db4b1432c97001c75391370 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 25 Sep 2022 06:59:37 -0500 Subject: [PATCH 1296/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e2e541d..09fb4a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220924.1-unstable +jellyfin-server20220925.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8393ce71782501ce5b0990b0a2f59c33de92fe54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 25 Sep 2022 21:04:12 +0200 Subject: [PATCH 1297/2257] 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 09fb4a0..d92cd47 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,8 +36,8 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.1-1-focal -jellyfin-server20220925.3-unstable +jellyfin-ffmpeg55.1.1-2-focal +jellyfin-server20220925.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 18dfbe00e4b989197e19a671da52c62cf89a20ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 26 Sep 2022 17:03:23 +0200 Subject: [PATCH 1298/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d92cd47..4176f8e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20220925.4-unstable +jellyfin-server20220926.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 66fde82f7c074a2f447f3fcd29f67c32ba8da4b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 28 Sep 2022 16:03:04 -0500 Subject: [PATCH 1299/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4176f8e..a355c0f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20220926.5-unstable +jellyfin-server20220928.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8bfb062d34181e2f417c9fd2106abbeb200a039e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 28 Sep 2022 23:22:36 -0500 Subject: [PATCH 1300/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5de0ccf..3643403 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.1-1-focal +jellyfin-ffmpeg55.1.1-2-focal jellyfin-server10.8.5-1 jellyfin-web10.8.5-1 krb5-locales1.17-6ubuntu4.1 From d6d3b8d8af9a6d7ffef584d2840cec5b65e91384 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 29 Sep 2022 08:43:55 -0500 Subject: [PATCH 1301/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a355c0f..fde28ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20220928.2-unstable +jellyfin-server20220929.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 3961643d6e0d399668ad758710513728b3c73eaf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Sep 2022 13:03:18 +0200 Subject: [PATCH 1302/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fde28ea..2f47e9c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20220929.1-unstable +jellyfin-server20220930.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7bda8af630c64fc3aad374a0e4732f4957b8d1d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 Oct 2022 04:15:47 -0500 Subject: [PATCH 1303/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2f47e9c..8b061e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20220930.1-unstable +jellyfin-server20221003.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 388fe8aefd0685fbf95faf6769fd1b284a9fbecf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 4 Oct 2022 15:46:52 +0200 Subject: [PATCH 1304/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8b061e7..d3f5803 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20221003.1-unstable +jellyfin-server20221004.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a72844593517980a92dd1ea64a9bfdc6da66b3ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 5 Oct 2022 09:05:43 -0500 Subject: [PATCH 1305/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d3f5803..eec4f7b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20221004.1-unstable +jellyfin-server20221005.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7aa0aed9c15b89e43b7e39324fc8ec681aae8aa8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 6 Oct 2022 13:05:47 +0200 Subject: [PATCH 1306/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eec4f7b..d65b7f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20221005.2-unstable +jellyfin-server20221006.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 792bd6d6b3134328915044fef1241554dc496c44 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Oct 2022 09:17:48 +0200 Subject: [PATCH 1307/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d65b7f3..8cc66aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20221006.2-unstable +jellyfin-server20221007.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7778fdc8514c13534874f0ea6766f5c657306818 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Oct 2022 08:46:58 -0500 Subject: [PATCH 1308/2257] 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 8cc66aa..22aa9c8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,8 +36,8 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.1-2-focal -jellyfin-server20221007.4-unstable +jellyfin-ffmpeg55.1.2-1-focal +jellyfin-server20221007.27-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 72827b3ea1d908c7badccb0223b5923af6269057 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Oct 2022 15:01:31 -0500 Subject: [PATCH 1309/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 22aa9c8..774d44c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221007.27-unstable +jellyfin-server20221007.28-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c8d3f02e5bf2e561060e34467cb65a19c3f8c3db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 8 Oct 2022 15:34:44 +0200 Subject: [PATCH 1310/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 774d44c..4e97ad1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221007.28-unstable +jellyfin-server20221008.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a07a6bf51acdec9045008fb0b26acebf968d7a65 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 9 Oct 2022 01:13:32 -0500 Subject: [PATCH 1311/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4e97ad1..ee2bf01 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221008.3-unstable +jellyfin-server20221009.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ec6f07b69d2d5dd2b8c91e105c10b7f285b5baa4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 9 Oct 2022 15:34:07 +0200 Subject: [PATCH 1312/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ee2bf01..7f90b93 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221009.4-unstable +jellyfin-server20221009.7-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 7c64b3fe293260f6bf2e572425e18256404e82ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 Oct 2022 16:33:48 +0200 Subject: [PATCH 1313/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7f90b93..41000f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221009.7-unstable +jellyfin-server20221010.7-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5b094f8382142344968ca6d3d4880af80b429025 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 Oct 2022 16:39:23 +0200 Subject: [PATCH 1314/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 41000f7..1ca38c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221010.7-unstable +jellyfin-server20221010.10-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 07ff8362ac819f86e6b610b21f31825f22411f62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 Oct 2022 16:04:26 -0500 Subject: [PATCH 1315/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1ca38c1..27cbec4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221010.10-unstable +jellyfin-server20221010.13-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From fa37b053ae6d568ab7d3596f290381b27e53a9dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Oct 2022 01:22:37 -0500 Subject: [PATCH 1316/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 27cbec4..183926e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221010.13-unstable +jellyfin-server20221012.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ffd135f92e5601846b6bba609254aca9e92c9ef5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Oct 2022 17:06:38 +0200 Subject: [PATCH 1317/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 183926e..e288b05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221012.1-unstable +jellyfin-server20221012.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From b81f4782c7bde86878345768ce8399c34bcd5e9e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Oct 2022 17:03:06 -0500 Subject: [PATCH 1318/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e288b05..352da0b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221012.3-unstable +jellyfin-server20221012.8-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ccde1e9af39b6908c747c5d65690c6afc8c5fc84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 13 Oct 2022 06:19:21 +0200 Subject: [PATCH 1319/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3643403..06eee4b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,7 +36,7 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.1-2-focal +jellyfin-ffmpeg55.1.2-1-focal jellyfin-server10.8.5-1 jellyfin-web10.8.5-1 krb5-locales1.17-6ubuntu4.1 From 31a03d4dbb1bb737461faa106bced01c4acc05a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 17 Oct 2022 10:05:43 -0500 Subject: [PATCH 1320/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 352da0b..582f47f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221012.8-unstable +jellyfin-server20221017.16-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 565b674200de41210ccf5eb64e750f034c42862f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 Oct 2022 12:31:10 -0500 Subject: [PATCH 1321/2257] 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 582f47f..e041430 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,12 +37,12 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221017.16-unstable +jellyfin-server20221018.8-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 -libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 +libasn1-8-heimdal7.7.0+dfsg-1ubuntu1.1 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 libattr11:2.4.48-5 @@ -84,19 +84,19 @@ libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.6 libgpg-error01.37-1 libgraphite2-31.3.13-11build1 -libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 +libgssapi3-heimdal7.7.0+dfsg-1ubuntu1.1 libgssapi-krb5-21.17-6ubuntu4.1 libharfbuzz0b2.6.4-1ubuntu4.2 -libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 -libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 -libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 +libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1.1 +libheimbase1-heimdal7.7.0+dfsg-1ubuntu1.1 +libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1.1 libhogweed53.5.1+really3.5.1-2ubuntu0.2 -libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 +libhx509-5-heimdal7.7.0+dfsg-1ubuntu1.1 libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1.1 -libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 +libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1.1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 @@ -129,7 +129,7 @@ libpng16-161.6.37-2 libprocps82:3.3.16-1ubuntu2.3 libpsl50.21.0-1ubuntu1 libreadline88.0-4 -libroken18-heimdal7.7.0+dfsg-1ubuntu1 +libroken18-heimdal7.7.0+dfsg-1ubuntu1.1 librtmp12.4+20151223.gitfa8646d.1-2build1 libsasl2-22.1.27+dfsg-2ubuntu0.1 libsasl2-modules2.1.27+dfsg-2ubuntu0.1 @@ -157,7 +157,7 @@ libvorbisenc21.3.6-2ubuntu1 libvpx61.8.2-1build1 libwebp60.6.1-2ubuntu0.20.04.1 libwebpmux30.6.1-2ubuntu0.20.04.1 -libwind0-heimdal7.7.0+dfsg-1ubuntu1 +libwind0-heimdal7.7.0+dfsg-1ubuntu1.1 libx11-62:1.6.9-2ubuntu1.2 libx11-data2:1.6.9-2ubuntu1.2 libx11-xcb12:1.6.9-2ubuntu1.2 From 95a1253b249b945005eb4aad926ab5eceb0b194b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 18 Oct 2022 19:47:06 -0500 Subject: [PATCH 1322/2257] 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 e041430..f3e106f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,8 +36,8 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-1-focal -jellyfin-server20221018.8-unstable +jellyfin-ffmpeg55.1.2-2-focal +jellyfin-server20221018.14-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 21381451e197bed15ab8ebf4c5f38451ba5fe79d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Oct 2022 15:48:52 +0200 Subject: [PATCH 1323/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f3e106f..d60932f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221018.14-unstable +jellyfin-server20221019.17-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From f38cb6776609fdce94beca0c83192b6401f3c519 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Oct 2022 23:03:53 +0200 Subject: [PATCH 1324/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d60932f..e0a2406 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221019.17-unstable +jellyfin-server20221019.27-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 59e1abd8f1f73b5d13829f853f3e1d2e2b427c05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Oct 2022 06:07:23 +0200 Subject: [PATCH 1325/2257] 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 06eee4b..296107d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,13 +36,13 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-1-focal +jellyfin-ffmpeg55.1.2-2-focal jellyfin-server10.8.5-1 jellyfin-web10.8.5-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 -libasn1-8-heimdal7.7.0+dfsg-1ubuntu1 +libasn1-8-heimdal7.7.0+dfsg-1ubuntu1.1 libass91:0.14.0-2 libassuan02.5.3-7ubuntu2 libattr11:2.4.48-5 @@ -84,19 +84,19 @@ libgmp102:6.2.0+dfsg-4 libgnutls303.6.13-2ubuntu1.6 libgpg-error01.37-1 libgraphite2-31.3.13-11build1 -libgssapi3-heimdal7.7.0+dfsg-1ubuntu1 +libgssapi3-heimdal7.7.0+dfsg-1ubuntu1.1 libgssapi-krb5-21.17-6ubuntu4.1 libharfbuzz0b2.6.4-1ubuntu4.2 -libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1 -libheimbase1-heimdal7.7.0+dfsg-1ubuntu1 -libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1 +libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1.1 +libheimbase1-heimdal7.7.0+dfsg-1ubuntu1.1 +libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1.1 libhogweed53.5.1+really3.5.1-2ubuntu0.2 -libhx509-5-heimdal7.7.0+dfsg-1ubuntu1 +libhx509-5-heimdal7.7.0+dfsg-1ubuntu1.1 libicu6666.1-2ubuntu2.1 libidn2-02.2.0-2 libk5crypto31.17-6ubuntu4.1 libkeyutils11.6-6ubuntu1.1 -libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1 +libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1.1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2 @@ -129,7 +129,7 @@ libpng16-161.6.37-2 libprocps82:3.3.16-1ubuntu2.3 libpsl50.21.0-1ubuntu1 libreadline88.0-4 -libroken18-heimdal7.7.0+dfsg-1ubuntu1 +libroken18-heimdal7.7.0+dfsg-1ubuntu1.1 librtmp12.4+20151223.gitfa8646d.1-2build1 libsasl2-22.1.27+dfsg-2ubuntu0.1 libsasl2-modules2.1.27+dfsg-2ubuntu0.1 @@ -157,7 +157,7 @@ libvorbisenc21.3.6-2ubuntu1 libvpx61.8.2-1build1 libwebp60.6.1-2ubuntu0.20.04.1 libwebpmux30.6.1-2ubuntu0.20.04.1 -libwind0-heimdal7.7.0+dfsg-1ubuntu1 +libwind0-heimdal7.7.0+dfsg-1ubuntu1.1 libx11-62:1.6.9-2ubuntu1.2 libx11-data2:1.6.9-2ubuntu1.2 libx11-xcb12:1.6.9-2ubuntu1.2 From 43c62549759b00f44dabf59942ce19303aee78f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 26 Oct 2022 09:19:57 -0500 Subject: [PATCH 1326/2257] 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 e0a2406..4595dbe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221019.27-unstable +jellyfin-server20221026.12-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -99,7 +99,7 @@ libkeyutils11.6-6ubuntu1.1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1.1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 -libksba81.3.5-2 +libksba81.3.5-2ubuntu0.20.04.1 libldap-2.4-22.4.49+dfsg-2ubuntu1.9 libldap-common2.4.49+dfsg-2ubuntu1.9 libllvm111:11.0.0-2~ubuntu20.04.1 From 8f328b0d2d6edf04ebe9ddf0b227afa7fa4870d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 Oct 2022 05:49:00 +0200 Subject: [PATCH 1327/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 296107d..b8ba504 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -99,7 +99,7 @@ libkeyutils11.6-6ubuntu1.1 libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1.1 libkrb5-31.17-6ubuntu4.1 libkrb5support01.17-6ubuntu4.1 -libksba81.3.5-2 +libksba81.3.5-2ubuntu0.20.04.1 libldap-2.4-22.4.49+dfsg-2ubuntu1.9 libldap-common2.4.49+dfsg-2ubuntu1.9 libllvm111:11.0.0-2~ubuntu20.04.1 From c9ed722e8d34615ee81fd4d7637ad10676260eaa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 Oct 2022 17:00:45 -0500 Subject: [PATCH 1328/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4595dbe..69bdb94 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221026.12-unstable +jellyfin-server20221027.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 514dcc4b32e03fc647bc50686b05cd9354156173 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 06:39:14 +0200 Subject: [PATCH 1329/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 69bdb94..58e30dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221027.1-unstable +jellyfin-server20221028.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8ba972f571c4875b8482f6b669fdc52c6b64d542 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 18:03:16 +0200 Subject: [PATCH 1330/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 58e30dc..db5586a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221028.2-unstable +jellyfin-server20221028.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 94147db98b4d6dcfa9a6d522318817e06627da5e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 17:59:49 -0500 Subject: [PATCH 1331/2257] Bot Updating Package Versions --- package_versions.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index db5586a..d6dd735 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,8 +36,8 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server20221028.3-unstable +jellyfin-ffmpeg55.1.2-3-focal +jellyfin-server20221028.11-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -102,7 +102,6 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2ubuntu0.20.04.1 libldap-2.4-22.4.49+dfsg-2ubuntu1.9 libldap-common2.4.49+dfsg-2ubuntu1.9 -libllvm111:11.0.0-2~ubuntu20.04.1 libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 @@ -168,7 +167,6 @@ libxcb11.14-2 libxcb-dri2-01.14-2 libxcb-dri3-01.14-2 libxcb-present01.14-2 -libxcb-randr01.14-2 libxcb-render01.14-2 libxcb-shm01.14-2 libxcb-sync11.14-2 From 2ff50259c5f6f0fed29e8074a36973275512beae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 23:26:15 -0500 Subject: [PATCH 1332/2257] Bot Updating Package Versions --- package_versions.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b8ba504..dfec2f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-2-focal -jellyfin-server10.8.5-1 -jellyfin-web10.8.5-1 +jellyfin-ffmpeg55.1.2-3-focal +jellyfin-server10.8.6-1 +jellyfin-web10.8.6-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -102,7 +102,6 @@ libkrb5support01.17-6ubuntu4.1 libksba81.3.5-2ubuntu0.20.04.1 libldap-2.4-22.4.49+dfsg-2ubuntu1.9 libldap-common2.4.49+dfsg-2ubuntu1.9 -libllvm111:11.0.0-2~ubuntu20.04.1 libllvm121:12.0.0-3ubuntu1~20.04.5 liblz4-11.9.2-2ubuntu0.20.04.1 liblzma55.2.4-1ubuntu1 @@ -168,7 +167,6 @@ libxcb11.14-2 libxcb-dri2-01.14-2 libxcb-dri3-01.14-2 libxcb-present01.14-2 -libxcb-randr01.14-2 libxcb-render01.14-2 libxcb-shm01.14-2 libxcb-sync11.14-2 From 88a063ec761331213cef710b3890881ac09e546d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 29 Oct 2022 07:14:20 +0200 Subject: [PATCH 1333/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d6dd735..fffdf65 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-3-focal -jellyfin-server20221028.11-unstable +jellyfin-server20221029.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 2b94150b6c8f95c70c12c915a3998ec812dc18ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 29 Oct 2022 07:00:52 -0500 Subject: [PATCH 1334/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fffdf65..c74b5b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-3-focal -jellyfin-server20221029.1-unstable +jellyfin-server20221029.7-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5bfada186ea95a147cd3341c88651ab34c40544c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 30 Oct 2022 09:01:53 -0500 Subject: [PATCH 1335/2257] 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 c74b5b8..2d63b69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -36,8 +36,8 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-3-focal -jellyfin-server20221029.7-unstable +jellyfin-ffmpeg55.1.2-4-focal +jellyfin-server20221030.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -167,6 +167,7 @@ libxcb11.14-2 libxcb-dri2-01.14-2 libxcb-dri3-01.14-2 libxcb-present01.14-2 +libxcb-randr01.14-2 libxcb-render01.14-2 libxcb-shm01.14-2 libxcb-sync11.14-2 From 7d9602ad9856d978aed8eb031c6b8fb8e2aac1af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 30 Oct 2022 15:59:46 -0500 Subject: [PATCH 1336/2257] 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 2d63b69..105cb24 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.13 +curl7.68.0-1ubuntu2.14 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221030.5-unstable +jellyfin-server20221030.7-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -59,7 +59,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.13 +libcurl47.68.0-1ubuntu2.14 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-8ubuntu1~20.04.2 @@ -201,7 +201,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022c-0ubuntu0.20.04.0 +tzdata2022e-0ubuntu0.20.04.0 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From 1ed6c970b847fc9ed6fefca6d58d64daa4fca15d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Nov 2022 06:07:37 +0100 Subject: [PATCH 1337/2257] Bot Updating Package Versions --- package_versions.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dfec2f0..8bc06bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 ca-certificates20211016~20.04.1 coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.13 +curl7.68.0-1ubuntu2.14 dash0.5.10.2-6 debconf1.5.73 debianutils4.9.1 @@ -36,9 +36,9 @@ grep3.4-1 gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-3-focal -jellyfin-server10.8.6-1 -jellyfin-web10.8.6-1 +jellyfin-ffmpeg55.1.2-4-focal +jellyfin-server10.8.7-1 +jellyfin-web10.8.7-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 @@ -59,7 +59,7 @@ libcap-ng00.7.9-2.1build1 libc-bin2.31-0ubuntu9.7 libcom-err21.45.5-2ubuntu1 libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.13 +libcurl47.68.0-1ubuntu2.14 libdb5.35.3.28+dfsg1-0.6ubuntu2 libdebconfclient00.251ubuntu1 libdrm22.4.107-8ubuntu1~20.04.2 @@ -167,6 +167,7 @@ libxcb11.14-2 libxcb-dri2-01.14-2 libxcb-dri3-01.14-2 libxcb-present01.14-2 +libxcb-randr01.14-2 libxcb-render01.14-2 libxcb-shm01.14-2 libxcb-sync11.14-2 @@ -200,7 +201,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022c-0ubuntu0.20.04.0 +tzdata2022e-0ubuntu0.20.04.0 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From ba0556e73838b530938307b3c2957385da72446b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 1 Nov 2022 19:03:08 +0100 Subject: [PATCH 1338/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 105cb24..5853e8f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221030.7-unstable +jellyfin-server20221101.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From c4dd5258b55691bfce396692108abad43bafc74d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Nov 2022 17:18:22 +0100 Subject: [PATCH 1339/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5853e8f..8d393da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221101.5-unstable +jellyfin-server20221103.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a3c2187e7b81f690a1598a45f3065eba1d19ae5c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Nov 2022 13:01:29 +0100 Subject: [PATCH 1340/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8d393da..ca31cde 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221103.1-unstable +jellyfin-server20221105.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 13750d69dfcea47c552591c2993d294084ddacd2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Nov 2022 20:00:22 +0100 Subject: [PATCH 1341/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ca31cde..5501e1c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221105.5-unstable +jellyfin-server20221105.8-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 8de32546a84f1602d6a2caac299bfa2bfbf8cde9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Nov 2022 15:16:32 +0100 Subject: [PATCH 1342/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5501e1c..aa0e4b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221105.8-unstable +jellyfin-server20221107.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 849a82826a60d6beed8fbd81a09a9d7da0a53d44 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Nov 2022 15:08:48 +0100 Subject: [PATCH 1343/2257] 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 aa0e4b3..c7f4f68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221107.1-unstable +jellyfin-server20221108.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -139,7 +139,7 @@ libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.4 +libsqlite3-03.31.1-4ubuntu0.5 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.16 @@ -201,7 +201,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022e-0ubuntu0.20.04.0 +tzdata2022f-0ubuntu0.20.04.0 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From 739092802a00e410b825c212056846cf377a1513 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Nov 2022 07:40:11 -0600 Subject: [PATCH 1344/2257] 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 c7f4f68..cc0f96e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221108.3-unstable +jellyfin-server20221109.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -123,7 +123,7 @@ libpam-runtime1.3.1-5ubuntu4.3 libpciaccess00.16-0ubuntu1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 -libpixman-1-00.38.4-0ubuntu1 +libpixman-1-00.38.4-0ubuntu2.1 libpng16-161.6.37-2 libprocps82:3.3.16-1ubuntu2.3 libpsl50.21.0-1ubuntu1 From a5b8dc6523e95268e6c5eae1d058bb4d6fd04c5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Nov 2022 03:54:49 +0100 Subject: [PATCH 1345/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cc0f96e..cf51b70 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221109.1-unstable +jellyfin-server20221110.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 6f2ef7631dfc2ac6f9711be004132ed1d9afa05f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 9 Nov 2022 21:29:04 -0600 Subject: [PATCH 1346/2257] 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 8bc06bd..3f5ff0b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -123,7 +123,7 @@ libpam-runtime1.3.1-5ubuntu4.3 libpciaccess00.16-0ubuntu1 libpcre2-8-010.34-7 libpcre32:8.39-12build1 -libpixman-1-00.38.4-0ubuntu1 +libpixman-1-00.38.4-0ubuntu2.1 libpng16-161.6.37-2 libprocps82:3.3.16-1ubuntu2.3 libpsl50.21.0-1ubuntu1 @@ -139,7 +139,7 @@ libsemanage13.0-1build2 libsemanage-common3.0-1build2 libsepol13.0-1 libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.4 +libsqlite3-03.31.1-4ubuntu0.5 libss21.45.5-2ubuntu1 libssh-40.9.3-2ubuntu2.2 libssl1.11.1.1f-1ubuntu2.16 @@ -201,7 +201,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022e-0ubuntu0.20.04.0 +tzdata2022f-0ubuntu0.20.04.0 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From f7169048f7c46be9362de9ae0f9c6c7dc03904ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Nov 2022 14:32:35 +0100 Subject: [PATCH 1347/2257] 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 36a2d3d..63131da 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 b6075101ca2efe90402132451610ad7630d3f714 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Nov 2022 07:37:06 -0600 Subject: [PATCH 1348/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cf51b70..7403ec2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221110.1-unstable +jellyfin-server20221111.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9551bb1f1018e47f2d4ae35f5eaa6fcb4f794010 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Nov 2022 12:01:15 +0100 Subject: [PATCH 1349/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7403ec2..61e5e8f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221111.2-unstable +jellyfin-server20221113.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From e64b6aedd9b00bb69ab98416d7598ade2aa168cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 13 Nov 2022 18:06:06 +0100 Subject: [PATCH 1350/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 61e5e8f..7201c93 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221113.1-unstable +jellyfin-server20221113.10-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From be1e53d7c6b12a019986001cf15c67f537ff6852 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 15 Nov 2022 11:08:21 -0600 Subject: [PATCH 1351/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7201c93..9110338 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221113.10-unstable +jellyfin-server20221115.6-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 46d5e8a1d24565664ac0885f4b2c275685c2c03b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Nov 2022 16:01:17 +0100 Subject: [PATCH 1352/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9110338..ff99e31 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221115.6-unstable +jellyfin-server20221116.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a8d4229a22dc741876a3b27e887872f104456c53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Nov 2022 04:13:55 +0100 Subject: [PATCH 1353/2257] 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 6bd1f60..5f7887b 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 784d0fa0adf1b953573ea984d7849507a8cabefa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Nov 2022 20:00:14 +0100 Subject: [PATCH 1354/2257] 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 ff99e31..6ffb21d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221116.3-unstable +jellyfin-server20221117.6-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -69,7 +69,7 @@ libdrm-nouveau22.4.107-8ubuntu1~20.04.2 libdrm-radeon12.4.107-8ubuntu1~20.04.2 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.4 +libexpat12.2.9-1ubuntu0.5 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 From 50674ceb5daa788891186bb0965120e70b7a4702 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Nov 2022 09:00:28 -0600 Subject: [PATCH 1355/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ffb21d..8dca794 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221117.6-unstable +jellyfin-server20221119.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 73771b930627cdcaf2aab75e692a11c048ef1283 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 21 Nov 2022 01:01:00 -0600 Subject: [PATCH 1356/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8dca794..8b0acd3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221119.2-unstable +jellyfin-server20221121.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From cc1d90d2d90118f215c7473bd78d57db9608c2ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Nov 2022 11:05:56 -0600 Subject: [PATCH 1357/2257] 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 8b0acd3..8a83171 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221121.1-unstable +jellyfin-server20221122.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -201,7 +201,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022f-0ubuntu0.20.04.0 +tzdata2022f-0ubuntu0.20.04.1 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From 3c88158ab768023dcf4b4324e21ed26498fd5e63 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Nov 2022 01:00:23 +0100 Subject: [PATCH 1358/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8a83171..e070b53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221122.2-unstable +jellyfin-server20221122.9-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 85f00fc35a2ee6bdcaa72caa3b287d46322d264b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Nov 2022 12:59:11 -0600 Subject: [PATCH 1359/2257] 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 e070b53..e726907 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221122.9-unstable +jellyfin-server20221123.13-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -69,7 +69,7 @@ libdrm-nouveau22.4.107-8ubuntu1~20.04.2 libdrm-radeon12.4.107-8ubuntu1~20.04.2 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.5 +libexpat12.2.9-1ubuntu0.6 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 From d949100f05c0eb612ff4fe53f9ed61c8ac8e18ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Nov 2022 20:55:20 -0600 Subject: [PATCH 1360/2257] 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 3f5ff0b..bbe546a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -69,7 +69,7 @@ libdrm-nouveau22.4.107-8ubuntu1~20.04.2 libdrm-radeon12.4.107-8ubuntu1~20.04.2 libedit23.1-20191231-1 libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.4 +libexpat12.2.9-1ubuntu0.6 libext2fs21.45.5-2ubuntu1 libfdisk12.34-0.1ubuntu9.3 libffi73.3-4 @@ -201,7 +201,7 @@ sed4.7-1 sensible-utils0.0.12+nmu1 sysvinit-utils2.96-2.1ubuntu1 tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022f-0ubuntu0.20.04.0 +tzdata2022f-0ubuntu0.20.04.1 ubuntu-keyring2020.02.11.4 ucf3.0038+nmu1 util-linux2.34-0.1ubuntu9.3 From 2ff93e24011a9e620c6a25738c56d966b434af85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Nov 2022 15:59:01 +0100 Subject: [PATCH 1361/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e726907..7ab93bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221123.13-unstable +jellyfin-server20221124.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d7cf68a8cf267a35361dc315b0de7244f4da1f29 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 24 Nov 2022 15:58:54 -0600 Subject: [PATCH 1362/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7ab93bd..1890ad0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221124.1-unstable +jellyfin-server20221124.11-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 40377da0eae0c7193349d7097f19b2ccd12fab8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 26 Nov 2022 16:00:20 +0100 Subject: [PATCH 1363/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1890ad0..3f498c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221124.11-unstable +jellyfin-server20221126.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 1844aa0009abbd51bba13251202d5fc9d5daddc8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Nov 2022 03:28:48 +0100 Subject: [PATCH 1364/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3f498c2..1a26d4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221126.2-unstable +jellyfin-server20221127.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9e11292a6240927a0f3d0201c203a65b8b9cc3ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Nov 2022 07:59:14 -0600 Subject: [PATCH 1365/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a26d4e..612454b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221127.4-unstable +jellyfin-server20221127.9-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 17840fe32625b9df9f66e6be05f5c359ff3e46cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 27 Nov 2022 15:00:20 -0600 Subject: [PATCH 1366/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 612454b..ca207a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221127.9-unstable +jellyfin-server20221127.15-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 514effa67b1cff64ea3851532e4a5d0ae7233cda Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Nov 2022 20:57:14 +0100 Subject: [PATCH 1367/2257] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f3a2b71..8758eeb 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 daa25416e9c33adaf924b85f7b267144f5ccc397 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Nov 2022 20:58:37 +0100 Subject: [PATCH 1368/2257] 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 7df1f84..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 458f441d9002ed8f6f041bc0c898c1a19c78267e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Nov 2022 20:59:57 +0100 Subject: [PATCH 1369/2257] 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 5f7887b..e3b909c 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -7,7 +7,7 @@ jobs: external-trigger-master: 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/master' diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index dcacc01..30b1245 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 cb747d6..8c024fa 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-jellyfin/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-jellyfin/blob/master/.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-jellyfin/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-jellyfin/blob/master/.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-jellyfin/blob/master/.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 acb1520..e0ea30d 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -7,7 +7,7 @@ jobs: package-trigger-master: 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/master' diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index ee063ae..e99ff81 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 834c22d2f83c9cdd5ef79b001f079b40cfea398c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Nov 2022 21:02:50 +0100 Subject: [PATCH 1370/2257] 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 bbe546a..d7fa81e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,8 +37,8 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server10.8.7-1 -jellyfin-web10.8.7-1 +jellyfin-server10.8.8-1 +jellyfin-web10.8.8-1 krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 libapt-pkg6.02.0.9 From ab0c8abb3cf536c121a2071422f920f93824dba0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 30 Nov 2022 21:57:33 +0100 Subject: [PATCH 1371/2257] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6f66469..6b5e788 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 6d51db24cfcaa3c9cab9745ec4666f4a9be7e196 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 30 Nov 2022 21:58:54 +0100 Subject: [PATCH 1372/2257] 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 7df1f84..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] - -<!--- 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. ---> - -<!--- Provide a general summary of the bug in the Title above --> - ------------------------------- - -## Expected Behavior -<!--- Tell us what should happen --> - -## Current Behavior -<!--- Tell us what happens instead of the expected behavior --> - -## Steps to Reproduce -<!--- Provide a link to a live example, or an unambiguous set of steps to --> -<!--- reproduce this bug. Include code to reproduce, if relevant --> -1. -2. -3. -4. - -## Environment -**OS:** -**CPU architecture:** x86_64/arm32/arm64 -**How docker service was installed:** -<!--- ie. from the official docker repo, from the distro repo, nas OS provided, etc. --> -<!--- Providing context helps us come up with a solution that is most useful in the real world --> - -## Command used to create docker container (run/create/compose/screenshot) -<!--- Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container --> - -## Docker logs -<!--- Provide a full docker log, output of "docker logs jellyfin" --> 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] - -<!--- 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. ---> - -<!--- If this acts as a feature request please ask yourself if this modification is something the whole userbase will benefit from ---> -<!--- If this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> - -<!--- Provide a general summary of the request in the Title above --> - ------------------------------- - -## Desired Behavior -<!--- Tell us what should happen --> - -## Current Behavior -<!--- Tell us what happens instead of the expected behavior --> - -## Alternatives Considered -<!--- Tell us what other options you have tried or considered --> From 6b5b43b4ea88d00804454177953cd9b21c340fa3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 30 Nov 2022 15:00:29 -0600 Subject: [PATCH 1373/2257] 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] <title>" +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 63131da..ed3d7aa 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 dcacc01..30b1245 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 1d1501d..49f9228 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-jellyfin/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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 e183a19..c542ffa 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 ee063ae..e99ff81 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 6844cea5cf40201642ac19eccb5d761f3bf0c6c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 30 Nov 2022 15:03:33 -0600 Subject: [PATCH 1374/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ca207a4..68ab1d8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221127.15-unstable +jellyfin-server20221130.11-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d7490c26af0d36b8fb55c20c226b49e8959c7da3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Dec 2022 15:59:29 +0100 Subject: [PATCH 1375/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 68ab1d8..784ce4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221130.11-unstable +jellyfin-server20221201.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 63552fefdbf409e1e26fa65eaccc75155dbaf388 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Dec 2022 06:00:41 +0100 Subject: [PATCH 1376/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 784ce4f..fef19ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221201.3-unstable +jellyfin-server20221202.1-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From ffcf0bd02b111fd416d8f7ad76999917e196a49d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Dec 2022 14:13:31 +0100 Subject: [PATCH 1377/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fef19ef..ffe0196 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221202.1-unstable +jellyfin-server20221202.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0ddea80bb9163aeecef76f1a48c8ec4c7c8964f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 2 Dec 2022 20:59:31 +0100 Subject: [PATCH 1378/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ffe0196..0422891 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221202.2-unstable +jellyfin-server20221202.5-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From d6843c6934042d403aadb5084db7a2ad0c7a4b8d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Dec 2022 18:00:22 +0100 Subject: [PATCH 1379/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0422891..07ab871 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221202.5-unstable +jellyfin-server20221203.6-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 63a786622d18442e398a3156bf3a7d8c3555e245 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Dec 2022 07:15:14 -0600 Subject: [PATCH 1380/2257] 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 07ab871..83b6399 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221203.6-unstable +jellyfin-server20221205.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 @@ -174,7 +174,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.4 +libxml22.9.10+dfsg-5ubuntu0.20.04.5 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From a18ca3d158393f76402f7f620f62341ba0736f69 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Dec 2022 21:00:21 +0100 Subject: [PATCH 1381/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 83b6399..aa60087 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221205.4-unstable +jellyfin-server20221205.8-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 5503be210c4fcf53eab9d263c49063865e1116f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Dec 2022 20:11:32 -0600 Subject: [PATCH 1382/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aa60087..1286427 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221205.8-unstable +jellyfin-server20221206.2-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 0c6bb3b1533edaec00647a9d7806a2556ce34089 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Dec 2022 08:59:06 -0600 Subject: [PATCH 1383/2257] 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 1286427..d957e7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 -ca-certificates20211016~20.04.1 +ca-certificates20211016ubuntu0.20.04.1 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.14 dash0.5.10.2-6 @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221206.2-unstable +jellyfin-server20221206.4-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From a4e90eb36b5148ecf7b73f5f4183bc8d787ba1da Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 7 Dec 2022 10:52:25 +0000 Subject: [PATCH 1384/2257] Rebase nightly to jammy, migrate to s6v3 --- .github/workflows/call_invalid_helper.yml | 12 ++++++++++++ Dockerfile | 14 ++++++-------- Dockerfile.aarch64 | 12 ++++-------- Dockerfile.armhf | 12 ++++-------- README.md | 1 + readme-vars.yml | 1 + .../dependencies.d/init-jellyfin-video | 0 .../dependencies.d/init-config | 0 .../s6-rc.d/init-jellyfin-config/run} | 2 +- .../s6-rc.d/init-jellyfin-config/type | 1 + .../s6-overlay/s6-rc.d/init-jellyfin-config/up | 1 + .../dependencies.d/init-jellyfin-config | 0 .../s6-rc.d/init-jellyfin-video/run} | 0 .../s6-overlay/s6-rc.d/init-jellyfin-video/type | 1 + .../s6-overlay/s6-rc.d/init-jellyfin-video/up | 1 + .../svc-jellyfin/dependencies.d/init-services | 0 .../s6-rc.d/svc-jellyfin/notification-fd | 1 + root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 13 +++++++++++++ root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type | 1 + .../user/contents.d/init-jellyfin-config | 0 .../s6-rc.d/user/contents.d/init-jellyfin-video | 0 .../s6-rc.d/user/contents.d/svc-jellyfin | 0 root/etc/services.d/jellyfin/run | 17 ----------------- 23 files changed, 48 insertions(+), 42 deletions(-) create mode 100644 .github/workflows/call_invalid_helper.yml create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/dependencies.d/init-config rename root/etc/{cont-init.d/30-config => s6-overlay/s6-rc.d/init-jellyfin-config/run} (92%) mode change 100644 => 100755 create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config rename root/etc/{cont-init.d/40-gid-video => s6-overlay/s6-rc.d/init-jellyfin-video/run} (100%) mode change 100644 => 100755 create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/dependencies.d/init-services create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-config create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-jellyfin delete mode 100644 root/etc/services.d/jellyfin/run 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 6d0a8a8..9ba0748 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:focal +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy # set version label ARG BUILD_DATE @@ -12,14 +14,10 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -33,7 +31,7 @@ RUN \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ - libssl1.1 \ + libssl3 \ mesa-va-drivers && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index cea09f7..a908ea2 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy # set version label ARG BUILD_DATE @@ -12,16 +14,10 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -38,7 +34,7 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl1.1 && \ + libssl3 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index ad5471a..95eded8 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-jammy # set version label ARG BUILD_DATE @@ -12,16 +14,10 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -38,7 +34,7 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl1.1 && \ + libssl3 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/README.md b/README.md index 0847423..9ba7a1d 100644 --- a/README.md +++ b/README.md @@ -300,6 +300,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **07.12.22:** - Rebase nightly to Jammy, migrate to s6v3. * **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. * **22.09.21:** - Pull only the server, web and ffmpeg packages instead of the wrapper. diff --git a/readme-vars.yml b/readme-vars.yml index 78f5cc5..93abfba 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -97,6 +97,7 @@ app_setup_block: | # changelog changelogs: + - { date: "07.12.22:", desc: "Rebase nightly to Jammy, migrate to s6v3." } - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - { date: "25.12.21:", desc: "Fix video device group perms error message." } - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/dependencies.d/init-config b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-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-jellyfin-config/run old mode 100644 new mode 100755 similarity index 92% rename from root/etc/cont-init.d/30-config rename to root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run index 25404be..b35c3f8 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run @@ -7,7 +7,7 @@ mkdir -p \ /transcode # permissions -chown abc:abc \ +lsiown abc:abc \ /config \ /config/* \ /config/data/transcodes \ diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up new file mode 100644 index 0000000..4469ebd --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run old mode 100644 new mode 100755 similarity index 100% rename from root/etc/cont-init.d/40-gid-video rename to root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up new file mode 100644 index 0000000..9c16049 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/dependencies.d/init-services b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/dependencies.d/init-services new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd @@ -0,0 +1 @@ +3 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run new file mode 100755 index 0000000..6196b0f --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -0,0 +1,13 @@ +#!/usr/bin/with-contenv bash + +export \ + JELLYFIN_DATA_DIR="/config/data" \ + JELLYFIN_CONFIG_DIR="/config" \ + JELLYFIN_LOG_DIR="/config/log" \ + JELLYFIN_CACHE_DIR="/config/cache" \ + JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" + +exec \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8096" \ + s6-setuidgid abc /usr/bin/jellyfin \ + --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type new file mode 100644 index 0000000..5883cff --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type @@ -0,0 +1 @@ +longrun diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-config b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-jellyfin b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-jellyfin new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run deleted file mode 100644 index 3611473..0000000 --- a/root/etc/services.d/jellyfin/run +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/with-contenv bash - -export \ - JELLYFIN_DATA_DIR="/config/data" \ - JELLYFIN_CONFIG_DIR="/config" \ - JELLYFIN_LOG_DIR="/config/log" \ - JELLYFIN_CACHE_DIR="/config/cache" \ - JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" - -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 /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg From 253d028d6bd7ae86ae38e11d227e3b4d409b523e Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 7 Dec 2022 10:53:11 +0000 Subject: [PATCH 1385/2257] Fix arm repos --- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a908ea2..1f32457 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -16,8 +16,8 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 95eded8..2ca3a7c 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -16,8 +16,8 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ From 4b07d0d41709fb2aa88a41fa691428dca16bc2f4 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 7 Dec 2022 14:19:21 +0000 Subject: [PATCH 1386/2257] Rebase master to Jammy, migrate to s6v3 --- .github/workflows/call_invalid_helper.yml | 12 ++++++++++++ Dockerfile | 12 +++++------- Dockerfile.aarch64 | 14 +++++--------- Dockerfile.armhf | 14 +++++--------- README.md | 1 + readme-vars.yml | 1 + .../dependencies.d/init-jellyfin-video | 0 .../dependencies.d/init-config | 0 .../s6-rc.d/init-jellyfin-config/run} | 2 +- .../s6-rc.d/init-jellyfin-config/type | 1 + .../s6-overlay/s6-rc.d/init-jellyfin-config/up | 1 + .../dependencies.d/init-jellyfin-config | 0 .../s6-rc.d/init-jellyfin-video/run} | 0 .../s6-overlay/s6-rc.d/init-jellyfin-video/type | 1 + .../s6-overlay/s6-rc.d/init-jellyfin-video/up | 1 + .../svc-jellyfin/dependencies.d/init-services | 0 .../s6-rc.d/svc-jellyfin/notification-fd | 1 + root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 13 +++++++++++++ root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type | 1 + .../user/contents.d/init-jellyfin-config | 0 .../s6-rc.d/user/contents.d/init-jellyfin-video | 0 .../s6-rc.d/user/contents.d/svc-jellyfin | 0 root/etc/services.d/jellyfin/run | 17 ----------------- 23 files changed, 49 insertions(+), 43 deletions(-) create mode 100644 .github/workflows/call_invalid_helper.yml create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/dependencies.d/init-config rename root/etc/{cont-init.d/30-config => s6-overlay/s6-rc.d/init-jellyfin-config/run} (92%) mode change 100644 => 100755 create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config rename root/etc/{cont-init.d/40-gid-video => s6-overlay/s6-rc.d/init-jellyfin-video/run} (100%) mode change 100644 => 100755 create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/dependencies.d/init-services create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-config create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-jellyfin delete mode 100644 root/etc/services.d/jellyfin/run 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 5bbce31..87a15c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:focal +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy # set version label ARG BUILD_DATE @@ -12,13 +14,9 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -32,7 +30,7 @@ RUN \ jellyfin-web \ libfontconfig1 \ libfreetype6 \ - libssl1.1 \ + libssl3 \ mesa-va-drivers && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 7af80e6..3cd1804 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy # set version label ARG BUILD_DATE @@ -12,15 +14,9 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -37,7 +33,7 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl1.1 && \ + libssl3 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index ce6901e..93e9273 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-jammy # set version label ARG BUILD_DATE @@ -12,15 +14,9 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - gnupg && \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu focal main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \ + echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN="jellyfin-server"; \ else \ @@ -37,7 +33,7 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl1.1 && \ + libssl3 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/README.md b/README.md index f295469..93d7080 100644 --- a/README.md +++ b/README.md @@ -303,6 +303,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **07.12.22:** - Rebase master to Jammy, migrate to s6v3. * **11.06.22:** - Switch to upstream repo's ffmpeg5 build. * **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. diff --git a/readme-vars.yml b/readme-vars.yml index 4b82972..84a2305 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -116,6 +116,7 @@ unraid_template_sync: false # changelog changelogs: + - { date: "07.12.22:", desc: "Rebase master to Jammy, migrate to s6v3." } - { date: "11.06.22:", desc: "Switch to upstream repo's ffmpeg5 build." } - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - { date: "25.12.21:", desc: "Fix video device group perms error message." } diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/dependencies.d/init-config b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-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-jellyfin-config/run old mode 100644 new mode 100755 similarity index 92% rename from root/etc/cont-init.d/30-config rename to root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run index 25404be..b35c3f8 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run @@ -7,7 +7,7 @@ mkdir -p \ /transcode # permissions -chown abc:abc \ +lsiown abc:abc \ /config \ /config/* \ /config/data/transcodes \ diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up new file mode 100644 index 0000000..4469ebd --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/cont-init.d/40-gid-video b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run old mode 100644 new mode 100755 similarity index 100% rename from root/etc/cont-init.d/40-gid-video rename to root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type new file mode 100644 index 0000000..bdd22a1 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up new file mode 100644 index 0000000..9c16049 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/dependencies.d/init-services b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/dependencies.d/init-services new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/notification-fd @@ -0,0 +1 @@ +3 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run new file mode 100755 index 0000000..6196b0f --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -0,0 +1,13 @@ +#!/usr/bin/with-contenv bash + +export \ + JELLYFIN_DATA_DIR="/config/data" \ + JELLYFIN_CONFIG_DIR="/config" \ + JELLYFIN_LOG_DIR="/config/log" \ + JELLYFIN_CACHE_DIR="/config/cache" \ + JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" + +exec \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8096" \ + s6-setuidgid abc /usr/bin/jellyfin \ + --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type new file mode 100644 index 0000000..5883cff --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/type @@ -0,0 +1 @@ +longrun diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-config b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-config new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-jellyfin b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-jellyfin new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/services.d/jellyfin/run b/root/etc/services.d/jellyfin/run deleted file mode 100644 index 792ef0c..0000000 --- a/root/etc/services.d/jellyfin/run +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/with-contenv bash - -export \ - JELLYFIN_DATA_DIR="/config/data" \ - JELLYFIN_CONFIG_DIR="/config" \ - JELLYFIN_LOG_DIR="/config/log" \ - JELLYFIN_CACHE_DIR="/config/cache" - -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 /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg \ - --webdir=/usr/share/jellyfin/web From d299a1fe53edf1ccbf48a863f11f5d325d6220f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Dec 2022 09:59:18 -0600 Subject: [PATCH 1387/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d957e7e..c5f3b2c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -37,7 +37,7 @@ gzip1.10-0ubuntu4 hostname3.23 init-system-helpers1.57 jellyfin-ffmpeg55.1.2-4-focal -jellyfin-server20221206.4-unstable +jellyfin-server20221207.3-unstable jellyfin-web20220906.1-unstable krb5-locales1.17-6ubuntu4.1 libacl12.2.53-6 From 9ab3761f17a7139069ae03b2888a4723c0086878 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Dec 2022 21:45:24 +0100 Subject: [PATCH 1388/2257] Bot Updating Package Versions --- package_versions.txt | 412 +++++++++++++++++++++---------------------- 1 file changed, 206 insertions(+), 206 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c5f3b2c..b774299 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,208 +1,208 @@ -adduser3.118ubuntu2 -apt2.0.9 -apt-utils2.0.9 -at3.1.23-1ubuntu1 -base-files11ubuntu5.5 -base-passwd3.5.47 -bash5.0-6ubuntu1.1 -bsdutils1:2.34-0.1ubuntu9.3 -bzip21.0.8-2 -ca-certificates20211016ubuntu0.20.04.1 -coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.14 -dash0.5.10.2-6 -debconf1.5.73 -debianutils4.9.1 -diffutils1:3.7-3 -dirmngr2.2.19-3ubuntu2.2 -dpkg1.19.7ubuntu3 -e2fsprogs1.45.5-2ubuntu1 -fdisk2.34-0.1ubuntu9.3 -findutils4.7.0-1ubuntu1 -fontconfig-config2.13.1-2ubuntu3 -fonts-dejavu-core2.37-1 -gcc-10-base10.3.0-1ubuntu1~20.04 -gnupg2.2.19-3ubuntu2.2 -gnupg-l10n2.2.19-3ubuntu2.2 -gnupg-utils2.2.19-3ubuntu2.2 -gpg2.2.19-3ubuntu2.2 -gpg-agent2.2.19-3ubuntu2.2 -gpgconf2.2.19-3ubuntu2.2 -gpgsm2.2.19-3ubuntu2.2 -gpgv2.2.19-3ubuntu2.2 -gpg-wks-client2.2.19-3ubuntu2.2 -gpg-wks-server2.2.19-3ubuntu2.2 -grep3.4-1 -gzip1.10-0ubuntu4 -hostname3.23 -init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-4-focal +adduser3.118ubuntu5 +apt2.4.8 +apt-utils2.4.8 +at3.2.5-1ubuntu1 +base-files12ubuntu4.2 +base-passwd3.5.52build1 +bash5.1-6ubuntu1 +bsdutils1:2.37.2-4ubuntu3 +ca-certificates20211016ubuntu0.22.04.1 +coreutils8.32-4.1ubuntu1 +curl7.81.0-1ubuntu1.6 +dash0.5.11+git20210903+057cd650a4ed-3build1 +debconf1.5.79ubuntu1 +debianutils5.5-1ubuntu2 +diffutils1:3.8-0ubuntu2 +dirmngr2.2.27-3ubuntu2.1 +dpkg1.21.1ubuntu2.1 +e2fsprogs1.46.5-2ubuntu1.1 +findutils4.8.0-1ubuntu3 +fontconfig-config2.13.1-4.2ubuntu5 +fonts-dejavu-core2.37-2build1 +gcc-12-base12.1.0-2ubuntu1~22.04 +gnupg2.2.27-3ubuntu2.1 +gnupg-l10n2.2.27-3ubuntu2.1 +gnupg-utils2.2.27-3ubuntu2.1 +gpg2.2.27-3ubuntu2.1 +gpg-agent2.2.27-3ubuntu2.1 +gpgconf2.2.27-3ubuntu2.1 +gpgsm2.2.27-3ubuntu2.1 +gpgv2.2.27-3ubuntu2.1 +gpg-wks-client2.2.27-3ubuntu2.1 +gpg-wks-server2.2.27-3ubuntu2.1 +grep3.7-1build1 +gzip1.10-4ubuntu4.1 +hostname3.23ubuntu2 +init-system-helpers1.62 +jellyfin-ffmpeg55.1.2-4-jammy jellyfin-server20221207.3-unstable jellyfin-web20220906.1-unstable -krb5-locales1.17-6ubuntu4.1 -libacl12.2.53-6 -libapt-pkg6.02.0.9 -libasn1-8-heimdal7.7.0+dfsg-1ubuntu1.1 -libass91:0.14.0-2 -libassuan02.5.3-7ubuntu2 -libattr11:2.4.48-5 -libaudit11:2.8.5-2ubuntu6 -libaudit-common1:2.8.5-2ubuntu6 -libblkid12.34-0.1ubuntu9.3 -libbluray21:1.2.0-1 -libbrotli11.0.7-6ubuntu0.1 -libbsd00.10.0-1 -libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.7 -libcairo21.16.0-4ubuntu1 -libcap-ng00.7.9-2.1build1 -libc-bin2.31-0ubuntu9.7 -libcom-err21.45.5-2ubuntu1 -libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.14 -libdb5.35.3.28+dfsg1-0.6ubuntu2 -libdebconfclient00.251ubuntu1 -libdrm22.4.107-8ubuntu1~20.04.2 -libdrm-amdgpu12.4.107-8ubuntu1~20.04.2 -libdrm-common2.4.107-8ubuntu1~20.04.2 -libdrm-nouveau22.4.107-8ubuntu1~20.04.2 -libdrm-radeon12.4.107-8ubuntu1~20.04.2 -libedit23.1-20191231-1 -libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.6 -libext2fs21.45.5-2ubuntu1 -libfdisk12.34-0.1ubuntu9.3 -libffi73.3-4 -libfl22.6.4-6.2 -libfontconfig12.13.1-2ubuntu3 -libfreetype62.10.1-2ubuntu0.2 -libfribidi01.0.8-2ubuntu0.1 -libgcc-s110.3.0-1ubuntu1~20.04 -libgcrypt201.8.5-5ubuntu1.1 -libglib2.0-02.64.6-1~ubuntu20.04.4 -libgmp102:6.2.0+dfsg-4 -libgnutls303.6.13-2ubuntu1.6 -libgpg-error01.37-1 -libgraphite2-31.3.13-11build1 -libgssapi3-heimdal7.7.0+dfsg-1ubuntu1.1 -libgssapi-krb5-21.17-6ubuntu4.1 -libharfbuzz0b2.6.4-1ubuntu4.2 -libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1.1 -libheimbase1-heimdal7.7.0+dfsg-1ubuntu1.1 -libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1.1 -libhogweed53.5.1+really3.5.1-2ubuntu0.2 -libhx509-5-heimdal7.7.0+dfsg-1ubuntu1.1 -libicu6666.1-2ubuntu2.1 -libidn2-02.2.0-2 -libk5crypto31.17-6ubuntu4.1 -libkeyutils11.6-6ubuntu1.1 -libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1.1 -libkrb5-31.17-6ubuntu4.1 -libkrb5support01.17-6ubuntu4.1 -libksba81.3.5-2ubuntu0.20.04.1 -libldap-2.4-22.4.49+dfsg-2ubuntu1.9 -libldap-common2.4.49+dfsg-2ubuntu1.9 -libllvm121:12.0.0-3ubuntu1~20.04.5 -liblz4-11.9.2-2ubuntu0.20.04.1 -liblzma55.2.4-1ubuntu1 -libmount12.34-0.1ubuntu9.3 -libmp3lame03.100-3 -libncurses66.2-0ubuntu2 -libncursesw66.2-0ubuntu2 -libnettle73.5.1+really3.5.1-2ubuntu0.2 -libnghttp2-141.40.0-1build1 -libnpth01.6-1 -libnuma12.0.12-1 -libogg01.3.4-0ubuntu1 -libopus01.3.1-0ubuntu1 -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 -libpciaccess00.16-0ubuntu1 -libpcre2-8-010.34-7 -libpcre32:8.39-12build1 -libpixman-1-00.38.4-0ubuntu2.1 -libpng16-161.6.37-2 -libprocps82:3.3.16-1ubuntu2.3 -libpsl50.21.0-1ubuntu1 -libreadline88.0-4 -libroken18-heimdal7.7.0+dfsg-1ubuntu1.1 -librtmp12.4+20151223.gitfa8646d.1-2build1 -libsasl2-22.1.27+dfsg-2ubuntu0.1 -libsasl2-modules2.1.27+dfsg-2ubuntu0.1 -libsasl2-modules-db2.1.27+dfsg-2ubuntu0.1 -libseccomp22.5.1-1ubuntu1~20.04.2 -libselinux13.0-1build2 -libsemanage13.0-1build2 -libsemanage-common3.0-1build2 -libsepol13.0-1 -libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.5 -libss21.45.5-2ubuntu1 -libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.16 -libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.15 -libtasn1-64.16.0-2 -libtheora01.1.1+dfsg.1-15ubuntu2 -libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.15 -libunistring20.9.10-2 -libuuid12.34-0.1ubuntu9.3 -libvorbis0a1.3.6-2ubuntu1 -libvorbisenc21.3.6-2ubuntu1 -libvpx61.8.2-1build1 -libwebp60.6.1-2ubuntu0.20.04.1 -libwebpmux30.6.1-2ubuntu0.20.04.1 -libwind0-heimdal7.7.0+dfsg-1ubuntu1.1 -libx11-62:1.6.9-2ubuntu1.2 -libx11-data2:1.6.9-2ubuntu1.2 -libx11-xcb12:1.6.9-2ubuntu1.2 -libx264-1552:0.155.2917+git0a84d98-2 -libx265-1793.2.1-1build1 -libxau61:1.0.9-0ubuntu1 -libxcb11.14-2 -libxcb-dri2-01.14-2 -libxcb-dri3-01.14-2 -libxcb-present01.14-2 -libxcb-randr01.14-2 -libxcb-render01.14-2 -libxcb-shm01.14-2 -libxcb-sync11.14-2 -libxcb-xfixes01.14-2 -libxdmcp61:1.1.3-0ubuntu1 -libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.5 -libxrender11:0.9.10-1 -libxshmfence11.3-1 -libzstd11.4.4+dfsg-3ubuntu0.1 -libzvbi00.2.35-17 -libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.9 -login1:4.8.1-1ubuntu5.20.04.1 -logsave1.45.5-2ubuntu1 -lsb-base11.1.0ubuntu2 -mawk1.3.4.20200120-2 -mesa-va-drivers21.2.6-0ubuntu0.1~20.04.2 -mount2.34-0.1ubuntu9.3 -ncurses-base6.2-0ubuntu2 -ncurses-bin6.2-0ubuntu2 -ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.16 -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 -sysvinit-utils2.96-2.1ubuntu1 -tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022f-0ubuntu0.20.04.1 -ubuntu-keyring2020.02.11.4 -ucf3.0038+nmu1 -util-linux2.34-0.1ubuntu9.3 -zlib1g1:1.2.11.dfsg-2ubuntu1.2 +jq1.6-2.1ubuntu3 +libacl12.3.1-1 +libapt-pkg6.02.4.8 +libass91:0.15.2-1 +libassuan02.5.5-1build1 +libattr11:2.5.1-1build1 +libaudit11:3.0.7-1build1 +libaudit-common1:3.0.7-1build1 +libblkid12.37.2-4ubuntu3 +libbluray21:1.3.1-1 +libbrotli11.0.9-2build6 +libbsd00.11.5-1 +libbz2-1.01.0.8-5build1 +libc62.35-0ubuntu3.1 +libcairo21.16.0-5ubuntu2 +libcap21:2.44-1build3 +libcap-ng00.7.9-2.2build3 +libc-bin2.35-0ubuntu3.1 +libcom-err21.46.5-2ubuntu1.1 +libcrypt11:4.4.27-1 +libcurl47.81.0-1ubuntu1.6 +libdb5.35.3.28+dfsg1-0.8ubuntu3 +libdebconfclient00.261ubuntu1 +libdrm22.4.110-1ubuntu1 +libdrm-amdgpu12.4.110-1ubuntu1 +libdrm-common2.4.110-1ubuntu1 +libdrm-nouveau22.4.110-1ubuntu1 +libdrm-radeon12.4.110-1ubuntu1 +libedit23.1-20210910-1build1 +libelf10.186-1build1 +libexpat12.4.7-1ubuntu0.2 +libext2fs21.46.5-2ubuntu1.1 +libffi83.4.2-4 +libfontconfig12.13.1-4.2ubuntu5 +libfreetype62.11.1+dfsg-1ubuntu0.1 +libfribidi01.0.8-2ubuntu3.1 +libgcc-s112.1.0-2ubuntu1~22.04 +libgcrypt201.9.4-3ubuntu3 +libglib2.0-02.72.4-0ubuntu1 +libgmp102:6.2.1+dfsg-3ubuntu1 +libgnutls303.7.3-4ubuntu1.1 +libgpg-error01.43-3 +libgraphite2-31.3.14-1build2 +libgssapi-krb5-21.19.2-2 +libharfbuzz0b2.7.4-1ubuntu3.1 +libhogweed63.7.3-1build2 +libicu7070.1-2 +libidn2-02.3.2-2build1 +libjq11.6-2.1ubuntu3 +libk5crypto31.19.2-2 +libkeyutils11.6.1-2ubuntu3 +libkrb5-31.19.2-2 +libkrb5support01.19.2-2 +libksba81.6.0-2ubuntu0.1 +libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 +libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 +libllvm131:13.0.1-2ubuntu2.1 +libllvm141:14.0.0-1ubuntu1 +liblz4-11.9.3-2build2 +liblzma55.2.5-2ubuntu1 +libmd01.0.4-1build1 +libmount12.37.2-4ubuntu3 +libmp3lame03.100-3build2 +libncurses66.3-2 +libncursesw66.3-2 +libnettle83.7.3-1build2 +libnghttp2-141.43.0-1build3 +libnpth01.6-3build2 +libnsl21.3.0-2build2 +libnuma12.0.14-3ubuntu2 +libogg01.3.5-0ubuntu3 +libonig56.9.7.1-2build1 +libopus01.3.1-0.1build2 +libp11-kit00.24.0-6build1 +libpam0g1.4.0-11ubuntu2 +libpam-modules1.4.0-11ubuntu2 +libpam-modules-bin1.4.0-11ubuntu2 +libpam-runtime1.4.0-11ubuntu2 +libpciaccess00.16-3 +libpcre2-8-010.39-3ubuntu0.1 +libpcre32:8.39-13ubuntu0.22.04.1 +libpixman-1-00.40.0-1ubuntu0.22.04.1 +libpng16-161.6.37-3build5 +libprocps82:3.3.17-6ubuntu2 +libpsl50.21.0-1.2build2 +libreadline88.1.2-1 +librtmp12.4+20151223.gitfa8646d.1-2build4 +libsasl2-22.1.27+dfsg2-3ubuntu1 +libsasl2-modules2.1.27+dfsg2-3ubuntu1 +libsasl2-modules-db2.1.27+dfsg2-3ubuntu1 +libseccomp22.5.3-2ubuntu2 +libselinux13.3-1build2 +libsemanage23.3-1build2 +libsemanage-common3.3-1build2 +libsepol23.3-1build1 +libsmartcols12.37.2-4ubuntu3 +libsqlite3-03.37.2-2ubuntu0.1 +libss21.46.5-2ubuntu1.1 +libssh-40.9.6-2build1 +libssl33.0.2-0ubuntu1.7 +libstdc++612.1.0-2ubuntu1~22.04 +libsystemd0249.11-0ubuntu3.6 +libtasn1-64.18.0-4build1 +libtheora01.1.1+dfsg.1-15ubuntu4 +libtinfo66.3-2 +libtirpc31.3.2-2ubuntu0.1 +libtirpc-common1.3.2-2ubuntu0.1 +libudev1249.11-0ubuntu3.6 +libudfread01.1.2-1 +libunistring21.0-1 +libuuid12.37.2-4ubuntu3 +libvorbis0a1.3.7-1build2 +libvorbisenc21.3.7-1build2 +libvpx71.11.0-2ubuntu2 +libwebp71.2.2-2 +libwebpmux31.2.2-2 +libx11-62:1.7.5-1 +libx11-data2:1.7.5-1 +libx11-xcb12:1.7.5-1 +libx264-1632:0.163.3060+git5db6aa6-2build1 +libx265-1993.5-2 +libxau61:1.0.9-1build5 +libxcb11.14-3ubuntu3 +libxcb-dri2-01.14-3ubuntu3 +libxcb-dri3-01.14-3ubuntu3 +libxcb-present01.14-3ubuntu3 +libxcb-randr01.14-3ubuntu3 +libxcb-render01.14-3ubuntu3 +libxcb-shm01.14-3ubuntu3 +libxcb-sync11.14-3ubuntu3 +libxcb-xfixes01.14-3ubuntu3 +libxdmcp61:1.1.3-0ubuntu5 +libxext62:1.3.4-1build1 +libxml22.9.13+dfsg-1ubuntu0.2 +libxrender11:0.9.10-1build4 +libxshmfence11.3-1build4 +libxxhash00.8.1-1 +libzstd11.4.8+dfsg-3build1 +libzvbi00.2.35-19 +libzvbi-common0.2.35-19 +locales2.35-0ubuntu3.1 +login1:4.8.1-2ubuntu2.1 +logsave1.46.5-2ubuntu1.1 +lsb-base11.1.0ubuntu4 +mawk1.3.4.20200120-3 +mesa-va-drivers22.0.5-0ubuntu0.1 +mount2.37.2-4ubuntu3 +ncurses-base6.3-2 +ncurses-bin6.3-2 +netcat1.218-4ubuntu1 +netcat-openbsd1.218-4ubuntu1 +ocl-icd-libopencl12.2.14-3 +openssl3.0.2-0ubuntu1.7 +passwd1:4.8.1-2ubuntu2.1 +perl-base5.34.0-3ubuntu1.1 +pinentry-curses1.1.1-1build2 +procps2:3.3.17-6ubuntu2 +publicsuffix20211207.1025-1 +readline-common8.1.2-1 +sed4.8-1ubuntu2 +sensible-utils0.0.17 +sysvinit-utils3.01-1ubuntu1 +tar1.34+dfsg-1build3 +tzdata2022f-0ubuntu0.22.04.1 +ubuntu-keyring2021.03.26 +ucf3.0043 +usrmerge25ubuntu2 +util-linux2.37.2-4ubuntu3 +zlib1g1:1.2.11.dfsg-2ubuntu9.2 From 9f93895458d6f3d3bde178b9168530e185811f92 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 8 Dec 2022 03:46:36 +0100 Subject: [PATCH 1389/2257] 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 d7fa81e..895779c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ base-passwd3.5.47 bash5.0-6ubuntu1.1 bsdutils1:2.34-0.1ubuntu9.3 bzip21.0.8-2 -ca-certificates20211016~20.04.1 +ca-certificates20211016ubuntu0.20.04.1 coreutils8.30-3ubuntu2 curl7.68.0-1ubuntu2.14 dash0.5.10.2-6 @@ -174,7 +174,7 @@ libxcb-sync11.14-2 libxcb-xfixes01.14-2 libxdmcp61:1.1.3-0ubuntu1 libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.4 +libxml22.9.10+dfsg-5ubuntu0.20.04.5 libxrender11:0.9.10-1 libxshmfence11.3-1 libzstd11.4.4+dfsg-3ubuntu0.1 From b53d81bbe12f685b395d7a208391b9a139b77e59 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 8 Dec 2022 14:15:38 +0100 Subject: [PATCH 1390/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b774299..67dcd79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-4-jammy -jellyfin-server20221207.3-unstable +jellyfin-server20221208.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2e67e16ade3fc47482c4a3ffbab277af414aedbe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 8 Dec 2022 20:14:44 -0600 Subject: [PATCH 1391/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 67dcd79..d09b935 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-4-jammy -jellyfin-server20221208.9-unstable +jellyfin-server20221209.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From c8e81600e93687860c100920368d513d93f6be50 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 9 Dec 2022 22:59:04 -0600 Subject: [PATCH 1392/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d09b935..24c1ad1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-4-jammy -jellyfin-server20221209.1-unstable +jellyfin-server20221210.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 5f0075252131beeba7900bcb744c35dba7dbfac0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 10 Dec 2022 20:05:12 +0100 Subject: [PATCH 1393/2257] Bot Updating Package Versions --- package_versions.txt | 412 +++++++++++++++++++++---------------------- 1 file changed, 206 insertions(+), 206 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 895779c..125b089 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,208 +1,208 @@ -adduser3.118ubuntu2 -apt2.0.9 -apt-utils2.0.9 -at3.1.23-1ubuntu1 -base-files11ubuntu5.5 -base-passwd3.5.47 -bash5.0-6ubuntu1.1 -bsdutils1:2.34-0.1ubuntu9.3 -bzip21.0.8-2 -ca-certificates20211016ubuntu0.20.04.1 -coreutils8.30-3ubuntu2 -curl7.68.0-1ubuntu2.14 -dash0.5.10.2-6 -debconf1.5.73 -debianutils4.9.1 -diffutils1:3.7-3 -dirmngr2.2.19-3ubuntu2.2 -dpkg1.19.7ubuntu3 -e2fsprogs1.45.5-2ubuntu1 -fdisk2.34-0.1ubuntu9.3 -findutils4.7.0-1ubuntu1 -fontconfig-config2.13.1-2ubuntu3 -fonts-dejavu-core2.37-1 -gcc-10-base10.3.0-1ubuntu1~20.04 -gnupg2.2.19-3ubuntu2.2 -gnupg-l10n2.2.19-3ubuntu2.2 -gnupg-utils2.2.19-3ubuntu2.2 -gpg2.2.19-3ubuntu2.2 -gpg-agent2.2.19-3ubuntu2.2 -gpgconf2.2.19-3ubuntu2.2 -gpgsm2.2.19-3ubuntu2.2 -gpgv2.2.19-3ubuntu2.2 -gpg-wks-client2.2.19-3ubuntu2.2 -gpg-wks-server2.2.19-3ubuntu2.2 -grep3.4-1 -gzip1.10-0ubuntu4 -hostname3.23 -init-system-helpers1.57 -jellyfin-ffmpeg55.1.2-4-focal +adduser3.118ubuntu5 +apt2.4.8 +apt-utils2.4.8 +at3.2.5-1ubuntu1 +base-files12ubuntu4.2 +base-passwd3.5.52build1 +bash5.1-6ubuntu1 +bsdutils1:2.37.2-4ubuntu3 +ca-certificates20211016ubuntu0.22.04.1 +coreutils8.32-4.1ubuntu1 +curl7.81.0-1ubuntu1.6 +dash0.5.11+git20210903+057cd650a4ed-3build1 +debconf1.5.79ubuntu1 +debianutils5.5-1ubuntu2 +diffutils1:3.8-0ubuntu2 +dirmngr2.2.27-3ubuntu2.1 +dpkg1.21.1ubuntu2.1 +e2fsprogs1.46.5-2ubuntu1.1 +findutils4.8.0-1ubuntu3 +fontconfig-config2.13.1-4.2ubuntu5 +fonts-dejavu-core2.37-2build1 +gcc-12-base12.1.0-2ubuntu1~22.04 +gnupg2.2.27-3ubuntu2.1 +gnupg-l10n2.2.27-3ubuntu2.1 +gnupg-utils2.2.27-3ubuntu2.1 +gpg2.2.27-3ubuntu2.1 +gpg-agent2.2.27-3ubuntu2.1 +gpgconf2.2.27-3ubuntu2.1 +gpgsm2.2.27-3ubuntu2.1 +gpgv2.2.27-3ubuntu2.1 +gpg-wks-client2.2.27-3ubuntu2.1 +gpg-wks-server2.2.27-3ubuntu2.1 +grep3.7-1build1 +gzip1.10-4ubuntu4.1 +hostname3.23ubuntu2 +init-system-helpers1.62 +jellyfin-ffmpeg55.1.2-5-jammy jellyfin-server10.8.8-1 jellyfin-web10.8.8-1 -krb5-locales1.17-6ubuntu4.1 -libacl12.2.53-6 -libapt-pkg6.02.0.9 -libasn1-8-heimdal7.7.0+dfsg-1ubuntu1.1 -libass91:0.14.0-2 -libassuan02.5.3-7ubuntu2 -libattr11:2.4.48-5 -libaudit11:2.8.5-2ubuntu6 -libaudit-common1:2.8.5-2ubuntu6 -libblkid12.34-0.1ubuntu9.3 -libbluray21:1.2.0-1 -libbrotli11.0.7-6ubuntu0.1 -libbsd00.10.0-1 -libbz2-1.01.0.8-2 -libc62.31-0ubuntu9.7 -libcairo21.16.0-4ubuntu1 -libcap-ng00.7.9-2.1build1 -libc-bin2.31-0ubuntu9.7 -libcom-err21.45.5-2ubuntu1 -libcrypt11:4.4.10-10ubuntu4 -libcurl47.68.0-1ubuntu2.14 -libdb5.35.3.28+dfsg1-0.6ubuntu2 -libdebconfclient00.251ubuntu1 -libdrm22.4.107-8ubuntu1~20.04.2 -libdrm-amdgpu12.4.107-8ubuntu1~20.04.2 -libdrm-common2.4.107-8ubuntu1~20.04.2 -libdrm-nouveau22.4.107-8ubuntu1~20.04.2 -libdrm-radeon12.4.107-8ubuntu1~20.04.2 -libedit23.1-20191231-1 -libelf10.176-1.1build1 -libexpat12.2.9-1ubuntu0.6 -libext2fs21.45.5-2ubuntu1 -libfdisk12.34-0.1ubuntu9.3 -libffi73.3-4 -libfl22.6.4-6.2 -libfontconfig12.13.1-2ubuntu3 -libfreetype62.10.1-2ubuntu0.2 -libfribidi01.0.8-2ubuntu0.1 -libgcc-s110.3.0-1ubuntu1~20.04 -libgcrypt201.8.5-5ubuntu1.1 -libglib2.0-02.64.6-1~ubuntu20.04.4 -libgmp102:6.2.0+dfsg-4 -libgnutls303.6.13-2ubuntu1.6 -libgpg-error01.37-1 -libgraphite2-31.3.13-11build1 -libgssapi3-heimdal7.7.0+dfsg-1ubuntu1.1 -libgssapi-krb5-21.17-6ubuntu4.1 -libharfbuzz0b2.6.4-1ubuntu4.2 -libhcrypto4-heimdal7.7.0+dfsg-1ubuntu1.1 -libheimbase1-heimdal7.7.0+dfsg-1ubuntu1.1 -libheimntlm0-heimdal7.7.0+dfsg-1ubuntu1.1 -libhogweed53.5.1+really3.5.1-2ubuntu0.2 -libhx509-5-heimdal7.7.0+dfsg-1ubuntu1.1 -libicu6666.1-2ubuntu2.1 -libidn2-02.2.0-2 -libk5crypto31.17-6ubuntu4.1 -libkeyutils11.6-6ubuntu1.1 -libkrb5-26-heimdal7.7.0+dfsg-1ubuntu1.1 -libkrb5-31.17-6ubuntu4.1 -libkrb5support01.17-6ubuntu4.1 -libksba81.3.5-2ubuntu0.20.04.1 -libldap-2.4-22.4.49+dfsg-2ubuntu1.9 -libldap-common2.4.49+dfsg-2ubuntu1.9 -libllvm121:12.0.0-3ubuntu1~20.04.5 -liblz4-11.9.2-2ubuntu0.20.04.1 -liblzma55.2.4-1ubuntu1 -libmount12.34-0.1ubuntu9.3 -libmp3lame03.100-3 -libncurses66.2-0ubuntu2 -libncursesw66.2-0ubuntu2 -libnettle73.5.1+really3.5.1-2ubuntu0.2 -libnghttp2-141.40.0-1build1 -libnpth01.6-1 -libnuma12.0.12-1 -libogg01.3.4-0ubuntu1 -libopus01.3.1-0ubuntu1 -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 -libpciaccess00.16-0ubuntu1 -libpcre2-8-010.34-7 -libpcre32:8.39-12build1 -libpixman-1-00.38.4-0ubuntu2.1 -libpng16-161.6.37-2 -libprocps82:3.3.16-1ubuntu2.3 -libpsl50.21.0-1ubuntu1 -libreadline88.0-4 -libroken18-heimdal7.7.0+dfsg-1ubuntu1.1 -librtmp12.4+20151223.gitfa8646d.1-2build1 -libsasl2-22.1.27+dfsg-2ubuntu0.1 -libsasl2-modules2.1.27+dfsg-2ubuntu0.1 -libsasl2-modules-db2.1.27+dfsg-2ubuntu0.1 -libseccomp22.5.1-1ubuntu1~20.04.2 -libselinux13.0-1build2 -libsemanage13.0-1build2 -libsemanage-common3.0-1build2 -libsepol13.0-1 -libsmartcols12.34-0.1ubuntu9.3 -libsqlite3-03.31.1-4ubuntu0.5 -libss21.45.5-2ubuntu1 -libssh-40.9.3-2ubuntu2.2 -libssl1.11.1.1f-1ubuntu2.16 -libstdc++610.3.0-1ubuntu1~20.04 -libsystemd0245.4-4ubuntu3.15 -libtasn1-64.16.0-2 -libtheora01.1.1+dfsg.1-15ubuntu2 -libtinfo66.2-0ubuntu2 -libudev1245.4-4ubuntu3.15 -libunistring20.9.10-2 -libuuid12.34-0.1ubuntu9.3 -libvorbis0a1.3.6-2ubuntu1 -libvorbisenc21.3.6-2ubuntu1 -libvpx61.8.2-1build1 -libwebp60.6.1-2ubuntu0.20.04.1 -libwebpmux30.6.1-2ubuntu0.20.04.1 -libwind0-heimdal7.7.0+dfsg-1ubuntu1.1 -libx11-62:1.6.9-2ubuntu1.2 -libx11-data2:1.6.9-2ubuntu1.2 -libx11-xcb12:1.6.9-2ubuntu1.2 -libx264-1552:0.155.2917+git0a84d98-2 -libx265-1793.2.1-1build1 -libxau61:1.0.9-0ubuntu1 -libxcb11.14-2 -libxcb-dri2-01.14-2 -libxcb-dri3-01.14-2 -libxcb-present01.14-2 -libxcb-randr01.14-2 -libxcb-render01.14-2 -libxcb-shm01.14-2 -libxcb-sync11.14-2 -libxcb-xfixes01.14-2 -libxdmcp61:1.1.3-0ubuntu1 -libxext62:1.3.4-0ubuntu1 -libxml22.9.10+dfsg-5ubuntu0.20.04.5 -libxrender11:0.9.10-1 -libxshmfence11.3-1 -libzstd11.4.4+dfsg-3ubuntu0.1 -libzvbi00.2.35-17 -libzvbi-common0.2.35-17 -locales2.31-0ubuntu9.9 -login1:4.8.1-1ubuntu5.20.04.1 -logsave1.45.5-2ubuntu1 -lsb-base11.1.0ubuntu2 -mawk1.3.4.20200120-2 -mesa-va-drivers21.2.6-0ubuntu0.1~20.04.2 -mount2.34-0.1ubuntu9.3 -ncurses-base6.2-0ubuntu2 -ncurses-bin6.2-0ubuntu2 -ocl-icd-libopencl12.2.11-1ubuntu1 -openssl1.1.1f-1ubuntu2.16 -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 -sysvinit-utils2.96-2.1ubuntu1 -tar1.30+dfsg-7ubuntu0.20.04.2 -tzdata2022f-0ubuntu0.20.04.1 -ubuntu-keyring2020.02.11.4 -ucf3.0038+nmu1 -util-linux2.34-0.1ubuntu9.3 -zlib1g1:1.2.11.dfsg-2ubuntu1.2 +jq1.6-2.1ubuntu3 +libacl12.3.1-1 +libapt-pkg6.02.4.8 +libass91:0.15.2-1 +libassuan02.5.5-1build1 +libattr11:2.5.1-1build1 +libaudit11:3.0.7-1build1 +libaudit-common1:3.0.7-1build1 +libblkid12.37.2-4ubuntu3 +libbluray21:1.3.1-1 +libbrotli11.0.9-2build6 +libbsd00.11.5-1 +libbz2-1.01.0.8-5build1 +libc62.35-0ubuntu3.1 +libcairo21.16.0-5ubuntu2 +libcap21:2.44-1build3 +libcap-ng00.7.9-2.2build3 +libc-bin2.35-0ubuntu3.1 +libcom-err21.46.5-2ubuntu1.1 +libcrypt11:4.4.27-1 +libcurl47.81.0-1ubuntu1.6 +libdb5.35.3.28+dfsg1-0.8ubuntu3 +libdebconfclient00.261ubuntu1 +libdrm22.4.110-1ubuntu1 +libdrm-amdgpu12.4.110-1ubuntu1 +libdrm-common2.4.110-1ubuntu1 +libdrm-nouveau22.4.110-1ubuntu1 +libdrm-radeon12.4.110-1ubuntu1 +libedit23.1-20210910-1build1 +libelf10.186-1build1 +libexpat12.4.7-1ubuntu0.2 +libext2fs21.46.5-2ubuntu1.1 +libffi83.4.2-4 +libfontconfig12.13.1-4.2ubuntu5 +libfreetype62.11.1+dfsg-1ubuntu0.1 +libfribidi01.0.8-2ubuntu3.1 +libgcc-s112.1.0-2ubuntu1~22.04 +libgcrypt201.9.4-3ubuntu3 +libglib2.0-02.72.4-0ubuntu1 +libgmp102:6.2.1+dfsg-3ubuntu1 +libgnutls303.7.3-4ubuntu1.1 +libgpg-error01.43-3 +libgraphite2-31.3.14-1build2 +libgssapi-krb5-21.19.2-2 +libharfbuzz0b2.7.4-1ubuntu3.1 +libhogweed63.7.3-1build2 +libicu7070.1-2 +libidn2-02.3.2-2build1 +libjq11.6-2.1ubuntu3 +libk5crypto31.19.2-2 +libkeyutils11.6.1-2ubuntu3 +libkrb5-31.19.2-2 +libkrb5support01.19.2-2 +libksba81.6.0-2ubuntu0.1 +libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 +libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 +libllvm131:13.0.1-2ubuntu2.1 +libllvm141:14.0.0-1ubuntu1 +liblz4-11.9.3-2build2 +liblzma55.2.5-2ubuntu1 +libmd01.0.4-1build1 +libmount12.37.2-4ubuntu3 +libmp3lame03.100-3build2 +libncurses66.3-2 +libncursesw66.3-2 +libnettle83.7.3-1build2 +libnghttp2-141.43.0-1build3 +libnpth01.6-3build2 +libnsl21.3.0-2build2 +libnuma12.0.14-3ubuntu2 +libogg01.3.5-0ubuntu3 +libonig56.9.7.1-2build1 +libopus01.3.1-0.1build2 +libp11-kit00.24.0-6build1 +libpam0g1.4.0-11ubuntu2 +libpam-modules1.4.0-11ubuntu2 +libpam-modules-bin1.4.0-11ubuntu2 +libpam-runtime1.4.0-11ubuntu2 +libpciaccess00.16-3 +libpcre2-8-010.39-3ubuntu0.1 +libpcre32:8.39-13ubuntu0.22.04.1 +libpixman-1-00.40.0-1ubuntu0.22.04.1 +libpng16-161.6.37-3build5 +libprocps82:3.3.17-6ubuntu2 +libpsl50.21.0-1.2build2 +libreadline88.1.2-1 +librtmp12.4+20151223.gitfa8646d.1-2build4 +libsasl2-22.1.27+dfsg2-3ubuntu1 +libsasl2-modules2.1.27+dfsg2-3ubuntu1 +libsasl2-modules-db2.1.27+dfsg2-3ubuntu1 +libseccomp22.5.3-2ubuntu2 +libselinux13.3-1build2 +libsemanage23.3-1build2 +libsemanage-common3.3-1build2 +libsepol23.3-1build1 +libsmartcols12.37.2-4ubuntu3 +libsqlite3-03.37.2-2ubuntu0.1 +libss21.46.5-2ubuntu1.1 +libssh-40.9.6-2build1 +libssl33.0.2-0ubuntu1.7 +libstdc++612.1.0-2ubuntu1~22.04 +libsystemd0249.11-0ubuntu3.6 +libtasn1-64.18.0-4build1 +libtheora01.1.1+dfsg.1-15ubuntu4 +libtinfo66.3-2 +libtirpc31.3.2-2ubuntu0.1 +libtirpc-common1.3.2-2ubuntu0.1 +libudev1249.11-0ubuntu3.6 +libudfread01.1.2-1 +libunistring21.0-1 +libuuid12.37.2-4ubuntu3 +libvorbis0a1.3.7-1build2 +libvorbisenc21.3.7-1build2 +libvpx71.11.0-2ubuntu2 +libwebp71.2.2-2 +libwebpmux31.2.2-2 +libx11-62:1.7.5-1 +libx11-data2:1.7.5-1 +libx11-xcb12:1.7.5-1 +libx264-1632:0.163.3060+git5db6aa6-2build1 +libx265-1993.5-2 +libxau61:1.0.9-1build5 +libxcb11.14-3ubuntu3 +libxcb-dri2-01.14-3ubuntu3 +libxcb-dri3-01.14-3ubuntu3 +libxcb-present01.14-3ubuntu3 +libxcb-randr01.14-3ubuntu3 +libxcb-render01.14-3ubuntu3 +libxcb-shm01.14-3ubuntu3 +libxcb-sync11.14-3ubuntu3 +libxcb-xfixes01.14-3ubuntu3 +libxdmcp61:1.1.3-0ubuntu5 +libxext62:1.3.4-1build1 +libxml22.9.13+dfsg-1ubuntu0.2 +libxrender11:0.9.10-1build4 +libxshmfence11.3-1build4 +libxxhash00.8.1-1 +libzstd11.4.8+dfsg-3build1 +libzvbi00.2.35-19 +libzvbi-common0.2.35-19 +locales2.35-0ubuntu3.1 +login1:4.8.1-2ubuntu2.1 +logsave1.46.5-2ubuntu1.1 +lsb-base11.1.0ubuntu4 +mawk1.3.4.20200120-3 +mesa-va-drivers22.0.5-0ubuntu0.1 +mount2.37.2-4ubuntu3 +ncurses-base6.3-2 +ncurses-bin6.3-2 +netcat1.218-4ubuntu1 +netcat-openbsd1.218-4ubuntu1 +ocl-icd-libopencl12.2.14-3 +openssl3.0.2-0ubuntu1.7 +passwd1:4.8.1-2ubuntu2.1 +perl-base5.34.0-3ubuntu1.1 +pinentry-curses1.1.1-1build2 +procps2:3.3.17-6ubuntu2 +publicsuffix20211207.1025-1 +readline-common8.1.2-1 +sed4.8-1ubuntu2 +sensible-utils0.0.17 +sysvinit-utils3.01-1ubuntu1 +tar1.34+dfsg-1build3 +tzdata2022f-0ubuntu0.22.04.1 +ubuntu-keyring2021.03.26 +ucf3.0043 +usrmerge25ubuntu2 +util-linux2.37.2-4ubuntu3 +zlib1g1:1.2.11.dfsg-2ubuntu9.2 From fa0b66996f69c0542b11faf01192b1ded60556c7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Dec 2022 11:00:10 -0600 Subject: [PATCH 1394/2257] 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 24c1ad1..8365a13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,8 +34,8 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-4-jammy -jellyfin-server20221210.2-unstable +jellyfin-ffmpeg55.1.2-5-jammy +jellyfin-server20221213.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -200,7 +200,7 @@ sed4.8-1ubuntu2 sensible-utils0.0.17 sysvinit-utils3.01-1ubuntu1 tar1.34+dfsg-1build3 -tzdata2022f-0ubuntu0.22.04.1 +tzdata2022g-0ubuntu0.22.04.1 ubuntu-keyring2021.03.26 ucf3.0043 usrmerge25ubuntu2 From 4b77a6c430ac53ce3d653242643006e3d286b701 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Dec 2022 09:58:59 -0600 Subject: [PATCH 1395/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8365a13..7fdc921 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221213.10-unstable +jellyfin-server20221214.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 4f1f30331813ff167d58ba3f9e553632f2f5e499 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Dec 2022 23:59:52 +0100 Subject: [PATCH 1396/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7fdc921..0a42250 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221214.3-unstable +jellyfin-server20221214.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From f24d7a57b65a2da84c1591ff17ce6b282aebe9eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Dec 2022 20:49:37 -0600 Subject: [PATCH 1397/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 125b089..9520d21 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -200,7 +200,7 @@ sed4.8-1ubuntu2 sensible-utils0.0.17 sysvinit-utils3.01-1ubuntu1 tar1.34+dfsg-1build3 -tzdata2022f-0ubuntu0.22.04.1 +tzdata2022g-0ubuntu0.22.04.1 ubuntu-keyring2021.03.26 ucf3.0043 usrmerge25ubuntu2 From 8a4c0a1de371eaa7d864220dc83dc5b59b1688e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Dec 2022 09:59:01 +0100 Subject: [PATCH 1398/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0a42250..a02f82b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221214.6-unstable +jellyfin-server20221215.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 1c837bdaec3369ea2d41664288069dff8ec6709f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Dec 2022 04:59:44 +0100 Subject: [PATCH 1399/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a02f82b..3104b49 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221215.1-unstable +jellyfin-server20221216.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 9508b4510509328089e5a2d6dac039cb377014e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Dec 2022 07:06:15 -0600 Subject: [PATCH 1400/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3104b49..caf86e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221216.2-unstable +jellyfin-server20221217.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 8a39345f18af9aea889a7c0a091c617ef7074693 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Dec 2022 17:59:13 +0100 Subject: [PATCH 1401/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index caf86e1..81bf368 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221217.1-unstable +jellyfin-server20221219.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From be7232f5ddd33d4fb9a51e8a1f142237d45d15cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Dec 2022 17:59:07 -0600 Subject: [PATCH 1402/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 81bf368..e42dc66 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221219.5-unstable +jellyfin-server20221219.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 20d1ca100dd32e5ef0282ac16901f40e50c0e5c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Dec 2022 08:00:52 +0100 Subject: [PATCH 1403/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e42dc66..e91bf01 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221219.7-unstable +jellyfin-server20221220.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 18163ccc7bc588d7b2076d29a12834c2e1e48aee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Dec 2022 01:04:26 -0600 Subject: [PATCH 1404/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e91bf01..4dad333 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221220.1-unstable +jellyfin-server20221220.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 50a2ef510602579d771a058710d58fb88e5e205b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Dec 2022 07:58:57 -0600 Subject: [PATCH 1405/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4dad333..291f30b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221220.4-unstable +jellyfin-server20221220.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From c151a3b9cae3c9d01e226e3b25f23defe8c611d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Dec 2022 16:00:07 +0100 Subject: [PATCH 1406/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 291f30b..9145446 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221220.9-unstable +jellyfin-server20221223.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 7e5f7e2347d603c5fc80e9c47c5a0139c8c9f719 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Dec 2022 23:00:12 +0100 Subject: [PATCH 1407/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9145446..0135d48 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221223.2-unstable +jellyfin-server20221223.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 8d8a5db27366cbfa2b9b91b4627dd8f5adde6029 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 24 Dec 2022 05:58:58 +0100 Subject: [PATCH 1408/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0135d48..d601dc5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221223.6-unstable +jellyfin-server20221223.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From c1fedc60cbfc17117914a4e5fd79e88aab06a5b9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 25 Dec 2022 18:01:16 -0600 Subject: [PATCH 1409/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d601dc5..21e0ebc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221223.7-unstable +jellyfin-server20221225.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From d928b78cbda0d41225820a0f20d3a101ba073d5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Dec 2022 05:59:42 -0600 Subject: [PATCH 1410/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 21e0ebc..19e38fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221225.1-unstable +jellyfin-server20221227.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From cd684450ed85482e9b3d4518fd681e29727fd6db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Dec 2022 12:59:18 -0600 Subject: [PATCH 1411/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 19e38fc..9029313 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221227.1-unstable +jellyfin-server20221227.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From c4ee792a3604866fd877ec465dce8b4763f99b05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 28 Dec 2022 16:59:46 +0100 Subject: [PATCH 1412/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9029313..1bdca28 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221227.3-unstable +jellyfin-server20221228.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 89062f5761e8b85081512e17ca2a66b9d5da0aab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Dec 2022 10:58:48 +0100 Subject: [PATCH 1413/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1bdca28..00238c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221228.1-unstable +jellyfin-server20221229.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From a8348a5043eb51f5c6578f77bce71115b1d9d71e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Dec 2022 17:58:54 +0100 Subject: [PATCH 1414/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 00238c5..5eb3e6f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221229.2-unstable +jellyfin-server20221229.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 4081a864ebb6a43a06f4940b9c9facaee2ad18d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 30 Dec 2022 03:59:28 +0100 Subject: [PATCH 1415/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5eb3e6f..17c3419 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221229.9-unstable +jellyfin-server20221230.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 8aa22f1c9943988ddbed739e331491eede7ef1cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 30 Dec 2022 10:59:55 +0100 Subject: [PATCH 1416/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 17c3419..c7e2246 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221230.1-unstable +jellyfin-server20221230.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 8ca3142ac129be346f6090ad4fe7eba29f58d44d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 30 Dec 2022 10:59:38 -0600 Subject: [PATCH 1417/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c7e2246..454b4b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221230.2-unstable +jellyfin-server20221230.11-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 9cbebbd1e288fda45c2a4dd10147529f461fee1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 31 Dec 2022 12:59:26 +0100 Subject: [PATCH 1418/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 454b4b5..5eb64f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221230.11-unstable +jellyfin-server20221231.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 67d46fbee836081c051c68fea6b952e94b7164f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Jan 2023 03:21:35 +0100 Subject: [PATCH 1419/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5eb64f3..dc478fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20221231.1-unstable +jellyfin-server20230101.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From ed48c79fd8b8032f907e4ed739fa3657e406d496 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Jan 2023 20:01:04 +0100 Subject: [PATCH 1420/2257] 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 dc478fb..dac60a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,8 +34,8 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-5-jammy -jellyfin-server20230101.1-unstable +jellyfin-ffmpeg55.1.2-6-jammy +jellyfin-server20230102.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From b01a2a3ccaf2542f0c9073865ea79acef04e1220 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Jan 2023 05:59:42 -0600 Subject: [PATCH 1421/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dac60a3..81c15ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230102.4-unstable +jellyfin-server20230103.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From f73612aab9feeee63b8e30ed116532f7d095e50f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Jan 2023 17:59:16 -0600 Subject: [PATCH 1422/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 81c15ed..646fd07 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230103.3-unstable +jellyfin-server20230103.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 41f565356e16bb7a73b0021f5c68259d81301b61 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Jan 2023 16:59:22 +0100 Subject: [PATCH 1423/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 646fd07..dc3e2a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230103.6-unstable +jellyfin-server20230104.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 3a6f318c960f066a541518b11933e324c703b23f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Jan 2023 03:42:12 +0100 Subject: [PATCH 1424/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9520d21..3d54a4c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,7 +34,7 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-5-jammy +jellyfin-ffmpeg55.1.2-6-jammy jellyfin-server10.8.8-1 jellyfin-web10.8.8-1 jq1.6-2.1ubuntu3 From b50e3ff1fdde56df60504e8f4d6e02284d7c292c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Jan 2023 10:00:00 +0100 Subject: [PATCH 1425/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dc3e2a9..e13c3bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230104.1-unstable +jellyfin-server20230105.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 29aaa09f78f4cf79bec5b4c502e6a2b7a8187dbc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Jan 2023 19:59:01 +0100 Subject: [PATCH 1426/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e13c3bf..5c68310 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230105.1-unstable +jellyfin-server20230107.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 9fae5d5bfae9fde321881ff83dc126965465d0ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Jan 2023 20:15:28 -0600 Subject: [PATCH 1427/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5c68310..8151f78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230107.3-unstable +jellyfin-server20230107.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 06ebc88a34ee56c57ae22e7285aa173aefb28733 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Jan 2023 12:59:25 -0600 Subject: [PATCH 1428/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8151f78..766448e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230107.5-unstable +jellyfin-server20230108.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From a101282b6cb713c6670af19c8f6f148662de681f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Jan 2023 13:00:00 +0100 Subject: [PATCH 1429/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 766448e..9facb78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230108.2-unstable +jellyfin-server20230109.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 767bac8c0c9cef945c6816f27f74c2452c98a301 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Jan 2023 22:00:09 +0100 Subject: [PATCH 1430/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9facb78..f7b158b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230109.7-unstable +jellyfin-server20230109.16-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From b8c03821f4d4842ff648c80621fef9d0c18f7d49 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jan 2023 14:15:53 +0100 Subject: [PATCH 1431/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f7b158b..b4f5f08 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 ca-certificates20211016ubuntu0.22.04.1 coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.6 +curl7.81.0-1ubuntu1.7 dash0.5.11+git20210903+057cd650a4ed-3build1 debconf1.5.79ubuntu1 debianutils5.5-1ubuntu2 @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230109.16-unstable +jellyfin-server20230110.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -57,7 +57,7 @@ libcap-ng00.7.9-2.2build3 libc-bin2.35-0ubuntu3.1 libcom-err21.46.5-2ubuntu1.1 libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.6 +libcurl47.81.0-1ubuntu1.7 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 libdrm22.4.110-1ubuntu1 @@ -90,7 +90,7 @@ libk5crypto31.19.2-2 libkeyutils11.6.1-2ubuntu3 libkrb5-31.19.2-2 libkrb5support01.19.2-2 -libksba81.6.0-2ubuntu0.1 +libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 libllvm131:13.0.1-2ubuntu2.1 @@ -124,9 +124,9 @@ libprocps82:3.3.17-6ubuntu2 libpsl50.21.0-1.2build2 libreadline88.1.2-1 librtmp12.4+20151223.gitfa8646d.1-2build4 -libsasl2-22.1.27+dfsg2-3ubuntu1 -libsasl2-modules2.1.27+dfsg2-3ubuntu1 -libsasl2-modules-db2.1.27+dfsg2-3ubuntu1 +libsasl2-22.1.27+dfsg2-3ubuntu1.1 +libsasl2-modules2.1.27+dfsg2-3ubuntu1.1 +libsasl2-modules-db2.1.27+dfsg2-3ubuntu1.1 libseccomp22.5.3-2ubuntu2 libselinux13.3-1build2 libsemanage23.3-1build2 @@ -182,7 +182,7 @@ login1:4.8.1-2ubuntu2.1 logsave1.46.5-2ubuntu1.1 lsb-base11.1.0ubuntu4 mawk1.3.4.20200120-3 -mesa-va-drivers22.0.5-0ubuntu0.1 +mesa-va-drivers22.0.5-0ubuntu0.3 mount2.37.2-4ubuntu3 ncurses-base6.3-2 ncurses-bin6.3-2 From 74b3b6581a9c185a381c0e40daddb82fab08c8cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jan 2023 21:00:09 +0100 Subject: [PATCH 1432/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b4f5f08..1e4dd46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230110.6-unstable +jellyfin-server20230110.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From e883284bd55186324f4177be5355071719a703fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jan 2023 20:12:34 -0600 Subject: [PATCH 1433/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1e4dd46..2f64075 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230110.8-unstable +jellyfin-server20230110.23-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 91091922a416e6af84f89d0367fa52accb5accd0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Jan 2023 09:59:15 +0100 Subject: [PATCH 1434/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2f64075..8c85e60 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230110.23-unstable +jellyfin-server20230111.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 376fdd3dee7edf27d5e370e6a2170a728dbc068c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Jan 2023 16:03:56 +0100 Subject: [PATCH 1435/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8c85e60..3246b74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230111.7-unstable +jellyfin-server20230111.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From c36b3b84777c19a49d4ed89d4c6a2d339132134d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Jan 2023 16:00:19 -0600 Subject: [PATCH 1436/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3246b74..72d7fc2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230111.10-unstable +jellyfin-server20230111.13-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 5001470f5cc1c20479f07f65e6eb82e06e821b79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Jan 2023 03:42:31 +0100 Subject: [PATCH 1437/2257] 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 3d54a4c..bf2ddec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 ca-certificates20211016ubuntu0.22.04.1 coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.6 +curl7.81.0-1ubuntu1.7 dash0.5.11+git20210903+057cd650a4ed-3build1 debconf1.5.79ubuntu1 debianutils5.5-1ubuntu2 @@ -57,7 +57,7 @@ libcap-ng00.7.9-2.2build3 libc-bin2.35-0ubuntu3.1 libcom-err21.46.5-2ubuntu1.1 libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.6 +libcurl47.81.0-1ubuntu1.7 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 libdrm22.4.110-1ubuntu1 @@ -90,7 +90,7 @@ libk5crypto31.19.2-2 libkeyutils11.6.1-2ubuntu3 libkrb5-31.19.2-2 libkrb5support01.19.2-2 -libksba81.6.0-2ubuntu0.1 +libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 libllvm131:13.0.1-2ubuntu2.1 @@ -124,9 +124,9 @@ libprocps82:3.3.17-6ubuntu2 libpsl50.21.0-1.2build2 libreadline88.1.2-1 librtmp12.4+20151223.gitfa8646d.1-2build4 -libsasl2-22.1.27+dfsg2-3ubuntu1 -libsasl2-modules2.1.27+dfsg2-3ubuntu1 -libsasl2-modules-db2.1.27+dfsg2-3ubuntu1 +libsasl2-22.1.27+dfsg2-3ubuntu1.1 +libsasl2-modules2.1.27+dfsg2-3ubuntu1.1 +libsasl2-modules-db2.1.27+dfsg2-3ubuntu1.1 libseccomp22.5.3-2ubuntu2 libselinux13.3-1build2 libsemanage23.3-1build2 @@ -182,7 +182,7 @@ login1:4.8.1-2ubuntu2.1 logsave1.46.5-2ubuntu1.1 lsb-base11.1.0ubuntu4 mawk1.3.4.20200120-3 -mesa-va-drivers22.0.5-0ubuntu0.1 +mesa-va-drivers22.0.5-0ubuntu0.3 mount2.37.2-4ubuntu3 ncurses-base6.3-2 ncurses-bin6.3-2 From f09a74b321f16fb56c889da9910e150cecf79362 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Jan 2023 20:43:11 -0600 Subject: [PATCH 1438/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 72d7fc2..d020eff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230111.13-unstable +jellyfin-server20230112.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From e2c3a7891b7b2954f467051741860826ebd8bc38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Jan 2023 03:59:30 -0600 Subject: [PATCH 1439/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d020eff..acdf56e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230112.1-unstable +jellyfin-server20230112.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 7a611f62908fe7179bee85d1b1e121fc6f1c4f98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 13 Jan 2023 08:06:09 -0600 Subject: [PATCH 1440/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index acdf56e..344ee9f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230112.5-unstable +jellyfin-server20230113.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2a7e0a62da044786b7753ffaffc65b289879b43f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 13 Jan 2023 17:59:38 -0600 Subject: [PATCH 1441/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 344ee9f..d224b3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230113.8-unstable +jellyfin-server20230113.18-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 209adf6e9fefe389bd83e342db6885089886919d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Jan 2023 17:59:18 +0100 Subject: [PATCH 1442/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d224b3e..a66b6ff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230113.18-unstable +jellyfin-server20230114.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 81a8f18ca42047c76b4151f94ac739cdd3dca47f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Jan 2023 17:59:44 -0600 Subject: [PATCH 1443/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a66b6ff..cbe3472 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230114.3-unstable +jellyfin-server20230114.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 9f1c287bc0c27aff70d3fda507310e1dd681c58a Mon Sep 17 00:00:00 2001 From: nyanmisaka <nst799610810@gmail.com> Date: Mon, 16 Jan 2023 02:10:55 +0800 Subject: [PATCH 1444/2257] Hint the OpenCL mod for Intel tone-mapping Signed-off-by: nyanmisaka <nst799610810@gmail.com> --- readme-vars.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 84a2305..6958103 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -83,7 +83,11 @@ app_setup_block: | `--device=/dev/dri:/dev/dri` We will automatically ensure the abc user inside of the container has the proper permissions to access this device. - + + To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the OpenCL-Intel mod from here: + + https://mods.linuxserver.io/?mod=jellyfin + ### Nvidia Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: From 9b8625a72f9c6cece54d0a3184a7ff80048b11ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Jan 2023 03:28:11 +0100 Subject: [PATCH 1445/2257] Bot Updating Templated Files --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 93d7080..675fdba 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,10 @@ Hardware acceleration users for Intel Quicksync will need to mount their /dev/dr We will automatically ensure the abc user inside of the container has the proper permissions to access this device. +To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the OpenCL-Intel mod from here: + +https://mods.linuxserver.io/?mod=jellyfin + ### Nvidia Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: From ca726779eedb65bdd690f884b937d77c29a283ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Jan 2023 11:59:20 -0600 Subject: [PATCH 1446/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cbe3472..f0a17b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230114.9-unstable +jellyfin-server20230116.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 288e718aacca7000783941127baeb5b58e94783c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Jan 2023 03:01:04 -0600 Subject: [PATCH 1447/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f0a17b0..fd0e660 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230116.1-unstable +jellyfin-server20230117.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 62dcadb29dd5f298cd5eaab45c1d889aedca3f6a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Jan 2023 17:58:56 +0100 Subject: [PATCH 1448/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fd0e660..0d20ee5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230117.1-unstable +jellyfin-server20230117.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From bfa3b04c9ceffad46244ec885eff5137cd9ee19b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Jan 2023 18:00:22 -0600 Subject: [PATCH 1449/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0d20ee5..12cacb2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230117.2-unstable +jellyfin-server20230117.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From b0a399dd4385665f9bcd71998ac4e89a61c1f727 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Jan 2023 05:00:10 -0600 Subject: [PATCH 1450/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 12cacb2..4dea402 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230117.9-unstable +jellyfin-server20230118.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 6be08cf2b833657b339284b82716f6eaf0a59a2c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Jan 2023 11:59:44 -0600 Subject: [PATCH 1451/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4dea402..da41c10 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230118.3-unstable +jellyfin-server20230118.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 3696ef780200538158f8baa95601cd8eca2cb4f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 19 Jan 2023 03:15:36 +0100 Subject: [PATCH 1452/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index da41c10..b4ea1b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230118.4-unstable +jellyfin-server20230118.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From d3948e026a0266dea3e60c97c447ad202c0f2d56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 19 Jan 2023 14:59:10 +0100 Subject: [PATCH 1453/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b4ea1b5..5264d89 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230118.10-unstable +jellyfin-server20230119.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From e1d9a57665d417d8b1d32036cb30f09ec6b84a0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 19 Jan 2023 15:00:00 -0600 Subject: [PATCH 1454/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5264d89..b2fb556 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230119.6-unstable +jellyfin-server20230119.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From a5dcead101659adda3b6ea1a3374358f2681c2e4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 20 Jan 2023 14:13:59 +0100 Subject: [PATCH 1455/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b2fb556..ef6356c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230119.8-unstable +jellyfin-server20230120.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 6aabd03519fb3753576f6f91d642ec7be5bb53dd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Jan 2023 20:58:21 +0100 Subject: [PATCH 1456/2257] 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 bf2ddec..0c5acc9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,8 +35,8 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server10.8.8-1 -jellyfin-web10.8.8-1 +jellyfin-server10.8.9-1 +jellyfin-web10.8.9-1 jq1.6-2.1ubuntu3 libacl12.3.1-1 libapt-pkg6.02.4.8 From 08a7f2d5820b624a4d82ebfcbee8468736af42e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Jan 2023 22:58:22 +0100 Subject: [PATCH 1457/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ef6356c..48876b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230120.5-unstable +jellyfin-server20230122.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From e96ddd8c125212f800d5cb0c1d473d66c1570752 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Jan 2023 19:59:30 +0100 Subject: [PATCH 1458/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 48876b1..6b947aa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230122.6-unstable +jellyfin-server20230123.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 33d135ddb2d3a54c3c7d9cdc40688ee95363a27d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Jan 2023 12:00:53 +0100 Subject: [PATCH 1459/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6b947aa..4210bb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230123.4-unstable +jellyfin-server20230124.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From d993f96fae00d49e5c32884cc81c044f3012c116 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Jan 2023 18:58:54 +0100 Subject: [PATCH 1460/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4210bb7..8ebff9d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230124.1-unstable +jellyfin-server20230124.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 34ed9a4a81e09973c9e93d6436b7c187e4a2e817 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 26 Jan 2023 09:58:53 +0100 Subject: [PATCH 1461/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8ebff9d..7a62c0d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230124.2-unstable +jellyfin-server20230126.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 516a8b86085b366ab11c1f61960bc7366ecdfba3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 26 Jan 2023 16:00:08 -0600 Subject: [PATCH 1462/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7a62c0d..4518c3e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230126.4-unstable +jellyfin-server20230126.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 6a56926eeec8071b3ce2eba503ed5ff69329af8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Jan 2023 05:58:46 +0100 Subject: [PATCH 1463/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4518c3e..801ff39 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230126.8-unstable +jellyfin-server20230126.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 50eee4a863344baac924134a4182edcbd9b260aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Jan 2023 14:13:42 +0100 Subject: [PATCH 1464/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 801ff39..809ae66 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230126.10-unstable +jellyfin-server20230127.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 7ddf3d91b65d39305399a241308ae55d3f91f6a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Jan 2023 15:58:39 +0000 Subject: [PATCH 1465/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 809ae66..07792db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230127.5-unstable +jellyfin-server20230128.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 884a240f431829f6769157ef501b31bed4dde8ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Jan 2023 18:00:12 -0600 Subject: [PATCH 1466/2257] 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 07792db..4aea780 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,8 +34,8 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-6-jammy -jellyfin-server20230128.7-unstable +jellyfin-ffmpeg55.1.2-7-jammy +jellyfin-server20230130.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -60,11 +60,11 @@ libcrypt11:4.4.27-1 libcurl47.81.0-1ubuntu1.7 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 -libdrm22.4.110-1ubuntu1 -libdrm-amdgpu12.4.110-1ubuntu1 -libdrm-common2.4.110-1ubuntu1 -libdrm-nouveau22.4.110-1ubuntu1 -libdrm-radeon12.4.110-1ubuntu1 +libdrm22.4.113-2~ubuntu0.22.04.1 +libdrm-amdgpu12.4.113-2~ubuntu0.22.04.1 +libdrm-common2.4.113-2~ubuntu0.22.04.1 +libdrm-nouveau22.4.113-2~ubuntu0.22.04.1 +libdrm-radeon12.4.113-2~ubuntu0.22.04.1 libedit23.1-20210910-1build1 libelf10.186-1build1 libexpat12.4.7-1ubuntu0.2 @@ -93,8 +93,8 @@ libkrb5support01.19.2-2 libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 -libllvm131:13.0.1-2ubuntu2.1 libllvm141:14.0.0-1ubuntu1 +libllvm151:15.0.6-3~ubuntu0.22.04.2 liblz4-11.9.3-2build2 liblzma55.2.5-2ubuntu1 libmd01.0.4-1build1 @@ -182,7 +182,7 @@ login1:4.8.1-2ubuntu2.1 logsave1.46.5-2ubuntu1.1 lsb-base11.1.0ubuntu4 mawk1.3.4.20200120-3 -mesa-va-drivers22.0.5-0ubuntu0.3 +mesa-va-drivers22.2.5-0ubuntu0.1~22.04.1 mount2.37.2-4ubuntu3 ncurses-base6.3-2 ncurses-bin6.3-2 From f3a23eecd53340e15c16b0cc3c22f8d1d0072bff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Feb 2023 20:15:19 -0600 Subject: [PATCH 1467/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4aea780..d8402a1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230130.7-unstable +jellyfin-server20230202.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 81ea9bed6d34be345053cc4e4606ce648e3e1ca2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Feb 2023 20:46:11 -0600 Subject: [PATCH 1468/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0c5acc9..bc82911 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,7 +34,7 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-6-jammy +jellyfin-ffmpeg55.1.2-7-jammy jellyfin-server10.8.9-1 jellyfin-web10.8.9-1 jq1.6-2.1ubuntu3 @@ -60,11 +60,11 @@ libcrypt11:4.4.27-1 libcurl47.81.0-1ubuntu1.7 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 -libdrm22.4.110-1ubuntu1 -libdrm-amdgpu12.4.110-1ubuntu1 -libdrm-common2.4.110-1ubuntu1 -libdrm-nouveau22.4.110-1ubuntu1 -libdrm-radeon12.4.110-1ubuntu1 +libdrm22.4.113-2~ubuntu0.22.04.1 +libdrm-amdgpu12.4.113-2~ubuntu0.22.04.1 +libdrm-common2.4.113-2~ubuntu0.22.04.1 +libdrm-nouveau22.4.113-2~ubuntu0.22.04.1 +libdrm-radeon12.4.113-2~ubuntu0.22.04.1 libedit23.1-20210910-1build1 libelf10.186-1build1 libexpat12.4.7-1ubuntu0.2 @@ -93,8 +93,8 @@ libkrb5support01.19.2-2 libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 -libllvm131:13.0.1-2ubuntu2.1 libllvm141:14.0.0-1ubuntu1 +libllvm151:15.0.6-3~ubuntu0.22.04.2 liblz4-11.9.3-2build2 liblzma55.2.5-2ubuntu1 libmd01.0.4-1build1 @@ -182,7 +182,7 @@ login1:4.8.1-2ubuntu2.1 logsave1.46.5-2ubuntu1.1 lsb-base11.1.0ubuntu4 mawk1.3.4.20200120-3 -mesa-va-drivers22.0.5-0ubuntu0.3 +mesa-va-drivers22.2.5-0ubuntu0.1~22.04.1 mount2.37.2-4ubuntu3 ncurses-base6.3-2 ncurses-bin6.3-2 From 3e2cf91db0f3066f35324a5e41bca2cfd319d34f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Feb 2023 14:16:33 +0100 Subject: [PATCH 1469/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d8402a1..067ec06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230202.1-unstable +jellyfin-server20230202.3-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 9e20be7c4e95ea5b435c00baabd79bcbdd88532f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Feb 2023 13:59:06 -0600 Subject: [PATCH 1470/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 067ec06..236bc8f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230202.3-unstable +jellyfin-server20230202.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From aa6c0d63ab81bc41cd65df2c53cbdaa43a1c88c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 3 Feb 2023 15:58:59 +0100 Subject: [PATCH 1471/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 236bc8f..3184af7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230202.10-unstable +jellyfin-server20230203.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 5cebe221707607f519daad216d1dd603a9380894 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Feb 2023 03:06:27 +0100 Subject: [PATCH 1472/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3184af7..7f40aeb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230203.4-unstable +jellyfin-server20230204.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From fa0be6adec814fdb4b91cf47190dc6377c5bc0e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Feb 2023 18:58:53 +0100 Subject: [PATCH 1473/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7f40aeb..03f6d12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230204.1-unstable +jellyfin-server20230204.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From d9e1cf57349b203c48bea202a56309e8443f4d40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Feb 2023 12:03:39 -0600 Subject: [PATCH 1474/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 03f6d12..e5b5443 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230204.8-unstable +jellyfin-server20230204.12-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 5e57e2a851a1b3ae8e77cdb3e23403d7696ba7e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Feb 2023 00:00:32 -0600 Subject: [PATCH 1475/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e5b5443..14e234a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230204.12-unstable +jellyfin-server20230205.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 1683fb478df5836fece2a3a383fadcfce00b7b0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Feb 2023 14:08:02 +0100 Subject: [PATCH 1476/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 14e234a..b783ead 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230205.1-unstable +jellyfin-server20230205.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From b08feac864722411b810cf7604c7d664514b964a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Feb 2023 20:59:18 +0100 Subject: [PATCH 1477/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b783ead..0267b70 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230205.2-unstable +jellyfin-server20230205.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From b27a484864003e54d21bae29370b54783f14ca97 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Feb 2023 20:09:17 -0600 Subject: [PATCH 1478/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0267b70..3b17a6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230205.5-unstable +jellyfin-server20230205.17-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 3b6806393a6cb298895b3a34a3f2ac0c51805a91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Feb 2023 17:59:26 -0600 Subject: [PATCH 1479/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3b17a6c..f7b484c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230205.17-unstable +jellyfin-server20230206.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 02965b4614efcd16aaefed840c885b1efcf7bf18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Feb 2023 23:59:22 +0100 Subject: [PATCH 1480/2257] 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 f7b484c..1e64ffa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230206.8-unstable +jellyfin-server20230208.11-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -136,7 +136,7 @@ libsmartcols12.37.2-4ubuntu3 libsqlite3-03.37.2-2ubuntu0.1 libss21.46.5-2ubuntu1.1 libssh-40.9.6-2build1 -libssl33.0.2-0ubuntu1.7 +libssl33.0.2-0ubuntu1.8 libstdc++612.1.0-2ubuntu1~22.04 libsystemd0249.11-0ubuntu3.6 libtasn1-64.18.0-4build1 From c975de2171c22677eb3c6134974137a7d7cf3b40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Feb 2023 03:49:42 +0100 Subject: [PATCH 1481/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bc82911..405ed2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ libsmartcols12.37.2-4ubuntu3 libsqlite3-03.37.2-2ubuntu0.1 libss21.46.5-2ubuntu1.1 libssh-40.9.6-2build1 -libssl33.0.2-0ubuntu1.7 +libssl33.0.2-0ubuntu1.8 libstdc++612.1.0-2ubuntu1~22.04 libsystemd0249.11-0ubuntu3.6 libtasn1-64.18.0-4build1 From 81d28a9ee9c26af2a09c35ad330cdaff9e9f9a9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Feb 2023 20:50:37 -0600 Subject: [PATCH 1482/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1e64ffa..e28c6a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230208.11-unstable +jellyfin-server20230209.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From f9305c6677bf95775cce263a3922c90c40580979 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Feb 2023 13:00:54 +0100 Subject: [PATCH 1483/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e28c6a5..662cdf2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230209.2-unstable +jellyfin-server20230209.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 97221ce092e666ea4161dd86d599e8631852a700 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Feb 2023 10:59:03 +0100 Subject: [PATCH 1484/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 662cdf2..e4db383 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230209.8-unstable +jellyfin-server20230210.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 97a065b2a46d93c325a8b69f4648ee8cd26da98e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 17:57:24 -0600 Subject: [PATCH 1485/2257] Bot Updating Templated Files --- Jenkinsfile | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6b5e788..d18a255 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 8a3ed289f3bedf153c97cb1a74f2fe6e976ad017 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Feb 2023 00:58:45 +0100 Subject: [PATCH 1486/2257] 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 49f9228..2b1aa10 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-jellyfin/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/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 9ba7a1d..3d6c221 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 @@ -66,7 +66,6 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Jellyfin releases | | nightly | ✅ | Unstable Jellyfin releases | - ## Application Setup Webui can be found at `http://<your-ip>:8096` @@ -126,7 +125,7 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=Europe/London + - TZ=Etc/UTC volumes: - /path/to/library:/config - path/to/tvseries:/data/tvshows @@ -152,7 +151,7 @@ docker run -d \ --name=jellyfin \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ=Europe/London \ + -e TZ=Etc/UTC \ -p 8096:8096 \ -p 8920:8920 `#optional` \ -v /path/to/library:/config \ @@ -167,6 +166,7 @@ docker run -d \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/jellyfin:nightly + ``` ## Parameters @@ -179,7 +179,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-p 8920` | Https webUI (you need to set up your own certificate). | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | -| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London | +| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | From 17565e4a7786c198eee6e5c06f045ad712f360a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 18:02:21 -0600 Subject: [PATCH 1487/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e4db383..fcd30ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230210.2-unstable +jellyfin-server20230211.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 7aa566ada755b5f87ce121f5b6038b2d9f05bd8c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Feb 2023 08:00:32 +0100 Subject: [PATCH 1488/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fcd30ab..c169b89 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230211.2-unstable +jellyfin-server20230212.1-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From d9acb8ea30edbfedd3c5db1656623c0cf0c13438 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Feb 2023 07:12:03 -0600 Subject: [PATCH 1489/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c169b89..f5685f6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230212.1-unstable +jellyfin-server20230212.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 721c5359f6acf424152685345e588c786733a787 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Feb 2023 20:59:56 +0100 Subject: [PATCH 1490/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f5685f6..86192e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230212.2-unstable +jellyfin-server20230212.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2d080f742bb495ad8a8ba9aecfd3b7b272e00150 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Feb 2023 20:16:14 -0600 Subject: [PATCH 1491/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 86192e3..359a68a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230212.8-unstable +jellyfin-server20230212.14-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2e7ec3a6062cc68558929515617ed3feb805734e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Feb 2023 03:58:57 -0600 Subject: [PATCH 1492/2257] 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 359a68a..f977277 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230212.14-unstable +jellyfin-server20230214.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -189,7 +189,7 @@ ncurses-bin6.3-2 netcat1.218-4ubuntu1 netcat-openbsd1.218-4ubuntu1 ocl-icd-libopencl12.2.14-3 -openssl3.0.2-0ubuntu1.7 +openssl3.0.2-0ubuntu1.8 passwd1:4.8.1-2ubuntu2.1 perl-base5.34.0-3ubuntu1.1 pinentry-curses1.1.1-1build2 From b45a923eec6e28d622e9959533c4053a30889af5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Feb 2023 20:59:22 +0100 Subject: [PATCH 1493/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f977277..9f3baa6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230214.2-unstable +jellyfin-server20230214.14-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2ff110bffbfaab3a365230fbb16660c32ccebe3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Feb 2023 22:58:52 +0100 Subject: [PATCH 1494/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9f3baa6..d13b964 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230214.14-unstable +jellyfin-server20230215.5-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2a68a13f5842ac58ca8d1294069bc6cc3e955a08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Feb 2023 03:48:04 +0100 Subject: [PATCH 1495/2257] Bot Updating Templated Files --- Jenkinsfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8758eeb..cfbcf70 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( @@ -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-latest - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest 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-latest 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-latest 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-latest - docker push ${MANIFESTIMAGE}:arm32v7-latest - docker push ${MANIFESTIMAGE}:arm64v8-latest docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:amd64-latest + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-latest docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-latest 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 23e7e1a51e3cb374fec9a9a0af07ff3e0cae90fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Feb 2023 03:49:26 +0100 Subject: [PATCH 1496/2257] 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 8c024fa..27cb588 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-jellyfin/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-jellyfin/blob/master/.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-jellyfin/blob/master/.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 675fdba..64a9175 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 @@ -66,7 +66,6 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Jellyfin releases | | nightly | ✅ | Nightly Jellyfin releases | - ## Application Setup Webui can be found at `http://<your-ip>:8096` @@ -131,7 +130,7 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=Europe/London + - TZ=Etc/UTC - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - /path/to/library:/config @@ -152,7 +151,7 @@ docker run -d \ --name=jellyfin \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ=Europe/London \ + -e TZ=Etc/UTC \ -e JELLYFIN_PublishedServerUrl=192.168.0.5 `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ @@ -163,6 +162,7 @@ docker run -d \ -v /path/to/movies:/data/movies \ --restart unless-stopped \ lscr.io/linuxserver/jellyfin:latest + ``` ## Parameters @@ -177,7 +177,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | | `-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 (e.g. Europe/London). | +| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `-e JELLYFIN_PublishedServerUrl=192.168.0.5` | Set the autodiscovery response domain or IP address. | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | From 64d3ee5c436f74a088bf2b8679865587422a9bb8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Feb 2023 20:49:37 -0600 Subject: [PATCH 1497/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d13b964..b9f92e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230215.5-unstable +jellyfin-server20230215.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 27592de9040d4c5157f800a0e6f6261d6feb63be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Feb 2023 03:53:21 +0100 Subject: [PATCH 1498/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 405ed2b..01a537e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -189,7 +189,7 @@ ncurses-bin6.3-2 netcat1.218-4ubuntu1 netcat-openbsd1.218-4ubuntu1 ocl-icd-libopencl12.2.14-3 -openssl3.0.2-0ubuntu1.7 +openssl3.0.2-0ubuntu1.8 passwd1:4.8.1-2ubuntu2.1 perl-base5.34.0-3ubuntu1.1 pinentry-curses1.1.1-1build2 From 412559fd32d908f6a789d5a3e855fc32725babcc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Feb 2023 18:59:34 +0100 Subject: [PATCH 1499/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b9f92e0..6379833 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230215.9-unstable +jellyfin-server20230216.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 5c7a404e647a72bbceab177595398ff9624b9147 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Feb 2023 07:15:21 -0600 Subject: [PATCH 1500/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6379833..7408528 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230216.10-unstable +jellyfin-server20230217.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 439d9d81ca2935e9f8606068a284d8b50c0f1be3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Feb 2023 15:59:30 -0600 Subject: [PATCH 1501/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7408528..9013013 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230217.6-unstable +jellyfin-server20230217.14-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From cfc3e960df63d8a8121de894d94b51c87b215f1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Feb 2023 06:01:50 +0100 Subject: [PATCH 1502/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9013013..3f04266 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230217.14-unstable +jellyfin-server20230218.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 0e7cbea2b52be94cf72b00e0c2a695e13ef11ecd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Feb 2023 14:59:45 +0100 Subject: [PATCH 1503/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3f04266..b1c52c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230218.2-unstable +jellyfin-server20230218.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 2e42faa39844d6a95c0dab63d04474a949143f58 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Feb 2023 21:59:04 +0100 Subject: [PATCH 1504/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b1c52c9..754056f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230218.7-unstable +jellyfin-server20230218.12-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 657540610d97e1254b5a7ead0885c2b1164a6650 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Feb 2023 05:59:18 -0600 Subject: [PATCH 1505/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 754056f..964ed05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230218.12-unstable +jellyfin-server20230219.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 91bd9f05d899cf10061a216ee7da4a1e04c8158c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Feb 2023 20:00:04 +0100 Subject: [PATCH 1506/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 964ed05..b9e4f54 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230219.4-unstable +jellyfin-server20230219.11-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From d08f48e2f898c77394a20465f76d2d2082a734d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Feb 2023 03:18:29 +0100 Subject: [PATCH 1507/2257] 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 b9e4f54..0b8a2ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,8 +34,8 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-7-jammy -jellyfin-server20230219.11-unstable +jellyfin-ffmpeg55.1.2-8-jammy +jellyfin-server20230219.19-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From e9c6db41d943ae618b20c7132b205df70c509d68 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Feb 2023 10:59:43 +0100 Subject: [PATCH 1508/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0b8a2ae..ec8b643 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230219.19-unstable +jellyfin-server20230220.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 60391c6a1c72e61cc585a04952c626c65a5d4cdf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Feb 2023 11:00:20 -0600 Subject: [PATCH 1509/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ec8b643..32af0f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230220.2-unstable +jellyfin-server20230220.10-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 63c49a37fc7c8e250b2176a74624e55566127821 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Feb 2023 00:58:50 +0100 Subject: [PATCH 1510/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 32af0f7..3467d90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230220.10-unstable +jellyfin-server20230220.15-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From a72963cdfe809d1008d5585742ef16b69427bbf8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Feb 2023 10:59:23 -0600 Subject: [PATCH 1511/2257] 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 3467d90..3e562a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu5 apt2.4.8 apt-utils2.4.8 at3.2.5-1ubuntu1 -base-files12ubuntu4.2 +base-files12ubuntu4.3 base-passwd3.5.52build1 bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230220.15-unstable +jellyfin-server20230221.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -80,16 +80,16 @@ libgmp102:6.2.1+dfsg-3ubuntu1 libgnutls303.7.3-4ubuntu1.1 libgpg-error01.43-3 libgraphite2-31.3.14-1build2 -libgssapi-krb5-21.19.2-2 +libgssapi-krb5-21.19.2-2ubuntu0.1 libharfbuzz0b2.7.4-1ubuntu3.1 libhogweed63.7.3-1build2 libicu7070.1-2 libidn2-02.3.2-2build1 libjq11.6-2.1ubuntu3 -libk5crypto31.19.2-2 +libk5crypto31.19.2-2ubuntu0.1 libkeyutils11.6.1-2ubuntu3 -libkrb5-31.19.2-2 -libkrb5support01.19.2-2 +libkrb5-31.19.2-2ubuntu0.1 +libkrb5support01.19.2-2ubuntu0.1 libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 @@ -111,10 +111,10 @@ libogg01.3.5-0ubuntu3 libonig56.9.7.1-2build1 libopus01.3.1-0.1build2 libp11-kit00.24.0-6build1 -libpam0g1.4.0-11ubuntu2 -libpam-modules1.4.0-11ubuntu2 -libpam-modules-bin1.4.0-11ubuntu2 -libpam-runtime1.4.0-11ubuntu2 +libpam0g1.4.0-11ubuntu2.3 +libpam-modules1.4.0-11ubuntu2.3 +libpam-modules-bin1.4.0-11ubuntu2.3 +libpam-runtime1.4.0-11ubuntu2.3 libpciaccess00.16-3 libpcre2-8-010.39-3ubuntu0.1 libpcre32:8.39-13ubuntu0.22.04.1 From 0aa1304e2c72e4c5dc2a82be2910a662121a3b0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Feb 2023 17:59:24 -0600 Subject: [PATCH 1512/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3e562a3..6ada4e2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230221.6-unstable +jellyfin-server20230221.9-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From eec3db55ba237288afcacb22cead1d10729bb5f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Feb 2023 00:59:17 -0600 Subject: [PATCH 1513/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ada4e2..bb2d330 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230221.9-unstable +jellyfin-server20230222.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From fc6cadfb77f284585ef49289e643ce083dbf7400 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Feb 2023 07:17:41 -0600 Subject: [PATCH 1514/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bb2d330..8802464 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230222.8-unstable +jellyfin-server20230222.17-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From cd9b728a1baeeac6a42ca1a2b3b8a5476538d7ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Feb 2023 20:47:37 -0600 Subject: [PATCH 1515/2257] 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 01a537e..cebddff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.118ubuntu5 apt2.4.8 apt-utils2.4.8 at3.2.5-1ubuntu1 -base-files12ubuntu4.2 +base-files12ubuntu4.3 base-passwd3.5.52build1 bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 @@ -34,7 +34,7 @@ grep3.7-1build1 gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-7-jammy +jellyfin-ffmpeg55.1.2-8-jammy jellyfin-server10.8.9-1 jellyfin-web10.8.9-1 jq1.6-2.1ubuntu3 @@ -80,16 +80,16 @@ libgmp102:6.2.1+dfsg-3ubuntu1 libgnutls303.7.3-4ubuntu1.1 libgpg-error01.43-3 libgraphite2-31.3.14-1build2 -libgssapi-krb5-21.19.2-2 +libgssapi-krb5-21.19.2-2ubuntu0.1 libharfbuzz0b2.7.4-1ubuntu3.1 libhogweed63.7.3-1build2 libicu7070.1-2 libidn2-02.3.2-2build1 libjq11.6-2.1ubuntu3 -libk5crypto31.19.2-2 +libk5crypto31.19.2-2ubuntu0.1 libkeyutils11.6.1-2ubuntu3 -libkrb5-31.19.2-2 -libkrb5support01.19.2-2 +libkrb5-31.19.2-2ubuntu0.1 +libkrb5support01.19.2-2ubuntu0.1 libksba81.6.0-2ubuntu0.2 libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 @@ -111,10 +111,10 @@ libogg01.3.5-0ubuntu3 libonig56.9.7.1-2build1 libopus01.3.1-0.1build2 libp11-kit00.24.0-6build1 -libpam0g1.4.0-11ubuntu2 -libpam-modules1.4.0-11ubuntu2 -libpam-modules-bin1.4.0-11ubuntu2 -libpam-runtime1.4.0-11ubuntu2 +libpam0g1.4.0-11ubuntu2.3 +libpam-modules1.4.0-11ubuntu2.3 +libpam-modules-bin1.4.0-11ubuntu2.3 +libpam-runtime1.4.0-11ubuntu2.3 libpciaccess00.16-3 libpcre2-8-010.39-3ubuntu0.1 libpcre32:8.39-13ubuntu0.22.04.1 From 704287a77cfdfd773caa226d712d42cd10a3c685 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 23 Feb 2023 15:59:45 +0100 Subject: [PATCH 1516/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8802464..69e5f4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230222.17-unstable +jellyfin-server20230223.2-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From ddb7fb0326c6603dc1e2ce0d3a606ce309e7c977 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 23 Feb 2023 16:59:35 -0600 Subject: [PATCH 1517/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 69e5f4f..dee95d9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230223.2-unstable +jellyfin-server20230223.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From ba3cf58427247573ea3e5ec3e32ff54f986787dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 24 Feb 2023 09:00:50 -0600 Subject: [PATCH 1518/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dee95d9..8b17e4b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230223.4-unstable +jellyfin-server20230224.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From cf0085c88352cd194f6302cf60861caed8deae10 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 24 Feb 2023 22:59:13 +0100 Subject: [PATCH 1519/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8b17e4b..4210a09 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230224.4-unstable +jellyfin-server20230224.8-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From ef32bf6b50889552a1ef619a45316713d4e2a23b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Feb 2023 06:00:08 +0100 Subject: [PATCH 1520/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4210a09..1343fa3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230224.8-unstable +jellyfin-server20230224.15-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 0e49bc5de03c2b9b4e6b080ea553031c88ee3df4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Feb 2023 10:59:39 -0600 Subject: [PATCH 1521/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1343fa3..3cc287f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230224.15-unstable +jellyfin-server20230225.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 3b472b75c0b99293b313f9f55fb0195247f2951a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Feb 2023 15:00:10 +0100 Subject: [PATCH 1522/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3cc287f..88e5637 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230225.7-unstable +jellyfin-server20230226.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From a3d59d1317a5ca5ee430f8f7121a3e26e2571a1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Feb 2023 15:00:02 -0600 Subject: [PATCH 1523/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 88e5637..b2345dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230226.4-unstable +jellyfin-server20230226.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 1ad7924ea2975a3273734a4f34ba720e350b33ab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 27 Feb 2023 07:18:36 -0600 Subject: [PATCH 1524/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b2345dc..7efda12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230226.6-unstable +jellyfin-server20230227.7-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 9fe3418ab1586fdfe0ca292af3851837d31eb26a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Feb 2023 15:59:18 -0600 Subject: [PATCH 1525/2257] 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 7efda12..ea2c691 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bash5.1-6ubuntu1 bsdutils1:2.37.2-4ubuntu3 ca-certificates20211016ubuntu0.22.04.1 coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.7 +curl7.81.0-1ubuntu1.8 dash0.5.11+git20210903+057cd650a4ed-3build1 debconf1.5.79ubuntu1 debianutils5.5-1ubuntu2 @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230227.7-unstable +jellyfin-server20230228.4-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 @@ -57,7 +57,7 @@ libcap-ng00.7.9-2.2build3 libc-bin2.35-0ubuntu3.1 libcom-err21.46.5-2ubuntu1.1 libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.7 +libcurl47.81.0-1ubuntu1.8 libdb5.35.3.28+dfsg1-0.8ubuntu3 libdebconfclient00.261ubuntu1 libdrm22.4.113-2~ubuntu0.22.04.1 From a81b11b8082cc5a3a9904d533b66f840e262cd6c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Mar 2023 05:59:15 +0100 Subject: [PATCH 1526/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ea2c691..038c631 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,7 +35,7 @@ gzip1.10-4ubuntu4.1 hostname3.23ubuntu2 init-system-helpers1.62 jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230228.4-unstable +jellyfin-server20230228.6-unstable jellyfin-web20220906.1-unstable jq1.6-2.1ubuntu3 libacl12.3.1-1 From 7230275e38c1c884f3b7f489b80afbaa470f27c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 03:54:22 +0100 Subject: [PATCH 1527/2257] Bot Updating Templated Files --- Jenkinsfile | 46 ++++++++++++++++++---------------------------- 1 file changed, 18 insertions(+), 28 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cfbcf70..30f3c3b 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-jellyfin/packages\" \ @@ -455,7 +456,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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-jellyfin/packages\" \ @@ -485,7 +487,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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-jellyfin/packages\" \ @@ -512,7 +515,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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-jellyfin/packages\" \ @@ -546,7 +550,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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 b72cd3aec6f3e4300b187961d489896a4a2bdfe4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 03:54:50 +0100 Subject: [PATCH 1528/2257] Bot Updating Templated Files --- Jenkinsfile | 46 ++++++++++++++++++---------------------------- 1 file changed, 18 insertions(+), 28 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d18a255..12b0ad6 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-jellyfin/packages\" \ @@ -455,7 +456,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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-jellyfin/packages\" \ @@ -485,7 +487,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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-jellyfin/packages\" \ @@ -512,7 +515,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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-jellyfin/packages\" \ @@ -546,7 +550,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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 38f42ff37a5fb8b42f65d0c0fb9a557f5e19308d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 03:58:39 +0100 Subject: [PATCH 1529/2257] Bot Updating Package Versions --- package_versions.txt | 596 ++++++++++++++++++++++++++++--------------- 1 file changed, 388 insertions(+), 208 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 038c631..315be88 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,208 +1,388 @@ -adduser3.118ubuntu5 -apt2.4.8 -apt-utils2.4.8 -at3.2.5-1ubuntu1 -base-files12ubuntu4.3 -base-passwd3.5.52build1 -bash5.1-6ubuntu1 -bsdutils1:2.37.2-4ubuntu3 -ca-certificates20211016ubuntu0.22.04.1 -coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.8 -dash0.5.11+git20210903+057cd650a4ed-3build1 -debconf1.5.79ubuntu1 -debianutils5.5-1ubuntu2 -diffutils1:3.8-0ubuntu2 -dirmngr2.2.27-3ubuntu2.1 -dpkg1.21.1ubuntu2.1 -e2fsprogs1.46.5-2ubuntu1.1 -findutils4.8.0-1ubuntu3 -fontconfig-config2.13.1-4.2ubuntu5 -fonts-dejavu-core2.37-2build1 -gcc-12-base12.1.0-2ubuntu1~22.04 -gnupg2.2.27-3ubuntu2.1 -gnupg-l10n2.2.27-3ubuntu2.1 -gnupg-utils2.2.27-3ubuntu2.1 -gpg2.2.27-3ubuntu2.1 -gpg-agent2.2.27-3ubuntu2.1 -gpgconf2.2.27-3ubuntu2.1 -gpgsm2.2.27-3ubuntu2.1 -gpgv2.2.27-3ubuntu2.1 -gpg-wks-client2.2.27-3ubuntu2.1 -gpg-wks-server2.2.27-3ubuntu2.1 -grep3.7-1build1 -gzip1.10-4ubuntu4.1 -hostname3.23ubuntu2 -init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server20230228.6-unstable -jellyfin-web20220906.1-unstable -jq1.6-2.1ubuntu3 -libacl12.3.1-1 -libapt-pkg6.02.4.8 -libass91:0.15.2-1 -libassuan02.5.5-1build1 -libattr11:2.5.1-1build1 -libaudit11:3.0.7-1build1 -libaudit-common1:3.0.7-1build1 -libblkid12.37.2-4ubuntu3 -libbluray21:1.3.1-1 -libbrotli11.0.9-2build6 -libbsd00.11.5-1 -libbz2-1.01.0.8-5build1 -libc62.35-0ubuntu3.1 -libcairo21.16.0-5ubuntu2 -libcap21:2.44-1build3 -libcap-ng00.7.9-2.2build3 -libc-bin2.35-0ubuntu3.1 -libcom-err21.46.5-2ubuntu1.1 -libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.8 -libdb5.35.3.28+dfsg1-0.8ubuntu3 -libdebconfclient00.261ubuntu1 -libdrm22.4.113-2~ubuntu0.22.04.1 -libdrm-amdgpu12.4.113-2~ubuntu0.22.04.1 -libdrm-common2.4.113-2~ubuntu0.22.04.1 -libdrm-nouveau22.4.113-2~ubuntu0.22.04.1 -libdrm-radeon12.4.113-2~ubuntu0.22.04.1 -libedit23.1-20210910-1build1 -libelf10.186-1build1 -libexpat12.4.7-1ubuntu0.2 -libext2fs21.46.5-2ubuntu1.1 -libffi83.4.2-4 -libfontconfig12.13.1-4.2ubuntu5 -libfreetype62.11.1+dfsg-1ubuntu0.1 -libfribidi01.0.8-2ubuntu3.1 -libgcc-s112.1.0-2ubuntu1~22.04 -libgcrypt201.9.4-3ubuntu3 -libglib2.0-02.72.4-0ubuntu1 -libgmp102:6.2.1+dfsg-3ubuntu1 -libgnutls303.7.3-4ubuntu1.1 -libgpg-error01.43-3 -libgraphite2-31.3.14-1build2 -libgssapi-krb5-21.19.2-2ubuntu0.1 -libharfbuzz0b2.7.4-1ubuntu3.1 -libhogweed63.7.3-1build2 -libicu7070.1-2 -libidn2-02.3.2-2build1 -libjq11.6-2.1ubuntu3 -libk5crypto31.19.2-2ubuntu0.1 -libkeyutils11.6.1-2ubuntu3 -libkrb5-31.19.2-2ubuntu0.1 -libkrb5support01.19.2-2ubuntu0.1 -libksba81.6.0-2ubuntu0.2 -libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 -libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 -libllvm141:14.0.0-1ubuntu1 -libllvm151:15.0.6-3~ubuntu0.22.04.2 -liblz4-11.9.3-2build2 -liblzma55.2.5-2ubuntu1 -libmd01.0.4-1build1 -libmount12.37.2-4ubuntu3 -libmp3lame03.100-3build2 -libncurses66.3-2 -libncursesw66.3-2 -libnettle83.7.3-1build2 -libnghttp2-141.43.0-1build3 -libnpth01.6-3build2 -libnsl21.3.0-2build2 -libnuma12.0.14-3ubuntu2 -libogg01.3.5-0ubuntu3 -libonig56.9.7.1-2build1 -libopus01.3.1-0.1build2 -libp11-kit00.24.0-6build1 -libpam0g1.4.0-11ubuntu2.3 -libpam-modules1.4.0-11ubuntu2.3 -libpam-modules-bin1.4.0-11ubuntu2.3 -libpam-runtime1.4.0-11ubuntu2.3 -libpciaccess00.16-3 -libpcre2-8-010.39-3ubuntu0.1 -libpcre32:8.39-13ubuntu0.22.04.1 -libpixman-1-00.40.0-1ubuntu0.22.04.1 -libpng16-161.6.37-3build5 -libprocps82:3.3.17-6ubuntu2 -libpsl50.21.0-1.2build2 -libreadline88.1.2-1 -librtmp12.4+20151223.gitfa8646d.1-2build4 -libsasl2-22.1.27+dfsg2-3ubuntu1.1 -libsasl2-modules2.1.27+dfsg2-3ubuntu1.1 -libsasl2-modules-db2.1.27+dfsg2-3ubuntu1.1 -libseccomp22.5.3-2ubuntu2 -libselinux13.3-1build2 -libsemanage23.3-1build2 -libsemanage-common3.3-1build2 -libsepol23.3-1build1 -libsmartcols12.37.2-4ubuntu3 -libsqlite3-03.37.2-2ubuntu0.1 -libss21.46.5-2ubuntu1.1 -libssh-40.9.6-2build1 -libssl33.0.2-0ubuntu1.8 -libstdc++612.1.0-2ubuntu1~22.04 -libsystemd0249.11-0ubuntu3.6 -libtasn1-64.18.0-4build1 -libtheora01.1.1+dfsg.1-15ubuntu4 -libtinfo66.3-2 -libtirpc31.3.2-2ubuntu0.1 -libtirpc-common1.3.2-2ubuntu0.1 -libudev1249.11-0ubuntu3.6 -libudfread01.1.2-1 -libunistring21.0-1 -libuuid12.37.2-4ubuntu3 -libvorbis0a1.3.7-1build2 -libvorbisenc21.3.7-1build2 -libvpx71.11.0-2ubuntu2 -libwebp71.2.2-2 -libwebpmux31.2.2-2 -libx11-62:1.7.5-1 -libx11-data2:1.7.5-1 -libx11-xcb12:1.7.5-1 -libx264-1632:0.163.3060+git5db6aa6-2build1 -libx265-1993.5-2 -libxau61:1.0.9-1build5 -libxcb11.14-3ubuntu3 -libxcb-dri2-01.14-3ubuntu3 -libxcb-dri3-01.14-3ubuntu3 -libxcb-present01.14-3ubuntu3 -libxcb-randr01.14-3ubuntu3 -libxcb-render01.14-3ubuntu3 -libxcb-shm01.14-3ubuntu3 -libxcb-sync11.14-3ubuntu3 -libxcb-xfixes01.14-3ubuntu3 -libxdmcp61:1.1.3-0ubuntu5 -libxext62:1.3.4-1build1 -libxml22.9.13+dfsg-1ubuntu0.2 -libxrender11:0.9.10-1build4 -libxshmfence11.3-1build4 -libxxhash00.8.1-1 -libzstd11.4.8+dfsg-3build1 -libzvbi00.2.35-19 -libzvbi-common0.2.35-19 -locales2.35-0ubuntu3.1 -login1:4.8.1-2ubuntu2.1 -logsave1.46.5-2ubuntu1.1 -lsb-base11.1.0ubuntu4 -mawk1.3.4.20200120-3 -mesa-va-drivers22.2.5-0ubuntu0.1~22.04.1 -mount2.37.2-4ubuntu3 -ncurses-base6.3-2 -ncurses-bin6.3-2 -netcat1.218-4ubuntu1 -netcat-openbsd1.218-4ubuntu1 -ocl-icd-libopencl12.2.14-3 -openssl3.0.2-0ubuntu1.8 -passwd1:4.8.1-2ubuntu2.1 -perl-base5.34.0-3ubuntu1.1 -pinentry-curses1.1.1-1build2 -procps2:3.3.17-6ubuntu2 -publicsuffix20211207.1025-1 -readline-common8.1.2-1 -sed4.8-1ubuntu2 -sensible-utils0.0.17 -sysvinit-utils3.01-1ubuntu1 -tar1.34+dfsg-1build3 -tzdata2022g-0ubuntu0.22.04.1 -ubuntu-keyring2021.03.26 -ucf3.0043 -usrmerge25ubuntu2 -util-linux2.37.2-4ubuntu3 -zlib1g1:1.2.11.dfsg-2ubuntu9.2 +NAME VERSION TYPE +BlurHashSharp 1.2.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0 dotnet +CacheManager.Core 1.2.0 dotnet +CommandLineParser 2.9.1 dotnet +Diacritics 3.3.14 dotnet +DiscUtils.Core 0.16.13 dotnet +DiscUtils.Iso9660 0.16.13 dotnet +DiscUtils.Streams 0.16.13 dotnet +DiscUtils.Udf 0.16.13 dotnet +DotNet.Glob 3.1.3 dotnet +EFCoreSecondLevelCacheInterceptor 3.8.5 dotnet +EasyCaching.Core 1.8.0 dotnet +Jellyfin.XmlTv 10.8.0 dotnet +LrcParser 2022.529.1 dotnet +MetaBrainz.Common 1.0.0 dotnet +MetaBrainz.Common.Json 5.1.0 dotnet +MetaBrainz.MusicBrainz 5.0.0 dotnet +Microsoft.AspNetCore.Authorization 7.0.3 dotnet +Microsoft.AspNetCore.Metadata 7.0.3 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet +Microsoft.Data.Sqlite.Core 7.0.3 dotnet +Microsoft.EntityFrameworkCore 7.0.3 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.3 dotnet +Microsoft.EntityFrameworkCore.Analyzers 7.0.3 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.3 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.3 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.3 dotnet +Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet +Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet +Microsoft.Extensions.Caching.Memory 7.0.0 dotnet +Microsoft.Extensions.Configuration 7.0.0 dotnet +Microsoft.Extensions.Configuration.Abstractions 7.0.0 dotnet +Microsoft.Extensions.Configuration.Binder 7.0.3 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.0 dotnet +Microsoft.Extensions.Configuration.FileExtensions 7.0.0 dotnet +Microsoft.Extensions.Configuration.Json 7.0.0 dotnet +Microsoft.Extensions.DependencyInjection 7.0.0 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet +Microsoft.Extensions.DependencyModel 7.0.0 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.3 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.3 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.3 dotnet +Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet +Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet +Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet +Microsoft.Extensions.Hosting.Abstractions 7.0.0 dotnet +Microsoft.Extensions.Http 7.0.0 dotnet +Microsoft.Extensions.Logging 7.0.0 dotnet +Microsoft.Extensions.Logging.Abstractions 7.0.0 dotnet +Microsoft.Extensions.ObjectPool 7.0.0 dotnet +Microsoft.Extensions.Options 7.0.1 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet +Microsoft.Extensions.Primitives 7.0.0 dotnet +Microsoft.NETCore.Platforms 5.0.0 dotnet +Microsoft.NETCore.Targets 1.1.0 dotnet +Microsoft.OpenApi 1.2.3 dotnet +Microsoft.Win32.Primitives 4.3.0 dotnet +Microsoft.Win32.Registry 5.0.0 dotnet +Microsoft.Win32.SystemEvents 6.0.0 dotnet +Mono.Nat 3.0.4 dotnet +NEbml 0.11.0 dotnet +NeoSmart.AsyncLock 3.2.1 dotnet +Newtonsoft.Json 13.0.2 dotnet +PlaylistsNET 1.3.1 dotnet +SQLitePCL.pretty.netstandard 3.1.0 dotnet +SQLitePCLRaw.bundle_e_sqlite3 2.1.4 dotnet +SQLitePCLRaw.core 2.1.4 dotnet +SQLitePCLRaw.lib.e_sqlite3 2.1.4 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.4 dotnet +Serilog 2.10.0 dotnet +Serilog.AspNetCore 6.1.0 dotnet +Serilog.Enrichers.Thread 3.1.0 dotnet +Serilog.Extensions.Hosting 5.0.1 dotnet +Serilog.Extensions.Logging 3.1.0 dotnet +Serilog.Formatting.Compact 1.1.0 dotnet +Serilog.Settings.Configuration 3.4.0 dotnet +Serilog.Sinks.Async 1.5.0 dotnet +Serilog.Sinks.Console 4.1.0 dotnet +Serilog.Sinks.Debug 2.0.0 dotnet +Serilog.Sinks.File 5.0.0 dotnet +Serilog.Sinks.Graylog 2.3.0 dotnet +SkiaSharp 2.88.3 dotnet +SkiaSharp.NativeAssets.Linux 2.88.3 dotnet +SkiaSharp.NativeAssets.Win32 2.88.3 dotnet +SkiaSharp.NativeAssets.macOS 2.88.3 dotnet +SkiaSharp.Svg 1.60.0 dotnet +Swashbuckle.AspNetCore 6.2.3 dotnet +Swashbuckle.AspNetCore.ReDoc 6.4.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet +System.Buffers 4.3.0 dotnet +System.Collections 4.3.0 dotnet +System.Collections.Concurrent 4.3.0 dotnet +System.Diagnostics.Debug 4.3.0 dotnet +System.Diagnostics.DiagnosticSource 6.0.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.FileSystem 4.3.0 dotnet +System.IO.FileSystem.Primitives 4.3.0 dotnet +System.Linq 4.3.0 dotnet +System.Linq.Async 6.0.1 dotnet +System.Memory 4.5.4 dotnet +System.Net.Http 4.3.4 dotnet +System.Net.Primitives 4.3.0 dotnet +System.Private.Uri 4.3.0 dotnet +System.Reflection 4.3.0 dotnet +System.Reflection.Primitives 4.3.0 dotnet +System.Resources.ResourceManager 4.3.0 dotnet +System.Runtime 4.3.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.Numerics 4.3.0 dotnet +System.Security.AccessControl 5.0.0 dotnet +System.Security.Cryptography.Algorithms 4.3.0 dotnet +System.Security.Cryptography.Cng 4.3.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.Primitives 4.3.0 dotnet +System.Security.Cryptography.X509Certificates 4.3.0 dotnet +System.Security.Principal.Windows 5.0.0 dotnet +System.Text.Encoding 4.3.0 dotnet +System.Text.Encoding.CodePages 7.0.0 dotnet +System.Text.Encoding.Extensions 4.3.0 dotnet +System.Text.Encodings.Web 7.0.0 dotnet +System.Text.Json 7.0.2 dotnet +System.Threading 4.3.0 dotnet +System.Threading.Tasks 4.3.0 dotnet +System.Threading.Tasks.Dataflow 7.0.0 dotnet +TMDbLib 2.0.0 dotnet +TagLibSharp 2.3.0 dotnet +UTF.Unknown 2.5.1 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.8 deb +apt-utils 2.4.8 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20211016ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +curl 7.81.0-1ubuntu1.8 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.1 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg5 5.1.2-8-jammy deb +jellyfin-server 20230228.6-unstable deb +jellyfin-web 20220906.1-unstable deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.8 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1build3 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.8 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.1 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu1 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.1 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.1 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.1 deb +libkrb5support0 1.19.2-2ubuntu0.1 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libllvm14 1:14.0.0-1ubuntu1 deb +libllvm15 1:15.0.6-3~ubuntu0.22.04.2 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libncurses6 6.3-2 deb +libncursesw6 6.3-2 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1build3 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.10 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2build1 deb +libssl3 3.0.2-0ubuntu1.8 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.6 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.6 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2 deb +libwebp7 1.2.2-2 deb +libwebpmux3 1.2.2-2 deb +libx11-6 2:1.7.5-1 deb +libx11-data 2:1.7.5-1 deb +libx11-xcb1 2:1.7.5-1 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.2 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.1 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb +mount 2.37.2-4ubuntu3 deb +ncurses-base 6.3-2 deb +ncurses-bin 6.3-2 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.8 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.1 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net 8.0.0 dotnet +prometheus-net.AspNetCore 8.0.0 dotnet +prometheus-net.DotNetRuntime 4.4.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +runtime.any.System.Collections 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.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.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.native.System 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.2 dotnet +runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 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.2 dotnet +runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet +runtime.unix.Microsoft.Win32.Primitives 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.Private.Uri 4.3.0 dotnet +runtime.unix.System.Runtime.Extensions 4.3.0 dotnet +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1build3 deb +tzdata 2022g-0ubuntu0.22.04.1 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +zlib.net-mutliplatform 1.0.6 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 351b77362b1d99bc92258349ed927c6b0ad8e89e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 03:58:45 +0100 Subject: [PATCH 1530/2257] Bot Updating Package Versions --- package_versions.txt | 528 ++++++++++++++++++++++++++----------------- 1 file changed, 320 insertions(+), 208 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cebddff..9158827 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,208 +1,320 @@ -adduser3.118ubuntu5 -apt2.4.8 -apt-utils2.4.8 -at3.2.5-1ubuntu1 -base-files12ubuntu4.3 -base-passwd3.5.52build1 -bash5.1-6ubuntu1 -bsdutils1:2.37.2-4ubuntu3 -ca-certificates20211016ubuntu0.22.04.1 -coreutils8.32-4.1ubuntu1 -curl7.81.0-1ubuntu1.7 -dash0.5.11+git20210903+057cd650a4ed-3build1 -debconf1.5.79ubuntu1 -debianutils5.5-1ubuntu2 -diffutils1:3.8-0ubuntu2 -dirmngr2.2.27-3ubuntu2.1 -dpkg1.21.1ubuntu2.1 -e2fsprogs1.46.5-2ubuntu1.1 -findutils4.8.0-1ubuntu3 -fontconfig-config2.13.1-4.2ubuntu5 -fonts-dejavu-core2.37-2build1 -gcc-12-base12.1.0-2ubuntu1~22.04 -gnupg2.2.27-3ubuntu2.1 -gnupg-l10n2.2.27-3ubuntu2.1 -gnupg-utils2.2.27-3ubuntu2.1 -gpg2.2.27-3ubuntu2.1 -gpg-agent2.2.27-3ubuntu2.1 -gpgconf2.2.27-3ubuntu2.1 -gpgsm2.2.27-3ubuntu2.1 -gpgv2.2.27-3ubuntu2.1 -gpg-wks-client2.2.27-3ubuntu2.1 -gpg-wks-server2.2.27-3ubuntu2.1 -grep3.7-1build1 -gzip1.10-4ubuntu4.1 -hostname3.23ubuntu2 -init-system-helpers1.62 -jellyfin-ffmpeg55.1.2-8-jammy -jellyfin-server10.8.9-1 -jellyfin-web10.8.9-1 -jq1.6-2.1ubuntu3 -libacl12.3.1-1 -libapt-pkg6.02.4.8 -libass91:0.15.2-1 -libassuan02.5.5-1build1 -libattr11:2.5.1-1build1 -libaudit11:3.0.7-1build1 -libaudit-common1:3.0.7-1build1 -libblkid12.37.2-4ubuntu3 -libbluray21:1.3.1-1 -libbrotli11.0.9-2build6 -libbsd00.11.5-1 -libbz2-1.01.0.8-5build1 -libc62.35-0ubuntu3.1 -libcairo21.16.0-5ubuntu2 -libcap21:2.44-1build3 -libcap-ng00.7.9-2.2build3 -libc-bin2.35-0ubuntu3.1 -libcom-err21.46.5-2ubuntu1.1 -libcrypt11:4.4.27-1 -libcurl47.81.0-1ubuntu1.7 -libdb5.35.3.28+dfsg1-0.8ubuntu3 -libdebconfclient00.261ubuntu1 -libdrm22.4.113-2~ubuntu0.22.04.1 -libdrm-amdgpu12.4.113-2~ubuntu0.22.04.1 -libdrm-common2.4.113-2~ubuntu0.22.04.1 -libdrm-nouveau22.4.113-2~ubuntu0.22.04.1 -libdrm-radeon12.4.113-2~ubuntu0.22.04.1 -libedit23.1-20210910-1build1 -libelf10.186-1build1 -libexpat12.4.7-1ubuntu0.2 -libext2fs21.46.5-2ubuntu1.1 -libffi83.4.2-4 -libfontconfig12.13.1-4.2ubuntu5 -libfreetype62.11.1+dfsg-1ubuntu0.1 -libfribidi01.0.8-2ubuntu3.1 -libgcc-s112.1.0-2ubuntu1~22.04 -libgcrypt201.9.4-3ubuntu3 -libglib2.0-02.72.4-0ubuntu1 -libgmp102:6.2.1+dfsg-3ubuntu1 -libgnutls303.7.3-4ubuntu1.1 -libgpg-error01.43-3 -libgraphite2-31.3.14-1build2 -libgssapi-krb5-21.19.2-2ubuntu0.1 -libharfbuzz0b2.7.4-1ubuntu3.1 -libhogweed63.7.3-1build2 -libicu7070.1-2 -libidn2-02.3.2-2build1 -libjq11.6-2.1ubuntu3 -libk5crypto31.19.2-2ubuntu0.1 -libkeyutils11.6.1-2ubuntu3 -libkrb5-31.19.2-2ubuntu0.1 -libkrb5support01.19.2-2ubuntu0.1 -libksba81.6.0-2ubuntu0.2 -libldap-2.5-02.5.13+dfsg-0ubuntu0.22.04.1 -libldap-common2.5.13+dfsg-0ubuntu0.22.04.1 -libllvm141:14.0.0-1ubuntu1 -libllvm151:15.0.6-3~ubuntu0.22.04.2 -liblz4-11.9.3-2build2 -liblzma55.2.5-2ubuntu1 -libmd01.0.4-1build1 -libmount12.37.2-4ubuntu3 -libmp3lame03.100-3build2 -libncurses66.3-2 -libncursesw66.3-2 -libnettle83.7.3-1build2 -libnghttp2-141.43.0-1build3 -libnpth01.6-3build2 -libnsl21.3.0-2build2 -libnuma12.0.14-3ubuntu2 -libogg01.3.5-0ubuntu3 -libonig56.9.7.1-2build1 -libopus01.3.1-0.1build2 -libp11-kit00.24.0-6build1 -libpam0g1.4.0-11ubuntu2.3 -libpam-modules1.4.0-11ubuntu2.3 -libpam-modules-bin1.4.0-11ubuntu2.3 -libpam-runtime1.4.0-11ubuntu2.3 -libpciaccess00.16-3 -libpcre2-8-010.39-3ubuntu0.1 -libpcre32:8.39-13ubuntu0.22.04.1 -libpixman-1-00.40.0-1ubuntu0.22.04.1 -libpng16-161.6.37-3build5 -libprocps82:3.3.17-6ubuntu2 -libpsl50.21.0-1.2build2 -libreadline88.1.2-1 -librtmp12.4+20151223.gitfa8646d.1-2build4 -libsasl2-22.1.27+dfsg2-3ubuntu1.1 -libsasl2-modules2.1.27+dfsg2-3ubuntu1.1 -libsasl2-modules-db2.1.27+dfsg2-3ubuntu1.1 -libseccomp22.5.3-2ubuntu2 -libselinux13.3-1build2 -libsemanage23.3-1build2 -libsemanage-common3.3-1build2 -libsepol23.3-1build1 -libsmartcols12.37.2-4ubuntu3 -libsqlite3-03.37.2-2ubuntu0.1 -libss21.46.5-2ubuntu1.1 -libssh-40.9.6-2build1 -libssl33.0.2-0ubuntu1.8 -libstdc++612.1.0-2ubuntu1~22.04 -libsystemd0249.11-0ubuntu3.6 -libtasn1-64.18.0-4build1 -libtheora01.1.1+dfsg.1-15ubuntu4 -libtinfo66.3-2 -libtirpc31.3.2-2ubuntu0.1 -libtirpc-common1.3.2-2ubuntu0.1 -libudev1249.11-0ubuntu3.6 -libudfread01.1.2-1 -libunistring21.0-1 -libuuid12.37.2-4ubuntu3 -libvorbis0a1.3.7-1build2 -libvorbisenc21.3.7-1build2 -libvpx71.11.0-2ubuntu2 -libwebp71.2.2-2 -libwebpmux31.2.2-2 -libx11-62:1.7.5-1 -libx11-data2:1.7.5-1 -libx11-xcb12:1.7.5-1 -libx264-1632:0.163.3060+git5db6aa6-2build1 -libx265-1993.5-2 -libxau61:1.0.9-1build5 -libxcb11.14-3ubuntu3 -libxcb-dri2-01.14-3ubuntu3 -libxcb-dri3-01.14-3ubuntu3 -libxcb-present01.14-3ubuntu3 -libxcb-randr01.14-3ubuntu3 -libxcb-render01.14-3ubuntu3 -libxcb-shm01.14-3ubuntu3 -libxcb-sync11.14-3ubuntu3 -libxcb-xfixes01.14-3ubuntu3 -libxdmcp61:1.1.3-0ubuntu5 -libxext62:1.3.4-1build1 -libxml22.9.13+dfsg-1ubuntu0.2 -libxrender11:0.9.10-1build4 -libxshmfence11.3-1build4 -libxxhash00.8.1-1 -libzstd11.4.8+dfsg-3build1 -libzvbi00.2.35-19 -libzvbi-common0.2.35-19 -locales2.35-0ubuntu3.1 -login1:4.8.1-2ubuntu2.1 -logsave1.46.5-2ubuntu1.1 -lsb-base11.1.0ubuntu4 -mawk1.3.4.20200120-3 -mesa-va-drivers22.2.5-0ubuntu0.1~22.04.1 -mount2.37.2-4ubuntu3 -ncurses-base6.3-2 -ncurses-bin6.3-2 -netcat1.218-4ubuntu1 -netcat-openbsd1.218-4ubuntu1 -ocl-icd-libopencl12.2.14-3 -openssl3.0.2-0ubuntu1.8 -passwd1:4.8.1-2ubuntu2.1 -perl-base5.34.0-3ubuntu1.1 -pinentry-curses1.1.1-1build2 -procps2:3.3.17-6ubuntu2 -publicsuffix20211207.1025-1 -readline-common8.1.2-1 -sed4.8-1ubuntu2 -sensible-utils0.0.17 -sysvinit-utils3.01-1ubuntu1 -tar1.34+dfsg-1build3 -tzdata2022g-0ubuntu0.22.04.1 -ubuntu-keyring2021.03.26 -ucf3.0043 -usrmerge25ubuntu2 -util-linux2.37.2-4ubuntu3 -zlib1g1:1.2.11.dfsg-2ubuntu9.2 +NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0 dotnet +CommandLineParser 2.9.1 dotnet +DiscUtils.Core 0.16.13 dotnet +DiscUtils.Iso9660 0.16.13 dotnet +DiscUtils.Streams 0.16.13 dotnet +DiscUtils.Udf 0.16.13 dotnet +DotNet.Glob 3.1.3 dotnet +Jellyfin.XmlTv 10.8.0 dotnet +Microsoft.AspNetCore.Authorization 6.0.9 dotnet +Microsoft.AspNetCore.Metadata 6.0.9 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet +Microsoft.Data.Sqlite.Core 6.0.9 dotnet +Microsoft.EntityFrameworkCore 6.0.9 dotnet +Microsoft.EntityFrameworkCore.Abstractions 6.0.9 dotnet +Microsoft.EntityFrameworkCore.Analyzers 6.0.9 dotnet +Microsoft.EntityFrameworkCore.Relational 6.0.9 dotnet +Microsoft.EntityFrameworkCore.Sqlite 6.0.9 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 6.0.9 dotnet +Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Caching.Memory 6.0.1 dotnet +Microsoft.Extensions.Configuration 6.0.0 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Configuration.Binder 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.DependencyInjection 6.0.0 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet +Microsoft.Extensions.DependencyModel 6.0.0 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.9 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.9 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.9 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.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Http 6.0.0 dotnet +Microsoft.Extensions.Logging 6.0.0 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.2 dotnet +Microsoft.Extensions.Options 6.0.0 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 2.0.0 dotnet +Microsoft.Extensions.Primitives 6.0.0 dotnet +Microsoft.NETCore.Platforms 5.0.0 dotnet +Microsoft.NETCore.Targets 1.1.0 dotnet +Microsoft.OpenApi 1.2.3 dotnet +Microsoft.Win32.Registry 5.0.0 dotnet +Microsoft.Win32.SystemEvents 5.0.0 dotnet +Mono.Nat 3.0.3 dotnet +NEbml 0.11.0 dotnet +Newtonsoft.Json 13.0.1 dotnet +OptimizedPriorityQueue 5.1.0 dotnet +PlaylistsNET 1.2.1 dotnet +SQLitePCL.pretty.netstandard 3.1.0 dotnet +SQLitePCLRaw.bundle_e_sqlite3 2.1.0 dotnet +SQLitePCLRaw.core 2.1.0 dotnet +SQLitePCLRaw.lib.e_sqlite3 2.1.0 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.0 dotnet +Serilog 2.10.0 dotnet +Serilog.AspNetCore 4.1.0 dotnet +Serilog.Enrichers.Thread 3.1.0 dotnet +Serilog.Extensions.Hosting 4.1.2 dotnet +Serilog.Extensions.Logging 3.0.1 dotnet +Serilog.Formatting.Compact 1.1.0 dotnet +Serilog.Settings.Configuration 3.3.0 dotnet +Serilog.Sinks.Async 1.5.0 dotnet +Serilog.Sinks.Console 4.0.1 dotnet +Serilog.Sinks.Debug 2.0.0 dotnet +Serilog.Sinks.File 5.0.0 dotnet +Serilog.Sinks.Graylog 2.3.0 dotnet +SharpCompress 0.32.2 dotnet +SkiaSharp 2.88.2 dotnet +SkiaSharp.NativeAssets.Linux 2.88.2 dotnet +SkiaSharp.NativeAssets.Win32 2.88.2 dotnet +SkiaSharp.NativeAssets.macOS 2.88.2 dotnet +SkiaSharp.Svg 1.60.0 dotnet +Swashbuckle.AspNetCore 6.2.3 dotnet +Swashbuckle.AspNetCore.ReDoc 6.3.1 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet +System.Buffers 4.5.1 dotnet +System.Collections.Immutable 6.0.0 dotnet +System.Diagnostics.DiagnosticSource 6.0.0 dotnet +System.Drawing.Common 5.0.2 dotnet +System.Globalization 4.3.0 dotnet +System.Linq.Async 6.0.1 dotnet +System.Memory 4.5.4 dotnet +System.Private.Uri 4.3.0 dotnet +System.Runtime 4.3.0 dotnet +System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet +System.Security.AccessControl 5.0.0 dotnet +System.Security.Principal.Windows 5.0.0 dotnet +System.Text.Encoding.CodePages 6.0.0 dotnet +System.Text.Encodings.Web 6.0.0 dotnet +System.Text.Json 6.0.6 dotnet +System.Threading.Tasks.Dataflow 6.0.0 dotnet +TMDbLib 1.9.2 dotnet +TagLibSharp 2.3.0 dotnet +UTF.Unknown 2.5.1 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.8 deb +apt-utils 2.4.8 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20211016ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +curl 7.81.0-1ubuntu1.8 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.1 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg5 5.1.2-8-jammy deb +jellyfin-server 10.8.9-1 deb +jellyfin-web 10.8.9-1 deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.8 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1build3 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.8 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.1 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu1 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.1 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.1 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.1 deb +libkrb5support0 1.19.2-2ubuntu0.1 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libllvm14 1:14.0.0-1ubuntu1 deb +libllvm15 1:15.0.6-3~ubuntu0.22.04.2 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libncurses6 6.3-2 deb +libncursesw6 6.3-2 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1build3 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.5 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2build1 deb +libssl3 3.0.2-0ubuntu1.8 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.6 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.6 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2 deb +libwebp7 1.2.2-2 deb +libwebpmux3 1.2.2-2 deb +libx11-6 2:1.7.5-1 deb +libx11-data 2:1.7.5-1 deb +libx11-xcb1 2:1.7.5-1 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.2 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.1 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb +mount 2.37.2-4ubuntu3 deb +ncurses-base 6.3-2 deb +ncurses-bin 6.3-2 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.8 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.1 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net 6.0.0 dotnet +prometheus-net.AspNetCore 6.0.0 dotnet +prometheus-net.DotNetRuntime 4.2.4 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +runtime.any.System.Globalization 4.3.0 dotnet +runtime.any.System.Runtime 4.3.0 dotnet +runtime.native.System 4.3.0 dotnet +runtime.unix.System.Private.Uri 4.3.0 dotnet +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1build3 deb +tzdata 2022g-0ubuntu0.22.04.1 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +zlib.net-mutliplatform 1.0.5 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 0cae2607718952181169f3aac879c09afd1d1da9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 19:00:00 +0100 Subject: [PATCH 1531/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 315be88..2281551 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230228.6-unstable deb +jellyfin-server 20230302.9-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 9cb6b89007500b433c9af8d68049ac9d710cf52b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Mar 2023 20:23:58 -0600 Subject: [PATCH 1532/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2281551..e784455 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230302.9-unstable deb +jellyfin-server 20230302.10-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 86117b3d724eddb2df845ff7794c42500348aaed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Mar 2023 10:00:14 -0600 Subject: [PATCH 1533/2257] 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 e784455..10b0f45 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230302.10-unstable deb +jellyfin-server 20230307.2-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -217,7 +217,7 @@ libgcc-s1 1 libgcrypt20 1.9.4-3ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu1 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb @@ -378,7 +378,7 @@ runtime.unix.System.Runtime.Extensions 4 sed 4.8-1ubuntu2 deb sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1build3 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tzdata 2022g-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb From 463d319f8fc49c9a0a2c203323594656a7774b05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Mar 2023 12:59:29 +0100 Subject: [PATCH 1534/2257] 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 10b0f45..e716b78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ DotNet.Glob 3 EFCoreSecondLevelCacheInterceptor 3.8.5 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet -LrcParser 2022.529.1 dotnet +LrcParser 2023.308.0 dotnet MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230307.2-unstable deb +jellyfin-server 20230308.6-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 213474ed218572e66012dfe13338a462080211ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Mar 2023 20:00:23 +0100 Subject: [PATCH 1535/2257] 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 e716b78..2fdb710 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -61,7 +61,7 @@ Microsoft.Win32.SystemEvents 6 Mono.Nat 3.0.4 dotnet NEbml 0.11.0 dotnet NeoSmart.AsyncLock 3.2.1 dotnet -Newtonsoft.Json 13.0.2 dotnet +Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.3.1 dotnet SQLitePCL.pretty.netstandard 3.1.0 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.4 dotnet @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230308.6-unstable deb +jellyfin-server 20230308.7-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From ba55178b00972a2fbc8e7eec83e47039bfc07cae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Mar 2023 03:54:59 +0100 Subject: [PATCH 1536/2257] 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 9158827..59d031d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -180,7 +180,7 @@ libgcc-s1 12.1.0-2ubunt libgcrypt20 1.9.4-3ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu1 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb @@ -310,7 +310,7 @@ runtime.unix.System.Private.Uri 4.3.0 sed 4.8-1ubuntu2 deb sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1build3 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tzdata 2022g-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb From cd0a3167853cdc94d451f7b2b1fa9b3203c9322c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Mar 2023 11:59:41 +0100 Subject: [PATCH 1537/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2fdb710..5c5d134 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230308.7-unstable deb +jellyfin-server 20230309.2-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d43767512a18937432f47bbcfe4ad2a833dac1cf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Mar 2023 11:59:42 -0600 Subject: [PATCH 1538/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5c5d134..46b4f55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230309.2-unstable deb +jellyfin-server 20230309.4-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 0b293d6dbd31181551cf14ab6cd2c98f81cc233f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Mar 2023 20:25:31 -0600 Subject: [PATCH 1539/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 46b4f55..15d1ddd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230309.4-unstable deb +jellyfin-server 20230310.3-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 53ecfa0890ea5dcda827b5acbe5efab37ee9de47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Mar 2023 17:00:53 +0100 Subject: [PATCH 1540/2257] 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 15d1ddd..789e94b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,4 +1,5 @@ NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet BlurHashSharp 1.2.0 dotnet BlurHashSharp.SkiaSharp 1.2.0 dotnet CacheManager.Core 1.2.0 dotnet @@ -175,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230310.3-unstable deb +jellyfin-server 20230310.14-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 1eb04a0b47bdf3b5cad0abf4190acbab9e5ee441 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Mar 2023 16:59:36 -0600 Subject: [PATCH 1541/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 789e94b..58f8190 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230310.14-unstable deb +jellyfin-server 20230310.18-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 213125df09edb0c08b5f0ee1961014de7627106a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Mar 2023 14:12:53 +0100 Subject: [PATCH 1542/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 58f8190..4046aec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230310.18-unstable deb +jellyfin-server 20230311.3-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 76ee174a5f5ce51e2121e791cbdb7ed78f346cb6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Mar 2023 20:59:27 +0100 Subject: [PATCH 1543/2257] 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 4046aec..2aba0ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230311.3-unstable deb +jellyfin-server 20230311.5-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -268,7 +268,7 @@ librtmp1 2 libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.10 dotnet +libse 3.6.11 dotnet libseccomp2 2.5.3-2ubuntu2 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb From 28ccf0daa9fe06b2d88936f346520237c2d64866 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Mar 2023 12:00:55 -0500 Subject: [PATCH 1544/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2aba0ba..14d4f19 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230311.5-unstable deb +jellyfin-server 20230312.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From c2f3904871cc315cb1d1ef954d1659b06e0921d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Mar 2023 18:00:22 -0500 Subject: [PATCH 1545/2257] 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 14d4f19..e09a0a1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,31 +17,31 @@ LrcParser 2 MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore.Authorization 7.0.3 dotnet -Microsoft.AspNetCore.Metadata 7.0.3 dotnet +Microsoft.AspNetCore.Authorization 7.0.4 dotnet +Microsoft.AspNetCore.Metadata 7.0.4 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 7.0.3 dotnet -Microsoft.EntityFrameworkCore 7.0.3 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.3 dotnet -Microsoft.EntityFrameworkCore.Analyzers 7.0.3 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.3 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.3 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.3 dotnet +Microsoft.Data.Sqlite.Core 7.0.4 dotnet +Microsoft.EntityFrameworkCore 7.0.4 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.4 dotnet +Microsoft.EntityFrameworkCore.Analyzers 7.0.4 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.4 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.4 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.4 dotnet Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet Microsoft.Extensions.Caching.Memory 7.0.0 dotnet Microsoft.Extensions.Configuration 7.0.0 dotnet Microsoft.Extensions.Configuration.Abstractions 7.0.0 dotnet -Microsoft.Extensions.Configuration.Binder 7.0.3 dotnet +Microsoft.Extensions.Configuration.Binder 7.0.4 dotnet Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.0 dotnet Microsoft.Extensions.Configuration.FileExtensions 7.0.0 dotnet Microsoft.Extensions.Configuration.Json 7.0.0 dotnet Microsoft.Extensions.DependencyInjection 7.0.0 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet Microsoft.Extensions.DependencyModel 7.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.3 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.3 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.3 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.4 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.4 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.4 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230312.1-unstable deb +jellyfin-server 20230314.16-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 4ad078db6cb302f8dec8af7e6272f36319838d98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Mar 2023 06:59:30 +0100 Subject: [PATCH 1546/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e09a0a1..3abc70b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230314.16-unstable deb +jellyfin-server 20230314.18-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 8a0a3c3f07bf94c4a55e466ac680b93a24bb5ab0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Mar 2023 08:15:11 -0500 Subject: [PATCH 1547/2257] 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 3abc70b..dc74e82 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ DiscUtils.Iso9660 0 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -EFCoreSecondLevelCacheInterceptor 3.8.5 dotnet +EFCoreSecondLevelCacheInterceptor 3.8.6 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2023.308.0 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230314.18-unstable deb +jellyfin-server 20230315.11-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 78c4b8c97924879dd71198e5ffb485f76422c261 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Mar 2023 15:00:20 -0500 Subject: [PATCH 1548/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dc74e82..845d43d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230315.11-unstable deb +jellyfin-server 20230315.12-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From f48610acfb3d44b6a58a6d01f2fedf89d7947c44 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Mar 2023 03:09:04 +0100 Subject: [PATCH 1549/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 845d43d..1f6a55e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230315.12-unstable deb +jellyfin-server 20230316.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 88975b5842876a43e0309eb7e17024c15002662d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Mar 2023 12:00:56 +0100 Subject: [PATCH 1550/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1f6a55e..5365b3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230316.1-unstable deb +jellyfin-server 20230316.8-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From ff070aaa18e046c1200b488098f9feb59c4d0620 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Mar 2023 12:59:38 -0500 Subject: [PATCH 1551/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5365b3d..7db7490 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230316.8-unstable deb +jellyfin-server 20230316.13-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From f966b40f3b0cb0b4484f7e3a4f422eee14ecc6c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Mar 2023 11:59:33 +0100 Subject: [PATCH 1552/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7db7490..9888ee6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230316.13-unstable deb +jellyfin-server 20230318.3-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From c080846f1b997f62d5cbe1a8a08fd53a191d2000 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Mar 2023 12:59:40 -0500 Subject: [PATCH 1553/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9888ee6..c0c92a1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230318.3-unstable deb +jellyfin-server 20230318.5-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 6205dd7f880728ffe916d431b04d881d61dabc17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Mar 2023 03:17:16 +0100 Subject: [PATCH 1554/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c0c92a1..62e9005 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230318.5-unstable deb +jellyfin-server 20230319.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 51217714ac4587611a62c186d48eeaac09c33db4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Mar 2023 09:59:22 -0500 Subject: [PATCH 1555/2257] 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 62e9005..d667837 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ BlurHashSharp 1 BlurHashSharp.SkiaSharp 1.2.0 dotnet CacheManager.Core 1.2.0 dotnet CommandLineParser 2.9.1 dotnet -Diacritics 3.3.14 dotnet +Diacritics 3.3.18 dotnet DiscUtils.Core 0.16.13 dotnet DiscUtils.Iso9660 0.16.13 dotnet DiscUtils.Streams 0.16.13 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230319.1-unstable deb +jellyfin-server 20230319.7-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From bce8a76137c64765d5fa5b2176143dbd6fe4e76e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Mar 2023 08:59:52 -0500 Subject: [PATCH 1556/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d667837..df3ee46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230319.7-unstable deb +jellyfin-server 20230320.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 180c9a4752310ff40453178ee14e807a25a802c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Mar 2023 21:59:57 -0500 Subject: [PATCH 1557/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index df3ee46..4109f31 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230320.1-unstable deb +jellyfin-server 20230320.3-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 833d8d6389b9e6fcfe942b11dfc253c8c3a939bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Mar 2023 10:59:49 -0500 Subject: [PATCH 1558/2257] 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 4109f31..5508418 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -149,7 +149,7 @@ bash 5 bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20211016ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.8 deb +curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230320.3-unstable deb +jellyfin-server 20230321.2-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -198,7 +198,7 @@ libcap-ng0 0 libcap2 1:2.44-1build3 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.8 deb +libcurl4 7.81.0-1ubuntu1.10 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -232,8 +232,8 @@ libkeyutils1 1 libkrb5-3 1.19.2-2ubuntu0.1 deb libkrb5support0 1.19.2-2ubuntu0.1 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb libllvm14 1:14.0.0-1ubuntu1 deb libllvm15 1:15.0.6-3~ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb @@ -280,13 +280,13 @@ libss2 1 libssh-4 0.9.6-2build1 deb libssl3 3.0.2-0ubuntu1.8 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.6 deb +libsystemd0 249.11-0ubuntu3.7 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb libtinfo6 6.3-2 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.6 deb +libudev1 249.11-0ubuntu3.7 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb From 4355e0f62a414eafc3e708fee75688b9e9be857b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Mar 2023 16:59:59 +0100 Subject: [PATCH 1559/2257] 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 5508418..37d4c8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,8 +175,8 @@ grep 3 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.2-8-jammy deb -jellyfin-server 20230321.2-unstable deb +jellyfin-ffmpeg5 5.1.2-9-jammy deb +jellyfin-server 20230322.4-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 5166429f0a02b14cb58686b1cfb2d10ca72832ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 23 Mar 2023 00:00:29 +0100 Subject: [PATCH 1560/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 37d4c8a..86ab1b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230322.4-unstable deb +jellyfin-server 20230322.5-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d2394b7479c39cb83f47228747f1474a83d98198 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Mar 2023 21:34:12 -0500 Subject: [PATCH 1561/2257] 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 59d031d..a3bfa68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -111,7 +111,7 @@ bash 5.1-6ubuntu1 bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20211016ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.8 deb +curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -137,7 +137,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.2-8-jammy deb +jellyfin-ffmpeg5 5.1.2-9-jammy deb jellyfin-server 10.8.9-1 deb jellyfin-web 10.8.9-1 deb jq 1.6-2.1ubuntu3 deb @@ -160,7 +160,7 @@ libcap-ng0 0.7.9-2.2buil libcap2 1:2.44-1build3 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.8 deb +libcurl4 7.81.0-1ubuntu1.10 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -194,8 +194,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.1 deb libkrb5support0 1.19.2-2ubuntu0.1 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.13+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.13+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb libllvm14 1:14.0.0-1ubuntu1 deb libllvm15 1:15.0.6-3~ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb @@ -242,13 +242,13 @@ libss2 1.46.5-2ubunt libssh-4 0.9.6-2build1 deb libssl3 3.0.2-0ubuntu1.8 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.6 deb +libsystemd0 249.11-0ubuntu3.7 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb libtinfo6 6.3-2 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.6 deb +libudev1 249.11-0ubuntu3.7 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb From ba2df8202622b8959eb87939fb9c0b4b122177b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 30 Mar 2023 15:12:43 +0200 Subject: [PATCH 1562/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 86ab1b5..a94741a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230322.5-unstable deb +jellyfin-server 20230330.4-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From c77f06170628aca86d9943a03726b7547f9059fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 30 Mar 2023 21:59:34 +0200 Subject: [PATCH 1563/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a94741a..f67dfda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230330.4-unstable deb +jellyfin-server 20230330.5-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From e745237b1cfa03bd53a60e25fd1c329a0c6d56e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 31 Mar 2023 05:00:26 +0200 Subject: [PATCH 1564/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f67dfda..763f2be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230330.5-unstable deb +jellyfin-server 20230330.16-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 7d7acf624267fa655be7076e1ccac77e4151911b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Apr 2023 23:57:31 +0200 Subject: [PATCH 1565/2257] Bot Updating Templated Files --- Jenkinsfile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 12b0ad6..33e632b 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 cc8598add855d45b7148e65fad15daaefb557f8c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Apr 2023 23:59:04 +0200 Subject: [PATCH 1566/2257] 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 8217f30b0112e5503e0aba3916f092bef0a0ad05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 00:00:47 +0200 Subject: [PATCH 1567/2257] 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..d827033 --- /dev/null +++ b/.github/workflows/call_issues_cron.yml @@ -0,0 +1,13 @@ +name: Mark stale issues and pull requests +on: + schedule: + - cron: '46 10 * * *' + 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 e99ff81..221e6e7 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: '03 2 * * 4' + - cron: '15 12 * * 2' 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 37ed71034304aef9593bd06e88c601bb30830dbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Apr 2023 00:04:22 +0200 Subject: [PATCH 1568/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 763f2be..4cd8f98 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230330.16-unstable deb +jellyfin-server 20230401.5-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 0579873bee0a251a12c42e7bbc49860f06a2848e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Apr 2023 01:59:43 +0200 Subject: [PATCH 1569/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4cd8f98..b90678c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230401.5-unstable deb +jellyfin-server 20230403.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 32566283820f6ff11064269ea64f525dcc36d0a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Apr 2023 05:59:27 -0500 Subject: [PATCH 1570/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b90678c..785d9c4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230403.1-unstable deb +jellyfin-server 20230405.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 7a8d9d971c131308af5ccabfe45346166adc22a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Apr 2023 21:30:43 -0500 Subject: [PATCH 1571/2257] Bot Updating Templated Files --- Jenkinsfile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 30f3c3b..440956f 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 db3221de81227853fbc31aeaeae547f80ae1643c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Apr 2023 21:32:16 -0500 Subject: [PATCH 1572/2257] 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 6753b2d45abc92a9a67235ee476b1fb954586374 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Apr 2023 21:33:56 -0500 Subject: [PATCH 1573/2257] 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..d827033 --- /dev/null +++ b/.github/workflows/call_issues_cron.yml @@ -0,0 +1,13 @@ +name: Mark stale issues and pull requests +on: + schedule: + - cron: '46 10 * * *' + 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 e99ff81..221e6e7 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: '03 2 * * 4' + - cron: '15 12 * * 2' 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 9e4ba9db08e94d21238c17e5071118bd8650e42e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Apr 2023 16:59:54 +0200 Subject: [PATCH 1574/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 785d9c4..8875887 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230405.1-unstable deb +jellyfin-server 20230406.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 7bfd39077f1a21204a85bbb332ecbe1138d52bc5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Apr 2023 00:00:35 +0200 Subject: [PATCH 1575/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8875887..0ae0ccf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230406.1-unstable deb +jellyfin-server 20230406.6-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 29d47531b27835f702ae81ad23397edcc09b3de9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Apr 2023 06:59:49 +0200 Subject: [PATCH 1576/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0ae0ccf..3e2b1c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230406.6-unstable deb +jellyfin-server 20230406.10-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 5d5a8c5aecce674aebbaa1f4f20a6db130444015 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Apr 2023 05:59:34 +0200 Subject: [PATCH 1577/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3e2b1c6..0b0cf8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230406.10-unstable deb +jellyfin-server 20230410.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 39edde941bcf46801f7f634455a758bf5535b87a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Apr 2023 14:59:46 -0500 Subject: [PATCH 1578/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0b0cf8a..2ef6c7f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230410.1-unstable deb +jellyfin-server 20230410.12-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 6906912a995dbc39e6fa75d69ce3d3387eb65ed0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Apr 2023 07:45:40 -0500 Subject: [PATCH 1579/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2ef6c7f..ee01c12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -235,7 +235,7 @@ libksba8 1 libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb libllvm14 1:14.0.0-1ubuntu1 deb -libllvm15 1:15.0.6-3~ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb From 7a94bad362a407d247b5448714f2a529d4be4e0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Apr 2023 14:45:58 +0200 Subject: [PATCH 1580/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a3bfa68..689120f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -197,7 +197,7 @@ libksba8 1.6.0-2ubuntu libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb libllvm14 1:14.0.0-1ubuntu1 deb -libllvm15 1:15.0.6-3~ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb From 3c514fb4f2dc7bc62cf8dc0ce14793b8e631d73f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Apr 2023 14:59:37 -0500 Subject: [PATCH 1581/2257] 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 ee01c12..d089cd1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,16 +17,16 @@ LrcParser 2 MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore.Authorization 7.0.4 dotnet -Microsoft.AspNetCore.Metadata 7.0.4 dotnet +Microsoft.AspNetCore.Authorization 7.0.5 dotnet +Microsoft.AspNetCore.Metadata 7.0.5 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 7.0.4 dotnet -Microsoft.EntityFrameworkCore 7.0.4 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.4 dotnet -Microsoft.EntityFrameworkCore.Analyzers 7.0.4 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.4 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.4 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.4 dotnet +Microsoft.Data.Sqlite.Core 7.0.5 dotnet +Microsoft.EntityFrameworkCore 7.0.5 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.5 dotnet +Microsoft.EntityFrameworkCore.Analyzers 7.0.5 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.5 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.5 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.5 dotnet Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet Microsoft.Extensions.Caching.Memory 7.0.0 dotnet @@ -39,9 +39,9 @@ Microsoft.Extensions.Configuration.Json 7 Microsoft.Extensions.DependencyInjection 7.0.0 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet Microsoft.Extensions.DependencyModel 7.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.4 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.4 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.4 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.5 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.5 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.5 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230410.12-unstable deb +jellyfin-server 20230411.5-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From f403504cdddb084517f8e79a01772432490674a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Apr 2023 22:59:36 +0200 Subject: [PATCH 1582/2257] 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 d089cd1..4ca736c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230411.5-unstable deb +jellyfin-server 20230412.4-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -232,8 +232,8 @@ libkeyutils1 1 libkrb5-3 1.19.2-2ubuntu0.1 deb libkrb5support0 1.19.2-2ubuntu0.1 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb libllvm14 1:14.0.0-1ubuntu1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb From c5c58e07d0e9deb1cd13840ace5a62ce1f441ca8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Apr 2023 05:59:49 +0200 Subject: [PATCH 1583/2257] 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 4ca736c..05a65b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230412.4-unstable deb +jellyfin-server 20230413.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -380,7 +380,7 @@ sed 4 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2022g-0ubuntu0.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.0 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 4b16cbac62e3d685f10df9db4ae9069746986532 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Apr 2023 01:00:32 +0200 Subject: [PATCH 1584/2257] Bot Updating Package Versions --- package_versions.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 05a65b1..7c850a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,8 +175,8 @@ grep 3 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.2-9-jammy deb -jellyfin-server 20230413.1-unstable deb +jellyfin-ffmpeg5 5.1.3-1-jammy deb +jellyfin-server 20230413.4-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -234,13 +234,13 @@ libkrb5support0 1 libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libllvm14 1:14.0.0-1ubuntu1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb libmount1 2.37.2-4ubuntu3 deb libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb libncurses6 6.3-2 deb libncursesw6 6.3-2 deb libnettle8 3.7.3-1build2 deb @@ -250,6 +250,7 @@ libnsl2 1 libnuma1 2.0.14-3ubuntu2 deb libogg0 1.3.5-0ubuntu3 deb libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb libopus0 1.3.1-0.1build2 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -292,6 +293,7 @@ libunistring2 1 libuuid1 2.37.2-4ubuntu3 deb libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb libvpx7 1.11.0-2ubuntu2 deb libwebp7 1.2.2-2 deb libwebpmux3 1.2.2-2 deb From 8b06b45a8c50c0af9203d4acfd0da9720757bc16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Apr 2023 16:59:20 +0200 Subject: [PATCH 1585/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7c850a7..e949614 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230413.4-unstable deb +jellyfin-server 20230415.6-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 5642c14af07c6051c99e5d6b9ad6effacecfabaf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Apr 2023 17:00:36 -0500 Subject: [PATCH 1586/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e949614..852026c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230415.6-unstable deb +jellyfin-server 20230415.7-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 2db88f79d9b27a2a84438267951955517f7e0996 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Apr 2023 06:59:48 +0200 Subject: [PATCH 1587/2257] 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 852026c..968274a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ DiscUtils.Iso9660 0 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -EFCoreSecondLevelCacheInterceptor 3.8.6 dotnet +EFCoreSecondLevelCacheInterceptor 3.8.8 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2023.308.0 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230415.7-unstable deb +jellyfin-server 20230415.11-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 7b2ef3cf3184bb2a0c1ef4c4b282f3e3aefbddfd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Apr 2023 12:59:48 -0500 Subject: [PATCH 1588/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 968274a..fee8297 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230415.11-unstable deb +jellyfin-server 20230416.3-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 3d70d037c7182e1816e4d5186ee9a096263e5772 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Apr 2023 12:59:57 +0200 Subject: [PATCH 1589/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fee8297..58f1dd2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230416.3-unstable deb +jellyfin-server 20230417.2-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 9ae61493c75500d7c0979f47b19438d80c91e19b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Apr 2023 21:59:36 -0500 Subject: [PATCH 1590/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 58f1dd2..2e8a57b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230417.2-unstable deb +jellyfin-server 20230418.1-unstable deb jellyfin-web 20220906.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From c355c69ecb6737609ed7bd475dbcae35062bc430 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Apr 2023 07:46:31 -0500 Subject: [PATCH 1591/2257] Bot Updating Package Versions --- package_versions.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 689120f..58d2ab1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.2-9-jammy deb +jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 10.8.9-1 deb jellyfin-web 10.8.9-1 deb jq 1.6-2.1ubuntu3 deb @@ -194,15 +194,15 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.1 deb libkrb5support0 1.19.2-2ubuntu0.1 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.1 deb -libllvm14 1:14.0.0-1ubuntu1 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb libmount1 2.37.2-4ubuntu3 deb libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb libncurses6 6.3-2 deb libncursesw6 6.3-2 deb libnettle8 3.7.3-1build2 deb @@ -212,6 +212,7 @@ libnsl2 1.3.0-2build2 libnuma1 2.0.14-3ubuntu2 deb libogg0 1.3.5-0ubuntu3 deb libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb libopus0 1.3.1-0.1build2 deb libp11-kit0 0.24.0-6build1 deb libpam-modules 1.4.0-11ubuntu2.3 deb @@ -254,6 +255,7 @@ libunistring2 1.0-1 libuuid1 2.37.2-4ubuntu3 deb libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb libvpx7 1.11.0-2ubuntu2 deb libwebp7 1.2.2-2 deb libwebpmux3 1.2.2-2 deb @@ -311,7 +313,7 @@ sed 4.8-1ubuntu2 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2022g-0ubuntu0.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.0 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From a07503847f1ff4cf7dd8f1597bbe718d41895dae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 20 Apr 2023 15:59:41 +0200 Subject: [PATCH 1592/2257] 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 2e8a57b..b11216d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230418.1-unstable deb -jellyfin-web 20220906.1-unstable deb +jellyfin-server 20230420.2-unstable deb +jellyfin-web 20230420.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.8 deb @@ -281,13 +281,13 @@ libss2 1 libssh-4 0.9.6-2build1 deb libssl3 3.0.2-0ubuntu1.8 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.7 deb +libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb libtinfo6 6.3-2 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.7 deb +libudev1 249.11-0ubuntu3.9 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb @@ -314,7 +314,7 @@ libxcb-xfixes0 1 libxcb1 1.14-3ubuntu3 deb libxdmcp6 1:1.1.3-0ubuntu5 deb libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.2 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb libxrender1 1:0.9.10-1build4 deb libxshmfence1 1.3-1build4 deb libxxhash0 0.8.1-1 deb From 337147da3405722e6e9207b68cff3ba78c938846 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Apr 2023 11:58:21 +0000 Subject: [PATCH 1593/2257] 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 b11216d..793f7cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230420.2-unstable deb -jellyfin-web 20230420.2-unstable deb +jellyfin-server 20230422.1-unstable deb +jellyfin-web 20230422.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.8 deb From 78440b4824021ea29865a1e2ec4612710515cf9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 15:59:36 +0000 Subject: [PATCH 1594/2257] 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 58d2ab1..cb6a7db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -138,8 +138,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 10.8.9-1 deb -jellyfin-web 10.8.9-1 deb +jellyfin-server 10.8.10-1 deb +jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.8 deb @@ -243,13 +243,13 @@ libss2 1.46.5-2ubunt libssh-4 0.9.6-2build1 deb libssl3 3.0.2-0ubuntu1.8 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.7 deb +libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb libtinfo6 6.3-2 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.7 deb +libudev1 249.11-0ubuntu3.9 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb @@ -276,7 +276,7 @@ libxcb-xfixes0 1.14-3ubuntu3 libxcb1 1.14-3ubuntu3 deb libxdmcp6 1:1.1.3-0ubuntu5 deb libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.2 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb libxrender1 1:0.9.10-1build4 deb libxshmfence1 1.3-1build4 deb libxxhash0 0.8.1-1 deb From b9162b70a46fd0f673518682a7790613bb59b944 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Sun, 23 Apr 2023 18:45:59 +0100 Subject: [PATCH 1595/2257] Fix version check to use correct repo, update dockerfiles --- Dockerfile | 6 ++---- Dockerfile.aarch64 | 6 ++---- Dockerfile.armhf | 6 ++---- jenkins-vars.yml | 2 +- 4 files changed, 7 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87a15c3..a2970e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,14 +18,12 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server"; \ - else \ - JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - ${JELLYFIN} \ + jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3cd1804..cb830dc 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -18,14 +18,12 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server"; \ - else \ - JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - ${JELLYFIN} \ + jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 93e9273..ed3d074 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -18,14 +18,12 @@ RUN \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server"; \ - else \ - JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - ${JELLYFIN} \ + jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ diff --git a/jenkins-vars.yml b/jenkins-vars.yml index b1b1c8f..1540742 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" release_type: stable release_tag: latest ls_branch: master From 0096b3f8b7639b8c8623f46ab2a39d418f48e4f4 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Sun, 23 Apr 2023 18:47:49 +0100 Subject: [PATCH 1596/2257] Fix version check to use correct repo, update dockerfiles --- Dockerfile | 6 ++---- Dockerfile.aarch64 | 6 ++---- Dockerfile.armhf | 6 ++---- jenkins-vars.yml | 2 +- 4 files changed, 7 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ba0748..02f0453 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,14 +19,12 @@ RUN \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server"; \ - else \ - JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - ${JELLYFIN} \ + jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1f32457..8e37418 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -19,14 +19,12 @@ RUN \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server"; \ - else \ - JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - ${JELLYFIN} \ + jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 2ca3a7c..b96a088 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -19,14 +19,12 @@ RUN \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN="jellyfin-server"; \ - else \ - JELLYFIN="jellyfin-server=${JELLYFIN_RELEASE}"; \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - ${JELLYFIN} \ + jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg5 \ jellyfin-web \ libfontconfig1 \ diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 38bb41d..80012d2 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" release_type: prerelease release_tag: nightly ls_branch: nightly From f109676f2ea4bfd8f5849e0b77387ae23a6b0800 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 21:04:02 +0200 Subject: [PATCH 1597/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 440956f..9ee9939 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -104,7 +104,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } From 820426106e61833a865475a93e59ad17b386a15d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 14:04:38 -0500 Subject: [PATCH 1598/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 33e632b..6ec2fa9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -104,7 +104,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } From b3f50821c03a7f34a202ed51da5fd004bb1301f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 21:05:34 +0200 Subject: [PATCH 1599/2257] 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 e3b909c..7e43dff 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 master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for jellyfin branch master" From cd0ce8766c8b1b12fe5de09feea3063703ce9736 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 14:06:19 -0500 Subject: [PATCH 1600/2257] 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 ed3d7aa..56d5e42 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_JELLYFIN_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/focal/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for jellyfin branch nightly" From f9e3acef6745892a5b7ca71c27c2f0de0d5b9a6d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Apr 2023 21:09:59 +0200 Subject: [PATCH 1601/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 793f7cf..107fc65 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 20230422.1-unstable deb -jellyfin-web 20230422.1-unstable deb +jellyfin-web 20230423.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.8 deb From ed7a6f51a555e9aeb3cfcc21fe855c17be305807 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Apr 2023 07:46:09 -0500 Subject: [PATCH 1602/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 107fc65..627e3cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 20230422.1-unstable deb -jellyfin-web 20230423.10-unstable deb +jellyfin-web 20230425.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.8 deb From 6c0b6ef9c79e7ae80e70a9bf3a517ffcd7d25993 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Apr 2023 14:57:03 +0000 Subject: [PATCH 1603/2257] Bot Updating Templated Files --- Jenkinsfile | 91 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 85 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6ec2fa9..f560c9a 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 00d89e487594619c3a955ae2b25f54390fbd5b01 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Apr 2023 14:58:18 +0000 Subject: [PATCH 1604/2257] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 6 ++++-- .github/workflows/external_trigger.yml | 9 +++++++++ .../workflows/external_trigger_scheduler.yml | 18 ++++++++++-------- .github/workflows/package_trigger.yml | 4 ++++ .../workflows/package_trigger_scheduler.yml | 8 ++++---- 5 files changed, 31 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 56d5e42..ea15264 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_JELLYFIN_NIGHTLY }}" ]; then echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_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_JELLYFIN_NIGHTLY\". ****" + echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') 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/jellyfin" tag="nightly" @@ -65,17 +68,22 @@ 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-jellyfin/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 elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp') )) -lt $(( 6 * 3600000 )) ]]; then echo "**** New version ${EXT_RELEASE} found; but the last build was less than 6 hours ago; skipping trigger ****" + echo "New version ${EXT_RELEASE} found; but the last build was less than 6 hours ago; skipping trigger" >> $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-jellyfin/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") @@ -85,6 +93,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 30b1245..2fce549 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: '54 * * * *' + - cron: '56 * * * *' 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-jellyfin/${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-jellyfin/${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-jellyfin/${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-jellyfin/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 c542ffa..74495b3 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_JELLYFIN_NIGHTLY }}" ]; then echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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_JELLYFIN_NIGHTLY\". ****" + echo "Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 221e6e7..a0f854d 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-jellyfin/${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-jellyfin/${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-jellyfin/${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 2e424a2ca2e501b8d1e130efaa255a077ab41319 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Apr 2023 10:02:50 -0500 Subject: [PATCH 1605/2257] 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 627e3cb..e6b4953 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -140,8 +140,8 @@ TMDbLib 2 TagLibSharp 2.3.0 dotnet UTF.Unknown 2.5.1 dotnet adduser 3.118ubuntu5 deb -apt 2.4.8 deb -apt-utils 2.4.8 deb +apt 2.4.9 deb +apt-utils 2.4.9 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb @@ -176,11 +176,11 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230422.1-unstable deb -jellyfin-web 20230425.7-unstable deb +jellyfin-server 20230427.3-unstable deb +jellyfin-web 20230427.13-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.8 deb +libapt-pkg6.0 2.4.9 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb @@ -279,7 +279,7 @@ libsmartcols1 2 libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2build1 deb -libssl3 3.0.2-0ubuntu1.8 deb +libssl3 3.0.2-0ubuntu1.9 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -333,7 +333,7 @@ ncurses-bin 6 netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.8 deb +openssl 3.0.2-0ubuntu1.9 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.1 deb pinentry-curses 1.1.1-1build2 deb From 96cabc9231e2d791d416ec930f8a349c1d2c6095 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Apr 2023 09:59:10 +0000 Subject: [PATCH 1606/2257] 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 e6b4953..b38cb61 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ DiscUtils.Iso9660 0 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -EFCoreSecondLevelCacheInterceptor 3.8.8 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.0 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2023.308.0 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230427.3-unstable deb -jellyfin-web 20230427.13-unstable deb +jellyfin-server 20230428.4-unstable deb +jellyfin-web 20230427.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -216,7 +216,7 @@ libfreetype6 2 libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu1 deb +libglib2.0-0 2.72.4-0ubuntu2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb From 7e3aec310af398ac94a1b75ec5c9648bc23e281a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Apr 2023 10:59:47 +0000 Subject: [PATCH 1607/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b38cb61..e17e97d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230428.4-unstable deb +jellyfin-server 20230430.1-unstable deb jellyfin-web 20230427.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From a579c450d84c626edc9502833cb3153c9e286f25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 May 2023 04:00:49 -0500 Subject: [PATCH 1608/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e17e97d..ec519fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230430.1-unstable deb +jellyfin-server 20230501.2-unstable deb jellyfin-web 20230427.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From fb0868e0e3f1f1402678b7d9d29ec9d66e83bc7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 May 2023 15:59:00 +0000 Subject: [PATCH 1609/2257] 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 ec519fe..081ecf5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ DiscUtils.Iso9660 0 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.0 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.1 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2023.308.0 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230501.2-unstable deb +jellyfin-server 20230501.5-unstable deb jellyfin-web 20230427.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 9cb14e2dbbc87c40d580c133210c11b8c2f58eda Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 May 2023 12:43:13 +0000 Subject: [PATCH 1610/2257] Bot Updating Templated Files --- Jenkinsfile | 91 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 85 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9ee9939..c40ed21 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}':latest 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}:latest 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 master build check the S6 service file perms + stage("Check S6 Service file Permissions"){ + when { + branch "master" + 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 3047af22ae3a9d227d279e6d75fe79a9fdb931ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 May 2023 12:44:29 +0000 Subject: [PATCH 1611/2257] 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 7e43dff..859ef4a 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_JELLYFIN_MASTER }}" ]; then echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****" + echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') 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/jellyfin" tag="latest" @@ -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-jellyfin/job/master/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-jellyfin/job/master/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 30b1245..2fce549 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: '54 * * * *' + - cron: '56 * * * *' 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-jellyfin/${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-jellyfin/${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-jellyfin/${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-jellyfin/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 e0ea30d..aad7f31 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_JELLYFIN_MASTER }}" ]; then echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\". ****" + echo "Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 221e6e7..a0f854d 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-jellyfin/${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-jellyfin/${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-jellyfin/${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 3ded884a0d7fcee023011aff70a57fce1e636bb7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 May 2023 12:47:19 +0000 Subject: [PATCH 1612/2257] 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 cb6a7db..89295c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -102,8 +102,8 @@ TMDbLib 1.9.2 TagLibSharp 2.3.0 dotnet UTF.Unknown 2.5.1 dotnet adduser 3.118ubuntu5 deb -apt 2.4.8 deb -apt-utils 2.4.8 deb +apt 2.4.9 deb +apt-utils 2.4.9 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb @@ -142,7 +142,7 @@ jellyfin-server 10.8.10-1 jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.8 deb +libapt-pkg6.0 2.4.9 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb @@ -178,7 +178,7 @@ libfreetype6 2.11.1+dfsg-1 libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu1 deb +libglib2.0-0 2.72.4-0ubuntu2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb @@ -241,7 +241,7 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2build1 deb -libssl3 3.0.2-0ubuntu1.8 deb +libssl3 3.0.2-0ubuntu1.9 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -295,7 +295,7 @@ ncurses-bin 6.3-2 netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.8 deb +openssl 3.0.2-0ubuntu1.9 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.1 deb pinentry-curses 1.1.1-1build2 deb From 7ff5d415a01d9adf70e896a8bf9f3254619a8654 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 May 2023 11:10:01 +0000 Subject: [PATCH 1613/2257] 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 081ecf5..6fcf395 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230501.5-unstable deb +jellyfin-server 20230503.4-unstable deb jellyfin-web 20230427.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -382,7 +382,7 @@ sed 4 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.0 deb +tzdata 2023c-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 9d4201705354afd0a1a8a3fed1a480a50df8aa88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 May 2023 23:11:15 +0000 Subject: [PATCH 1614/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6fcf395..adea1c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230503.4-unstable deb +jellyfin-server 20230503.5-unstable deb jellyfin-web 20230427.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 2c50d7c218d7bccb9c2ae4cbdc325b99e3869783 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 4 May 2023 19:10:54 +0000 Subject: [PATCH 1615/2257] 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 adea1c7..954bdfa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230503.5-unstable deb -jellyfin-web 20230427.18-unstable deb +jellyfin-server 20230504.3-unstable deb +jellyfin-web 20230504.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 41978973518efa9247b77670d4257f5205a2f8d4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 5 May 2023 16:13:21 +0000 Subject: [PATCH 1616/2257] 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 954bdfa..6f97877 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230504.3-unstable deb -jellyfin-web 20230504.11-unstable deb +jellyfin-server 20230505.1-unstable deb +jellyfin-web 20230505.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 2e77f6f754a6f812acd64e8b53acbba197659cbb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 May 2023 06:12:02 +0000 Subject: [PATCH 1617/2257] 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 6f97877..918331a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230505.1-unstable deb -jellyfin-web 20230505.6-unstable deb +jellyfin-server 20230506.2-unstable deb +jellyfin-web 20230506.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 7816de39f981d3364483de1a195df67819e9c430 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 May 2023 22:09:12 +0000 Subject: [PATCH 1618/2257] 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 918331a..ad7a518 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230506.2-unstable deb -jellyfin-web 20230506.1-unstable deb +jellyfin-server 20230506.3-unstable deb +jellyfin-web 20230506.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 79cd15c2e9b8dc1b4d6b8e840b1fd103e2e08f2b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 May 2023 19:08:44 +0000 Subject: [PATCH 1619/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ad7a518..de9d11c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230506.3-unstable deb +jellyfin-server 20230507.2-unstable deb jellyfin-web 20230506.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 439e049a7184ba094703d0cd503324a2093a7358 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 May 2023 09:13:20 +0000 Subject: [PATCH 1620/2257] 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 de9d11c..df5bdf6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230507.2-unstable deb -jellyfin-web 20230506.8-unstable deb +jellyfin-server 20230508.1-unstable deb +jellyfin-web 20230507.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 1901c2427e754c6ab0c055ea266bda14d013e911 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 May 2023 20:13:21 +0000 Subject: [PATCH 1621/2257] 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 df5bdf6..12d0875 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230508.1-unstable deb -jellyfin-web 20230507.9-unstable deb +jellyfin-server 20230508.2-unstable deb +jellyfin-web 20230508.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 3c0630e3538ff31b4d8d0a903fa6b60f8cf4cdc3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 May 2023 13:19:44 +0000 Subject: [PATCH 1622/2257] 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 12d0875..1b58f41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 20230508.2-unstable deb -jellyfin-web 20230508.3-unstable deb +jellyfin-web 20230509.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -212,7 +212,7 @@ libexpat1 2 libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.1 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb From e36ba81dd9fef44acdcab8ffbafeebba0d248163 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 May 2023 13:19:56 +0000 Subject: [PATCH 1623/2257] 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 89295c6..2e87e39 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -174,7 +174,7 @@ libexpat1 2.4.7-1ubuntu libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.1 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb @@ -313,7 +313,7 @@ sed 4.8-1ubuntu2 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.0 deb +tzdata 2023c-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 19eadd556246ec224fc4fd99fb2e920005fe7633 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 May 2023 20:13:28 +0000 Subject: [PATCH 1624/2257] 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 1b58f41..d1788e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230508.2-unstable deb -jellyfin-web 20230509.6-unstable deb +jellyfin-server 20230509.5-unstable deb +jellyfin-web 20230509.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From adb248806fcf10478c4cccb44a2eebd76a87b02b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 May 2023 06:13:44 +0000 Subject: [PATCH 1625/2257] 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 d1788e0..6807879 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230509.5-unstable deb -jellyfin-web 20230509.10-unstable deb +jellyfin-server 20230510.1-unstable deb +jellyfin-web 20230510.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 49fb1b0741ebc95e1602f4e3fc38c42e4ef44a0c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 May 2023 19:11:48 +0000 Subject: [PATCH 1626/2257] 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 6807879..cfb87c8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230510.1-unstable deb -jellyfin-web 20230510.1-unstable deb +jellyfin-server 20230510.6-unstable deb +jellyfin-web 20230510.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From a10247cc1b3261384628f5c43bb68b13b5858e35 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 11 May 2023 02:02:25 +0000 Subject: [PATCH 1627/2257] 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 cfb87c8..29bb73b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230510.6-unstable deb -jellyfin-web 20230510.11-unstable deb +jellyfin-server 20230511.1-unstable deb +jellyfin-web 20230511.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c1aaddbbae4c3fde25a4acd10edb1ee6e54eeab7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 11 May 2023 14:11:32 +0000 Subject: [PATCH 1628/2257] 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 29bb73b..1f45dd6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230511.1-unstable deb -jellyfin-web 20230511.8-unstable deb +jellyfin-server 20230511.7-unstable deb +jellyfin-web 20230511.15-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 2622583b46540ef28aa0b7adbf435e0e382d1a0c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 11 May 2023 23:10:30 +0000 Subject: [PATCH 1629/2257] 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 1f45dd6..a4c2ffd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230511.7-unstable deb -jellyfin-web 20230511.15-unstable deb +jellyfin-server 20230511.9-unstable deb +jellyfin-web 20230511.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c9f69ecb97e687f7af59ea48a79eed9c34363750 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 May 2023 14:10:09 +0000 Subject: [PATCH 1630/2257] 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 a4c2ffd..62ca4b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -69,13 +69,13 @@ SQLitePCLRaw.bundle_e_sqlite3 2 SQLitePCLRaw.core 2.1.4 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.4 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.4 dotnet -Serilog 2.10.0 dotnet +Serilog 2.12.0 dotnet Serilog.AspNetCore 6.1.0 dotnet Serilog.Enrichers.Thread 3.1.0 dotnet Serilog.Extensions.Hosting 5.0.1 dotnet Serilog.Extensions.Logging 3.1.0 dotnet Serilog.Formatting.Compact 1.1.0 dotnet -Serilog.Settings.Configuration 3.4.0 dotnet +Serilog.Settings.Configuration 7.0.0 dotnet Serilog.Sinks.Async 1.5.0 dotnet Serilog.Sinks.Console 4.1.0 dotnet Serilog.Sinks.Debug 2.0.0 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230511.9-unstable deb -jellyfin-web 20230511.18-unstable deb +jellyfin-server 20230512.5-unstable deb +jellyfin-web 20230512.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 239be508debccb4cd4172a57fd6c519210c2d55d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 May 2023 19:10:15 +0000 Subject: [PATCH 1631/2257] 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 62ca4b3..8edb509 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230512.5-unstable deb -jellyfin-web 20230512.2-unstable deb +jellyfin-server 20230515.4-unstable deb +jellyfin-web 20230515.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From a2f1aa67c5a47e4b1f44b06f0979539fc32e60ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 May 2023 02:04:58 +0000 Subject: [PATCH 1632/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8edb509..285b6b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230515.4-unstable deb +jellyfin-server 20230515.8-unstable deb jellyfin-web 20230515.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 5ec00b866bb80bb4ae4d081afaf7c91b9124a86e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 May 2023 12:50:31 +0000 Subject: [PATCH 1633/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 285b6b3..f04ae71 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 20230515.8-unstable deb -jellyfin-web 20230515.10-unstable deb +jellyfin-web 20230516.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 27213b350acedfb117b90af5f83fb771d2639a61 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 May 2023 11:10:09 +0000 Subject: [PATCH 1634/2257] 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 f04ae71..5487ee9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230515.8-unstable deb -jellyfin-web 20230516.7-unstable deb +jellyfin-server 20230517.1-unstable deb +jellyfin-web 20230517.19-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -295,8 +295,8 @@ libvorbis0a 1 libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb libvpx7 1.11.0-2ubuntu2 deb -libwebp7 1.2.2-2 deb -libwebpmux3 1.2.2-2 deb +libwebp7 1.2.2-2ubuntu0.22.04.1 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb libx11-6 2:1.7.5-1 deb libx11-data 2:1.7.5-1 deb libx11-xcb1 2:1.7.5-1 deb From f32a0dbb847fa61822d0561d82d5f43debe7453f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 May 2023 21:12:26 +0000 Subject: [PATCH 1635/2257] 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 5487ee9..35aa173 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -70,10 +70,10 @@ SQLitePCLRaw.core 2 SQLitePCLRaw.lib.e_sqlite3 2.1.4 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.4 dotnet Serilog 2.12.0 dotnet -Serilog.AspNetCore 6.1.0 dotnet +Serilog.AspNetCore 7.0.0 dotnet Serilog.Enrichers.Thread 3.1.0 dotnet -Serilog.Extensions.Hosting 5.0.1 dotnet -Serilog.Extensions.Logging 3.1.0 dotnet +Serilog.Extensions.Hosting 7.0.0 dotnet +Serilog.Extensions.Logging 7.0.0 dotnet Serilog.Formatting.Compact 1.1.0 dotnet Serilog.Settings.Configuration 7.0.0 dotnet Serilog.Sinks.Async 1.5.0 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230517.1-unstable deb -jellyfin-web 20230517.19-unstable deb +jellyfin-server 20230517.3-unstable deb +jellyfin-web 20230517.32-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -269,7 +269,7 @@ librtmp1 2 libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.11 dotnet +libse 3.6.13 dotnet libseccomp2 2.5.3-2ubuntu2 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb From 03eb996bcb6f116a71792c46596f07d27d9a3a4b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 May 2023 09:10:20 +0000 Subject: [PATCH 1636/2257] 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 35aa173..482cbda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230517.3-unstable deb -jellyfin-web 20230517.32-unstable deb +jellyfin-server 20230518.3-unstable deb +jellyfin-web 20230518.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 5be9b23692926c67306448ffb22fddf90d80ff1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 May 2023 23:11:58 +0000 Subject: [PATCH 1637/2257] 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 482cbda..6547e28 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -63,7 +63,7 @@ Mono.Nat 3 NEbml 0.11.0 dotnet NeoSmart.AsyncLock 3.2.1 dotnet Newtonsoft.Json 13.0.3 dotnet -PlaylistsNET 1.3.1 dotnet +PlaylistsNET 1.3.2 dotnet SQLitePCL.pretty.netstandard 3.1.0 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.4 dotnet SQLitePCLRaw.core 2.1.4 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230518.3-unstable deb -jellyfin-web 20230518.4-unstable deb +jellyfin-server 20230518.8-unstable deb +jellyfin-web 20230518.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 32c04a6a9835298d729a1bc6dca43d2215750a97 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 20 May 2023 12:15:16 +0000 Subject: [PATCH 1638/2257] 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 6547e28..f18b9d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -65,10 +65,10 @@ NeoSmart.AsyncLock 3 Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.3.2 dotnet SQLitePCL.pretty.netstandard 3.1.0 dotnet -SQLitePCLRaw.bundle_e_sqlite3 2.1.4 dotnet -SQLitePCLRaw.core 2.1.4 dotnet -SQLitePCLRaw.lib.e_sqlite3 2.1.4 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.4 dotnet +SQLitePCLRaw.bundle_e_sqlite3 2.1.5 dotnet +SQLitePCLRaw.core 2.1.5 dotnet +SQLitePCLRaw.lib.e_sqlite3 2.1.5 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.5 dotnet Serilog 2.12.0 dotnet Serilog.AspNetCore 7.0.0 dotnet Serilog.Enrichers.Thread 3.1.0 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230518.8-unstable deb -jellyfin-web 20230518.16-unstable deb +jellyfin-server 20230520.3-unstable deb +jellyfin-web 20230520.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 5af589a34c14639ce4fe454cf83a0c67f94ba633 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 May 2023 19:09:59 +0000 Subject: [PATCH 1639/2257] 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 f18b9d0..d4f7fab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230520.3-unstable deb -jellyfin-web 20230520.5-unstable deb +jellyfin-server 20230521.4-unstable deb +jellyfin-web 20230521.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 3e398fa0b90062659414dd2ba3c30006ba77850f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 May 2023 08:13:15 +0000 Subject: [PATCH 1640/2257] 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 d4f7fab..b156ed6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230521.4-unstable deb -jellyfin-web 20230521.3-unstable deb +jellyfin-server 20230522.1-unstable deb +jellyfin-web 20230522.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From f38652cb932312cd2f342cd5d35b949aefe35f2b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 12:42:42 +0000 Subject: [PATCH 1641/2257] Bot Updating Templated Files --- Jenkinsfile | 121 ++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 71 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c40ed21..5696b93 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-' + 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-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } else { - env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 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 = 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 = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-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/' @@ -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/jellyfin") | .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/jellyfin") | .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}:latest || : - 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-latest \ - ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm32v7-${META_TAG} \ - ${DELETEIMAGE}:arm32v7-latest \ - ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-latest \ - ${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 f0f2e5b3faba02b6302a8d131762c40ddb8ecc4c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 12:43:52 +0000 Subject: [PATCH 1642/2257] Bot Updating Templated Files --- Jenkinsfile | 121 ++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 71 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f560c9a..662f873 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/jellyfin") | .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/jellyfin") | .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 5e5352e13a5efd194bf0a95202aacc09c9b592ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 12:47:58 +0000 Subject: [PATCH 1643/2257] 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 2e87e39..192fb04 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -257,8 +257,8 @@ libvorbis0a 1.3.7-1build2 libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb libvpx7 1.11.0-2ubuntu2 deb -libwebp7 1.2.2-2 deb -libwebpmux3 1.2.2-2 deb +libwebp7 1.2.2-2ubuntu0.22.04.1 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb libx11-6 2:1.7.5-1 deb libx11-data 2:1.7.5-1 deb libx11-xcb1 2:1.7.5-1 deb @@ -288,7 +288,7 @@ login 1:4.8.1-2ubun logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.2 deb mount 2.37.2-4ubuntu3 deb ncurses-base 6.3-2 deb ncurses-bin 6.3-2 deb From eff508266cf2d207ccf4dcb2fe043b1ec483cafc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 May 2023 12:49:28 +0000 Subject: [PATCH 1644/2257] 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 b156ed6..08adca6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 20230522.1-unstable deb -jellyfin-web 20230522.1-unstable deb +jellyfin-web 20230523.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -326,7 +326,7 @@ login 1 logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.2 deb mount 2.37.2-4ubuntu3 deb ncurses-base 6.3-2 deb ncurses-bin 6.3-2 deb From 763f0ca6bd81d979656a877ef9cc1d3a8f365439 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 May 2023 19:09:15 +0000 Subject: [PATCH 1645/2257] 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 08adca6..82961c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ DotNet.Glob 3 EFCoreSecondLevelCacheInterceptor 3.9.1 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet -LrcParser 2023.308.0 dotnet +LrcParser 2023.524.0 dotnet MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230522.1-unstable deb -jellyfin-web 20230523.1-unstable deb +jellyfin-server 20230524.3-unstable deb +jellyfin-web 20230523.17-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From d99abb7df554a98b075c80f8ceb580286c3cbe91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 May 2023 09:11:28 +0000 Subject: [PATCH 1646/2257] 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 82961c5..f74115a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230524.3-unstable deb -jellyfin-web 20230523.17-unstable deb +jellyfin-server 20230525.4-unstable deb +jellyfin-web 20230525.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 6d82404b72671185d12c192cbdbf33ce5bf536ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 May 2023 16:12:42 +0000 Subject: [PATCH 1647/2257] 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 f74115a..4dd5558 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230525.4-unstable deb -jellyfin-web 20230525.4-unstable deb +jellyfin-server 20230525.7-unstable deb +jellyfin-web 20230525.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 54724c2d58bbb078db62a3be6bcaa9d2c6a9dba3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 26 May 2023 12:18:05 +0000 Subject: [PATCH 1648/2257] 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 4dd5558..c5be353 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230525.7-unstable deb -jellyfin-web 20230525.11-unstable deb +jellyfin-server 20230526.4-unstable deb +jellyfin-web 20230526.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 7d00cbc6da24fb572c757159a94b32da5b3d8d16 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 May 2023 15:11:30 +0000 Subject: [PATCH 1649/2257] 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 c5be353..60f87ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230526.4-unstable deb -jellyfin-web 20230526.3-unstable deb +jellyfin-server 20230527.3-unstable deb +jellyfin-web 20230527.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -326,7 +326,7 @@ login 1 logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.2 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb mount 2.37.2-4ubuntu3 deb ncurses-base 6.3-2 deb ncurses-bin 6.3-2 deb From 7183277f3219038c743a37b31edda46a473a89ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 29 May 2023 16:12:38 +0000 Subject: [PATCH 1650/2257] 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 60f87ca..f3f6549 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ DiscUtils.Iso9660 0 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.1 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.2 dotnet EasyCaching.Core 1.8.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2023.524.0 dotnet @@ -63,7 +63,7 @@ Mono.Nat 3 NEbml 0.11.0 dotnet NeoSmart.AsyncLock 3.2.1 dotnet Newtonsoft.Json 13.0.3 dotnet -PlaylistsNET 1.3.2 dotnet +PlaylistsNET 1.4.0 dotnet SQLitePCL.pretty.netstandard 3.1.0 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.5 dotnet SQLitePCLRaw.core 2.1.5 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230527.3-unstable deb -jellyfin-web 20230527.3-unstable deb +jellyfin-server 20230529.12-unstable deb +jellyfin-web 20230529.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From b6a4a0fac5074793c9f664d003d392d620ceb893 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 May 2023 02:10:18 +0000 Subject: [PATCH 1651/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f3f6549..4230337 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230529.12-unstable deb +jellyfin-server 20230530.4-unstable deb jellyfin-web 20230529.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d4b47e17eb209f18da1e416a4cfda0ebaab73cfa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 May 2023 09:10:50 +0000 Subject: [PATCH 1652/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4230337..dbf86fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb -jellyfin-server 20230530.4-unstable deb +jellyfin-server 20230530.6-unstable deb jellyfin-web 20230529.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 3e9aebf20c9e79a2a366dc2aa31337ff1f9f54ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 May 2023 12:47:22 +0000 Subject: [PATCH 1653/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dbf86fc..b93f2ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-1-jammy deb jellyfin-server 20230530.6-unstable deb -jellyfin-web 20230529.1-unstable deb +jellyfin-web 20230530.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 6aa2ce5fbfbe3035fc11d2ae47372774554a7657 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 May 2023 12:47:39 +0000 Subject: [PATCH 1654/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 192fb04..5a973c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -288,7 +288,7 @@ login 1:4.8.1-2ubun logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.2 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb mount 2.37.2-4ubuntu3 deb ncurses-base 6.3-2 deb ncurses-bin 6.3-2 deb From e9d4b3d91548316753c343b7b461603cf1358621 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Jun 2023 12:47:13 +0000 Subject: [PATCH 1655/2257] 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 b93f2ab..92389c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ base-files 1 base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1 deb bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20211016ubuntu0.22.04.1 deb +ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -175,9 +175,9 @@ grep 3 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-1-jammy deb +jellyfin-ffmpeg5 5.1.3-2-jammy deb jellyfin-server 20230530.6-unstable deb -jellyfin-web 20230530.1-unstable deb +jellyfin-web 20230531.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -279,7 +279,7 @@ libsmartcols1 2 libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2build1 deb -libssl3 3.0.2-0ubuntu1.9 deb +libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -333,7 +333,7 @@ ncurses-bin 6 netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.9 deb +openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.1 deb pinentry-curses 1.1.1-1build2 deb From c6671bf9f86066c5f2b4740a9e021584b6e850bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Jun 2023 12:48:19 +0000 Subject: [PATCH 1656/2257] 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 5a973c1..56946c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -109,7 +109,7 @@ base-files 12ubuntu4.3 base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1 deb bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20211016ubuntu0.22.04.1 deb +ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb curl 7.81.0-1ubuntu1.10 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -137,7 +137,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-1-jammy deb +jellyfin-ffmpeg5 5.1.3-2-jammy deb jellyfin-server 10.8.10-1 deb jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb @@ -241,7 +241,7 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2build1 deb -libssl3 3.0.2-0ubuntu1.9 deb +libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -295,7 +295,7 @@ ncurses-bin 6.3-2 netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.9 deb +openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.1 deb pinentry-curses 1.1.1-1build2 deb From 562bc3edc8c3be7014fa94a707dad19e76352d64 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 8 Jun 2023 10:11:34 +0000 Subject: [PATCH 1657/2257] 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 92389c2..d94281b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -155,7 +155,7 @@ debconf 1 debianutils 5.5-1ubuntu2 deb diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb e2fsprogs 1.46.5-2ubuntu1.1 deb findutils 4.8.0-1ubuntu3 deb fontconfig-config 2.13.1-4.2ubuntu5 deb @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230530.6-unstable deb -jellyfin-web 20230531.8-unstable deb +jellyfin-server 20230608.3-unstable deb +jellyfin-web 20230607.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -221,16 +221,16 @@ libgmp10 2 libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb libharfbuzz0b 2.7.4-1ubuntu3.1 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.1 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.1 deb -libkrb5support0 1.19.2-2ubuntu0.1 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb @@ -241,8 +241,8 @@ libmd0 1 libmount1 2.37.2-4ubuntu3 deb libmp3lame0 3.100-3build2 deb libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2 deb -libncursesw6 6.3-2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb libnettle8 3.7.3-1build2 deb libnghttp2-14 1.43.0-1build3 deb libnpth0 1.6-3build2 deb @@ -278,13 +278,13 @@ libsepol2 3 libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2build1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2 deb +libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb libudev1 249.11-0ubuntu3.9 deb @@ -328,14 +328,14 @@ lsb-base 1 mawk 1.3.4.20200120-3 deb mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb mount 2.37.2-4ubuntu3 deb -ncurses-base 6.3-2 deb -ncurses-bin 6.3-2 deb +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.1 deb +perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb procps 2:3.3.17-6ubuntu2 deb prometheus-net 8.0.0 dotnet @@ -382,7 +382,7 @@ sed 4 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 5cbe04fd04d79ec6389344796f0450f6962f509c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 10 Jun 2023 14:10:29 +0000 Subject: [PATCH 1658/2257] 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 d94281b..25c421f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,7 +80,7 @@ Serilog.Sinks.Async 1 Serilog.Sinks.Console 4.1.0 dotnet Serilog.Sinks.Debug 2.0.0 dotnet Serilog.Sinks.File 5.0.0 dotnet -Serilog.Sinks.Graylog 2.3.0 dotnet +Serilog.Sinks.Graylog 3.0.0 dotnet SkiaSharp 2.88.3 dotnet SkiaSharp.NativeAssets.Linux 2.88.3 dotnet SkiaSharp.NativeAssets.Win32 2.88.3 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230608.3-unstable deb -jellyfin-web 20230607.8-unstable deb +jellyfin-server 20230610.4-unstable deb +jellyfin-web 20230608.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 010f7f8ba26d5f99772f5989da49556c1f254549 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Jun 2023 12:45:07 +0000 Subject: [PATCH 1659/2257] 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 56946c2..6ada8f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -117,7 +117,7 @@ debconf 1.5.79ubuntu1 debianutils 5.5-1ubuntu2 deb diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb e2fsprogs 1.46.5-2ubuntu1.1 deb findutils 4.8.0-1ubuntu3 deb fontconfig-config 2.13.1-4.2ubuntu5 deb @@ -183,16 +183,16 @@ libgmp10 2:6.2.1+dfsg- libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.1 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb libharfbuzz0b 2.7.4-1ubuntu3.1 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.1 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.1 deb -libkrb5support0 1.19.2-2ubuntu0.1 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb @@ -203,8 +203,8 @@ libmd0 1.0.4-1build1 libmount1 2.37.2-4ubuntu3 deb libmp3lame0 3.100-3build2 deb libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2 deb -libncursesw6 6.3-2 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb libnettle8 3.7.3-1build2 deb libnghttp2-14 1.43.0-1build3 deb libnpth0 1.6-3build2 deb @@ -240,13 +240,13 @@ libsepol2 3.3-1build1 libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2build1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2 deb +libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb libudev1 249.11-0ubuntu3.9 deb @@ -290,14 +290,14 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb mount 2.37.2-4ubuntu3 deb -ncurses-base 6.3-2 deb -ncurses-bin 6.3-2 deb +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.1 deb +perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb procps 2:3.3.17-6ubuntu2 deb prometheus-net 6.0.0 dotnet @@ -313,7 +313,7 @@ sed 4.8-1ubuntu2 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From ae4fa9a8ce3a8a735d469f33c42fe89822310d8e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Jun 2023 12:47:19 +0000 Subject: [PATCH 1660/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 25c421f..7503fd3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb jellyfin-server 20230610.4-unstable deb -jellyfin-web 20230608.1-unstable deb +jellyfin-web 20230612.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From da25409d7a7a94cbddce75e508f47b6c5d35855f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Jun 2023 19:10:16 +0000 Subject: [PATCH 1661/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7503fd3..e44575f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230610.4-unstable deb +jellyfin-server 20230613.4-unstable deb jellyfin-web 20230612.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 4ec38824c21038a3d4d7c118b4cb4e0a8b348d8b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Jun 2023 16:13:49 +0000 Subject: [PATCH 1662/2257] 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 e44575f..ef081b9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,7 +80,7 @@ Serilog.Sinks.Async 1 Serilog.Sinks.Console 4.1.0 dotnet Serilog.Sinks.Debug 2.0.0 dotnet Serilog.Sinks.File 5.0.0 dotnet -Serilog.Sinks.Graylog 3.0.0 dotnet +Serilog.Sinks.Graylog 3.0.1 dotnet SkiaSharp 2.88.3 dotnet SkiaSharp.NativeAssets.Linux 2.88.3 dotnet SkiaSharp.NativeAssets.Win32 2.88.3 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230613.4-unstable deb +jellyfin-server 20230615.7-unstable deb jellyfin-web 20230612.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -216,7 +216,7 @@ libfreetype6 2 libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb From fb27e2b78ba2478476b5f57aca24588baf222f1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Jun 2023 13:15:06 +0000 Subject: [PATCH 1663/2257] 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 ef081b9..93149ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,16 +17,16 @@ LrcParser 2 MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore.Authorization 7.0.5 dotnet -Microsoft.AspNetCore.Metadata 7.0.5 dotnet +Microsoft.AspNetCore.Authorization 7.0.7 dotnet +Microsoft.AspNetCore.Metadata 7.0.7 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 7.0.5 dotnet -Microsoft.EntityFrameworkCore 7.0.5 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.5 dotnet -Microsoft.EntityFrameworkCore.Analyzers 7.0.5 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.5 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.5 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.5 dotnet +Microsoft.Data.Sqlite.Core 7.0.7 dotnet +Microsoft.EntityFrameworkCore 7.0.7 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.7 dotnet +Microsoft.EntityFrameworkCore.Analyzers 7.0.7 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.7 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.7 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.7 dotnet Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet Microsoft.Extensions.Caching.Memory 7.0.0 dotnet @@ -39,16 +39,16 @@ Microsoft.Extensions.Configuration.Json 7 Microsoft.Extensions.DependencyInjection 7.0.0 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet Microsoft.Extensions.DependencyModel 7.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.5 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.5 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.5 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.7 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.7 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.7 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet Microsoft.Extensions.Hosting.Abstractions 7.0.0 dotnet Microsoft.Extensions.Http 7.0.0 dotnet Microsoft.Extensions.Logging 7.0.0 dotnet -Microsoft.Extensions.Logging.Abstractions 7.0.0 dotnet +Microsoft.Extensions.Logging.Abstractions 7.0.1 dotnet Microsoft.Extensions.ObjectPool 7.0.0 dotnet Microsoft.Extensions.Options 7.0.1 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet @@ -132,7 +132,7 @@ System.Text.Encoding 4 System.Text.Encoding.CodePages 7.0.0 dotnet System.Text.Encoding.Extensions 4.3.0 dotnet System.Text.Encodings.Web 7.0.0 dotnet -System.Text.Json 7.0.2 dotnet +System.Text.Json 7.0.3 dotnet System.Threading 4.3.0 dotnet System.Threading.Tasks 4.3.0 dotnet System.Threading.Tasks.Dataflow 7.0.0 dotnet @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230615.7-unstable deb -jellyfin-web 20230612.1-unstable deb +jellyfin-server 20230619.6-unstable deb +jellyfin-web 20230619.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -297,9 +297,9 @@ libvorbisfile3 1 libvpx7 1.11.0-2ubuntu2 deb libwebp7 1.2.2-2ubuntu0.22.04.1 deb libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb -libx11-6 2:1.7.5-1 deb -libx11-data 2:1.7.5-1 deb -libx11-xcb1 2:1.7.5-1 deb +libx11-6 2:1.7.5-1ubuntu0.2 deb +libx11-data 2:1.7.5-1ubuntu0.2 deb +libx11-xcb1 2:1.7.5-1ubuntu0.2 deb libx264-163 2:0.163.3060+git5db6aa6-2build1 deb libx265-199 3.5-2 deb libxau6 1:1.0.9-1build5 deb @@ -326,7 +326,7 @@ login 1 logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb mount 2.37.2-4ubuntu3 deb ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb From b7e5f4181d56e0634a30892032ab090d0c7c5e8a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Jun 2023 20:11:15 +0000 Subject: [PATCH 1664/2257] 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 93149ba..b8b9248 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230619.6-unstable deb -jellyfin-web 20230619.1-unstable deb +jellyfin-server 20230619.12-unstable deb +jellyfin-web 20230619.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 83ee5ddbe1a03f04219f4d6cf8b41431de30619d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Jun 2023 12:47:22 +0000 Subject: [PATCH 1665/2257] 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 6ada8f8..ade9ba1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -178,7 +178,7 @@ libfreetype6 2.11.1+dfsg-1 libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb @@ -259,9 +259,9 @@ libvorbisfile3 1.3.7-1build2 libvpx7 1.11.0-2ubuntu2 deb libwebp7 1.2.2-2ubuntu0.22.04.1 deb libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb -libx11-6 2:1.7.5-1 deb -libx11-data 2:1.7.5-1 deb -libx11-xcb1 2:1.7.5-1 deb +libx11-6 2:1.7.5-1ubuntu0.2 deb +libx11-data 2:1.7.5-1ubuntu0.2 deb +libx11-xcb1 2:1.7.5-1ubuntu0.2 deb libx264-163 2:0.163.3060+git5db6aa6-2build1 deb libx265-199 3.5-2 deb libxau6 1:1.0.9-1build5 deb @@ -288,7 +288,7 @@ login 1:4.8.1-2ubun logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.1 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb mount 2.37.2-4ubuntu3 deb ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb From 7483d10866e3aef3fc6bcd26e4ec7e770f132a11 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Jun 2023 12:47:26 +0000 Subject: [PATCH 1666/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b8b9248..16e9050 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,7 +177,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb jellyfin-server 20230619.12-unstable deb -jellyfin-web 20230619.2-unstable deb +jellyfin-web 20230620.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From a1307a86c6d9b065d719ef4e2eee2517602439fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Jun 2023 19:10:03 +0000 Subject: [PATCH 1667/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 16e9050..6a4b2b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230619.12-unstable deb +jellyfin-server 20230620.2-unstable deb jellyfin-web 20230620.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From a5a4f23db45d34032bb64aa97f6f47e584441d95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Jun 2023 16:14:04 +0000 Subject: [PATCH 1668/2257] 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 6a4b2b8..c0c5abd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230620.2-unstable deb -jellyfin-web 20230620.1-unstable deb +jellyfin-server 20230621.6-unstable deb +jellyfin-web 20230621.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 1aac9d2228d6dd815b3c3ba033e59769ec145ff8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 22 Jun 2023 04:13:12 +0000 Subject: [PATCH 1669/2257] 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 c0c5abd..c08bbd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230621.6-unstable deb -jellyfin-web 20230621.2-unstable deb +jellyfin-server 20230622.1-unstable deb +jellyfin-web 20230621.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 2149ad01acd7da7530772e445b27d184674c2abd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 22 Jun 2023 12:17:57 +0000 Subject: [PATCH 1670/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c08bbd4..c4ac7e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230622.1-unstable deb +jellyfin-server 20230622.2-unstable deb jellyfin-web 20230621.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From a3086d09e7031c49d40ecddf38cf4366a1b9ac3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Jun 2023 21:12:07 +0000 Subject: [PATCH 1671/2257] 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 c4ac7e5..775793c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,16 +17,16 @@ LrcParser 2 MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore.Authorization 7.0.7 dotnet -Microsoft.AspNetCore.Metadata 7.0.7 dotnet +Microsoft.AspNetCore.Authorization 7.0.8 dotnet +Microsoft.AspNetCore.Metadata 7.0.8 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 7.0.7 dotnet -Microsoft.EntityFrameworkCore 7.0.7 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.7 dotnet -Microsoft.EntityFrameworkCore.Analyzers 7.0.7 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.7 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.7 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.7 dotnet +Microsoft.Data.Sqlite.Core 7.0.8 dotnet +Microsoft.EntityFrameworkCore 7.0.8 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.8 dotnet +Microsoft.EntityFrameworkCore.Analyzers 7.0.8 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.8 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.8 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.8 dotnet Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet Microsoft.Extensions.Caching.Memory 7.0.0 dotnet @@ -39,9 +39,9 @@ Microsoft.Extensions.Configuration.Json 7 Microsoft.Extensions.DependencyInjection 7.0.0 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet Microsoft.Extensions.DependencyModel 7.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.7 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.7 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.7 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.8 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.8 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.8 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230622.2-unstable deb +jellyfin-server 20230623.4-unstable deb jellyfin-web 20230621.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 7477b745e4d3a0ac661cb1a988f7b7e30bddfaf6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 24 Jun 2023 16:13:40 +0000 Subject: [PATCH 1672/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 775793c..8327acb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230623.4-unstable deb +jellyfin-server 20230624.3-unstable deb jellyfin-web 20230621.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From ea81df7d1850ba4c0939ad5f05f868f7ea44e9e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Jun 2023 12:20:49 +0000 Subject: [PATCH 1673/2257] 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 8327acb..9d6895c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,8 +176,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230624.3-unstable deb -jellyfin-web 20230621.3-unstable deb +jellyfin-server 20230627.3-unstable deb +jellyfin-web 20230627.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e060794900203b4caf78bbea065460a254e5f324 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Jun 2023 19:10:42 +0000 Subject: [PATCH 1674/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9d6895c..1b27fc1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230627.3-unstable deb +jellyfin-server 20230627.15-unstable deb jellyfin-web 20230627.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From b3c7b286dfada70824af5ee565eacf262e2e0030 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 28 Jun 2023 04:14:31 +0000 Subject: [PATCH 1675/2257] Bot Updating Package Versions --- package_versions.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1b27fc1..225c469 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,6 +12,10 @@ DiscUtils.Udf 0 DotNet.Glob 3.1.3 dotnet EFCoreSecondLevelCacheInterceptor 3.9.2 dotnet EasyCaching.Core 1.8.0 dotnet +HarfBuzzSharp 2.8.2.3 dotnet +HarfBuzzSharp.NativeAssets.Linux 2.8.2.3 dotnet +HarfBuzzSharp.NativeAssets.Win32 2.8.2.3 dotnet +HarfBuzzSharp.NativeAssets.macOS 2.8.2.3 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2023.524.0 dotnet MetaBrainz.Common 1.0.0 dotnet @@ -82,6 +86,7 @@ Serilog.Sinks.Debug 2 Serilog.Sinks.File 5.0.0 dotnet Serilog.Sinks.Graylog 3.0.1 dotnet SkiaSharp 2.88.3 dotnet +SkiaSharp.HarfBuzz 2.88.3 dotnet SkiaSharp.NativeAssets.Linux 2.88.3 dotnet SkiaSharp.NativeAssets.Win32 2.88.3 dotnet SkiaSharp.NativeAssets.macOS 2.88.3 dotnet @@ -176,8 +181,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230627.15-unstable deb -jellyfin-web 20230627.2-unstable deb +jellyfin-server 20230628.4-unstable deb +jellyfin-web 20230627.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -195,7 +200,7 @@ libc-bin 2 libc6 2.35-0ubuntu3.1 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb libcurl4 7.81.0-1ubuntu1.10 deb From 2c1f6c17ebed8f91a15b77585c14dce91d11f687 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 28 Jun 2023 16:14:27 +0000 Subject: [PATCH 1676/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 225c469..cb9316c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,7 +181,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230628.4-unstable deb +jellyfin-server 20230628.10-unstable deb jellyfin-web 20230627.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From fb489f2493b7951192d02bb1d395807f916697a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 28 Jun 2023 23:14:31 +0000 Subject: [PATCH 1677/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cb9316c..aa42b6f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,7 +181,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230628.10-unstable deb +jellyfin-server 20230628.12-unstable deb jellyfin-web 20230627.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 08cddec53f1e63115b946a875753e067fe032c0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Jun 2023 12:18:58 +0000 Subject: [PATCH 1678/2257] 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 aa42b6f..b747488 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -180,8 +180,8 @@ grep 3 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-2-jammy deb -jellyfin-server 20230628.12-unstable deb +jellyfin-ffmpeg5 5.1.3-3-jammy deb +jellyfin-server 20230629.8-unstable deb jellyfin-web 20230627.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 23ec59c5c75e5c829609348a8daec4a548a2a006 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jul 2023 17:09:21 +0000 Subject: [PATCH 1679/2257] Bot Updating Templated Files --- Jenkinsfile | 83 +++++++++++++---------------------------------------- 1 file changed, 20 insertions(+), 63 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 662f873..221f520 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 } @@ -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} @@ -515,44 +516,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-jellyfin/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ - --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=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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 +656,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 +759,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 +766,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} From 0942051c4114dd8162c93b1cd600e544dccdb1d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jul 2023 17:12:11 +0000 Subject: [PATCH 1680/2257] Bot Updating Templated Files --- Dockerfile.armhf | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 Dockerfile.armhf diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index b96a088..0000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,47 +0,0 @@ -# syntax=docker/dockerfile:1 - -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-jammy - -# set version label -ARG BUILD_DATE -ARG VERSION -ARG JELLYFIN_RELEASE -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" - -# environment settings -ARG DEBIAN_FRONTEND="noninteractive" -ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" - -RUN \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg5 \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libomxil-bellagio0 \ - libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl3 && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* - -# add local files -COPY root/ / - -# ports and volumes -EXPOSE 8096 8920 -VOLUME /config From 3e8f2ad1be3c72264f3cb3ab58fe2b1c6f1dabd9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jul 2023 17:13:55 +0000 Subject: [PATCH 1681/2257] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.yml | 1 - README.md | 3 +- readme-vars.yml | 78 +++++++++++++--------------- 3 files changed, 38 insertions(+), 44 deletions(-) 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/README.md b/README.md index 3d6c221..176c52c 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 @@ -300,6 +300,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase nightly to Jammy, migrate to s6v3. * **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. * **25.12.21:** - Fix video device group perms error message. diff --git a/readme-vars.yml b/readme-vars.yml index 93abfba..c7bc4da 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -6,51 +6,45 @@ project_url: "https://jellyfin.github.io/" project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." - # supported architectures available_architectures: - - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - - { arch: "{{ arch_armhf }}", tag: "arm32v7-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 Jellyfin releases" } - - { tag: "nightly", desc: "Unstable Jellyfin releases" } - + - {tag: "latest", desc: "Stable Jellyfin releases"} + - {tag: "nightly", desc: "Unstable Jellyfin releases"} # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*" } - - { vol_path: "/data/tvshows", vol_host_path: "path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } - - { vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } + - {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} + - {vol_path: "/data/tvshows", vol_host_path: "path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} + - {vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} param_usage_include_ports: true param_ports: - - { external_port: "8096", internal_port: "8096", port_desc: "Http webUI." } + - {external_port: "8096", internal_port: "8096", port_desc: "Http webUI."} param_usage_include_env: true param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} + - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} # optional container parameters opt_param_usage_include_env: false opt_param_usage_include_vols: true opt_param_volumes: - - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } + - {vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*."} opt_param_device_map: true opt_param_devices: - - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } - - { device_path: "/dev/vc-mem", device_host_path: "/dev/vc-mem", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } - - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio)." } - - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - - { device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } + - {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)."} + - {device_path: "/dev/vc-mem", device_host_path: "/dev/vc-mem", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."} + - {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio)."} + - {device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} + - {device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} + - {device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} opt_param_usage_include_ports: true opt_param_ports: - - { external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)." } - - + - {external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)."} # application setup block app_setup_block_enabled: true app_setup_block: | @@ -94,24 +88,24 @@ app_setup_block: | --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` - # changelog changelogs: - - { date: "07.12.22:", desc: "Rebase nightly to Jammy, migrate to s6v3." } - - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - - { date: "25.12.21:", desc: "Fix video device group perms error message." } - - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Deprecate the `bionic` tag." } - - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - - { date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - - { date: "22.07.20:", desc: "Install nightly from unstable." } - - { date: "27.05.20:", desc: "Set web directory path." } - - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - - { date: "11.03.20:", desc: "Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - - { date: "30.01.20:", desc: "Add nightly tag." } - - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } - - { date: "31.07.19:", desc: "Add AMD drivers for vaapi support on x86." } - - { date: "13.06.19:", desc: "Add Intel drivers for vaapi support on x86." } - - { date: "07.06.19:", desc: "Initial release." } + - {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} + - {date: "07.12.22:", desc: "Rebase nightly to Jammy, migrate to s6v3."} + - {date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors."} + - {date: "25.12.21:", desc: "Fix video device group perms error message."} + - {date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper."} + - {date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Deprecate the `bionic` tag."} + - {date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information."} + - {date: "05.01.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW."} + - {date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic."} + - {date: "22.07.20:", desc: "Install nightly from unstable."} + - {date: "27.05.20:", desc: "Set web directory path."} + - {date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder."} + - {date: "11.03.20:", desc: "Add v4l2 support on Raspberry Pi; remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)."} + - {date: "30.01.20:", desc: "Add nightly tag."} + - {date: "09.01.20:", desc: "Add Pi OpenMax support."} + - {date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices."} + - {date: "31.07.19:", desc: "Add AMD drivers for vaapi support on x86."} + - {date: "13.06.19:", desc: "Add Intel drivers for vaapi support on x86."} + - {date: "07.06.19:", desc: "Initial release."} From 5ee7e7abab2eef7a7243228f4e0529973a82cf15 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jul 2023 17:18:24 +0000 Subject: [PATCH 1682/2257] 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 b747488..d357ce3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,8 +181,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230629.8-unstable deb -jellyfin-web 20230627.3-unstable deb +jellyfin-server 20230701.9-unstable deb +jellyfin-web 20230701.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e91428175aa9c672c14fb8947febcf55b8534e25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Jul 2023 00:55:50 +0000 Subject: [PATCH 1683/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d357ce3..13dadb6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,7 +181,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230701.9-unstable deb +jellyfin-server 20230701.11-unstable deb jellyfin-web 20230701.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 64d642f346f27441b46327b42ac5838f2c28b13b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Jul 2023 07:10:23 +0000 Subject: [PATCH 1684/2257] 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 13dadb6..e6cafc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,8 +181,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230701.11-unstable deb -jellyfin-web 20230701.2-unstable deb +jellyfin-server 20230702.1-unstable deb +jellyfin-web 20230702.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From b808e6326728f6864f5e760c6f7d417a87ae3d5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Jul 2023 21:10:36 +0000 Subject: [PATCH 1685/2257] 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 e6cafc8..05baa9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,8 +181,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230702.1-unstable deb -jellyfin-web 20230702.1-unstable deb +jellyfin-server 20230702.12-unstable deb +jellyfin-web 20230702.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 3e5f63b88f7d4bc18c78bbce82c78acfeacca5ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jul 2023 03:23:27 +0000 Subject: [PATCH 1686/2257] 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 05baa9b..802fec9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,8 +181,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230702.12-unstable deb -jellyfin-web 20230702.3-unstable deb +jellyfin-server 20230702.15-unstable deb +jellyfin-web 20230703.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 8b56f64230b6239be2429399cd173be531d6536b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jul 2023 10:12:22 +0000 Subject: [PATCH 1687/2257] 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 802fec9..7b834cd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,8 +181,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230702.15-unstable deb -jellyfin-web 20230703.1-unstable deb +jellyfin-server 20230703.5-unstable deb +jellyfin-web 20230703.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 274a85bc6461fa5c63fc03aae7d18d9e137d60b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jul 2023 17:11:46 +0000 Subject: [PATCH 1688/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7b834cd..d71fab4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,7 +181,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230703.5-unstable deb +jellyfin-server 20230703.12-unstable deb jellyfin-web 20230703.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From a3ab9cfd8217ccf82d150b1c095796cfbc2bf816 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 00:54:09 +0000 Subject: [PATCH 1689/2257] Bot Updating Package Versions --- package_versions.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d71fab4..6ad17f9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -22,6 +22,10 @@ MetaBrainz.Common 1 MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet Microsoft.AspNetCore.Authorization 7.0.8 dotnet +Microsoft.AspNetCore.Http.Abstractions 2.2.0 dotnet +Microsoft.AspNetCore.Http.Extensions 2.2.0 dotnet +Microsoft.AspNetCore.Http.Features 2.2.0 dotnet +Microsoft.AspNetCore.HttpOverrides 2.2.0 dotnet Microsoft.AspNetCore.Metadata 7.0.8 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet Microsoft.Data.Sqlite.Core 7.0.8 dotnet @@ -59,6 +63,7 @@ Microsoft.Extensions.Options.ConfigurationExtensions 6 Microsoft.Extensions.Primitives 7.0.0 dotnet Microsoft.NETCore.Platforms 5.0.0 dotnet Microsoft.NETCore.Targets 1.1.0 dotnet +Microsoft.Net.Http.Headers 2.2.0 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.Primitives 4.3.0 dotnet Microsoft.Win32.Registry 5.0.0 dotnet @@ -96,7 +101,7 @@ Swashbuckle.AspNetCore.ReDoc 6 Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet -System.Buffers 4.3.0 dotnet +System.Buffers 4.5.0 dotnet System.Collections 4.3.0 dotnet System.Collections.Concurrent 4.3.0 dotnet System.Diagnostics.Debug 4.3.0 dotnet @@ -181,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230703.12-unstable deb -jellyfin-web 20230703.2-unstable deb +jellyfin-server 20230703.13-unstable deb +jellyfin-web 20230703.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 530f4c9ee21a691688756691f35d28562ae4f4c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 12:50:59 +0000 Subject: [PATCH 1690/2257] Bot Updating Templated Files --- Jenkinsfile | 83 +++++++++++++---------------------------------------- 1 file changed, 20 insertions(+), 63 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5696b93..4b6b2a6 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-' + 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-' + 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 } @@ -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-' + 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-' + 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 } @@ -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-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } @@ -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} @@ -515,44 +516,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-jellyfin/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-jellyfin\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-jellyfin\" \ - --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=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ - --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 +656,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 +759,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 +766,47 @@ pipeline { docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-latest 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-latest - 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-latest 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-latest - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-latest - docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-latest 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}:latest || : - docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:arm64v8-latest - docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm32v7-latest --os linux --arch arm + docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}: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-latest") + if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest || : + docker manifest create ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:amd64-latest + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest + fi docker manifest push --purge ${MANIFESTIMAGE}:latest docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} From 73d23bd1487e47cf80af1529905b5d5ba71fbf08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 12:52:42 +0000 Subject: [PATCH 1691/2257] Bot Updating Templated Files --- Dockerfile.armhf | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Dockerfile.armhf diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index ed3d074..0000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,46 +0,0 @@ -# syntax=docker/dockerfile:1 - -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-jammy - -# set version label -ARG BUILD_DATE -ARG VERSION -ARG JELLYFIN_RELEASE -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" - -# environment settings -ARG DEBIAN_FRONTEND="noninteractive" -ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" - -RUN \ - echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=armhf] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ - if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ - fi && \ - apt-get update && \ - apt-get install -y --no-install-recommends \ - at \ - jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg5 \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libomxil-bellagio0 \ - libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl3 && \ - echo "**** cleanup ****" && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* - -# add local files -COPY root/ / - -# ports and volumes -EXPOSE 8096 8920 -VOLUME /config From bf37565e50234768ed79c0a0e2d27ead42167802 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 12:55:06 +0000 Subject: [PATCH 1692/2257] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.yml | 1 - README.md | 3 +- readme-vars.yml | 102 +++++++++++++-------------- 3 files changed, 50 insertions(+), 56 deletions(-) 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/README.md b/README.md index 64a9175..3432ed0 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 @@ -307,6 +307,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase master to Jammy, migrate to s6v3. * **11.06.22:** - Switch to upstream repo's ffmpeg5 build. * **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. diff --git a/readme-vars.yml b/readme-vars.yml index 6958103..a150283 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -6,53 +6,49 @@ project_url: "https://jellyfin.github.io/" project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." - # supported architectures available_architectures: - - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - - { arch: "{{ arch_armhf }}", tag: "arm32v7-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 Jellyfin releases" } - - { tag: "nightly", desc: "Nightly Jellyfin releases" } - + - {tag: "latest", desc: "Stable Jellyfin releases"} + - {tag: "nightly", desc: "Nightly Jellyfin releases"} # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*" } - - { vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } - - { vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc." } + - {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} + - {vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} + - {vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} param_usage_include_ports: true param_ports: - - { external_port: "8096", internal_port: "8096", port_desc: "Http webUI." } + - {external_port: "8096", internal_port: "8096", port_desc: "Http webUI."} param_usage_include_env: true param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} + - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} + - {env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} opt_param_usage_include_vols: false opt_param_volumes: - - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } + - {vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*."} opt_param_device_map: false opt_param_devices: - - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)." } - - { device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)." } - - { device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding." } - - { device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - - { device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } - - { device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding." } + - {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)."} + - {device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."} + - {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding."} + - {device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} + - {device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} + - {device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} opt_param_usage_include_ports: true opt_param_ports: - - { external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)." } - - { external_port: "7359", internal_port: "7359/udp", port_desc: "Optional - Allows clients to discover Jellyfin on the local network." } - - { external_port: "1900", internal_port: "1900/udp", port_desc: "Optional - Service discovery used by DNLA and clients." } + - {external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)."} + - {external_port: "7359", internal_port: "7359/udp", port_desc: "Optional - Allows clients to discover Jellyfin on the local network."} + - {external_port: "1900", internal_port: "1900/udp", port_desc: "Optional - Service discovery used by DNLA and clients."} optional_parameters: | The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. @@ -66,7 +62,6 @@ optional_parameters: | ``` The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. - # application setup block app_setup_block_enabled: true app_setup_block: | @@ -75,9 +70,9 @@ app_setup_block: | More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). ## Hardware Acceleration - + ### Intel - + Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: `--device=/dev/dri:/dev/dri` @@ -89,15 +84,15 @@ app_setup_block: | https://mods.linuxserver.io/?mod=jellyfin ### Nvidia - + Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: https://github.com/NVIDIA/nvidia-docker We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - + ### OpenMAX (Raspberry Pi) - + Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` @@ -107,7 +102,7 @@ app_setup_block: | ``` ### V4L2 (Raspberry Pi) - + Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: ``` @@ -115,29 +110,28 @@ app_setup_block: | --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` - unraid_template_sync: false - # changelog changelogs: - - { date: "07.12.22:", desc: "Rebase master to Jammy, migrate to s6v3." } - - { date: "11.06.22:", desc: "Switch to upstream repo's ffmpeg5 build." } - - { date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors." } - - { date: "25.12.21:", desc: "Fix video device group perms error message." } - - { date: "10.12.21:", desc: "Rework readme, disable template sync." } - - { date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper." } - - { date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag." } - - { date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW." } - - { date: "20.01.21:", desc: "Add Jellyfin Binary Environmentals" } - - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } - - { date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder." } - - { date: "11.03.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)." } - - { date: "30.01.20:", desc: "Add nightly tag." } - - { date: "09.01.20:", desc: "Add Pi OpenMax support." } - - { date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices." } - - { date: "31.07.19:", desc: "Add AMD drivers for vaapi support on x86." } - - { date: "13.06.19:", desc: "Add Intel drivers for vaapi support on x86." } - - { date: "07.06.19:", desc: "Initial release." } + - {date: "04.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} + - {date: "07.12.22:", desc: "Rebase master to Jammy, migrate to s6v3."} + - {date: "11.06.22:", desc: "Switch to upstream repo's ffmpeg5 build."} + - {date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors."} + - {date: "25.12.21:", desc: "Fix video device group perms error message."} + - {date: "10.12.21:", desc: "Rework readme, disable template sync."} + - {date: "22.09.21:", desc: "Pull only the server, web and ffmpeg packages instead of the wrapper."} + - {date: "23.06.21:", desc: "Add log message if device permissions are incorrect. Pin jellyfin dependency versions to prevent upstream apt repo issues. Deprecate the `bionic` tag."} + - {date: "21.05.21:", desc: "Add nvidia.icd file to fix missing tonemapping using Nvidia HW."} + - {date: "20.01.21:", desc: "Add Jellyfin Binary Environmentals"} + - {date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information."} + - {date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic."} + - {date: "22.07.20:", desc: "Ingest releases from Jellyfin repo."} + - {date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian."} + - {date: "11.04.20:", desc: "Enable hw decode (mmal) on Raspberry Pi, update readme instructions, add donation info, create missing default transcodes folder."} + - {date: "11.03.20:", desc: "Add Pi V4L2 support, remove optional transcode mapping (location is selected in the gui, defaults to path under `/config`)."} + - {date: "30.01.20:", desc: "Add nightly tag."} + - {date: "09.01.20:", desc: "Add Pi OpenMax support."} + - {date: "02.10.19:", desc: "Improve permission fixing for render & dvb devices."} + - {date: "31.07.19:", desc: "Add AMD drivers for vaapi support on x86."} + - {date: "13.06.19:", desc: "Add Intel drivers for vaapi support on x86."} + - {date: "07.06.19:", desc: "Initial release."} From a60b4529c5bd4bffa4f971a5f2a80640a44732fc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 12:58:06 +0000 Subject: [PATCH 1693/2257] 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 ade9ba1..6ea3532 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-2-jammy deb +jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 10.8.10-1 deb jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb @@ -157,7 +157,7 @@ libc-bin 2.35-0ubuntu3 libc6 2.35-0ubuntu3.1 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb libcurl4 7.81.0-1ubuntu1.10 deb From a7574adbdc39953c909165ae4da33da4827e32ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Jul 2023 19:11:07 +0000 Subject: [PATCH 1694/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ad17f9..47ab12f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230703.13-unstable deb -jellyfin-web 20230703.4-unstable deb +jellyfin-web 20230704.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 521a3959db1594adf5ca54bb4d6b454b58494c81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Jul 2023 02:27:06 +0000 Subject: [PATCH 1695/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 47ab12f..2b47294 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230703.13-unstable deb -jellyfin-web 20230704.4-unstable deb +jellyfin-web 20230704.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 694b2098eea9114728d3fe893a371d3dd96fb79f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Jul 2023 09:11:51 +0000 Subject: [PATCH 1696/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2b47294..3ca733f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230703.13-unstable deb -jellyfin-web 20230704.5-unstable deb +jellyfin-web 20230705.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 8718bc7c24d5c553454649c68432820fe86e75ec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Jul 2023 16:16:02 +0000 Subject: [PATCH 1697/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3ca733f..3ec7a3c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230703.13-unstable deb -jellyfin-web 20230705.1-unstable deb +jellyfin-web 20230705.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 93fb4ac22e6bdcb3cc340d3b23df6bf22dcde6fb Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 5 Jul 2023 20:20:17 +0100 Subject: [PATCH 1698/2257] Update readme links and readiness check --- Dockerfile | 3 ++- Dockerfile.aarch64 | 3 ++- Jenkinsfile | 6 +++--- README.md | 4 ++-- readme-vars.yml | 2 +- root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run | 1 + root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run | 5 +++-- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check | 9 +++++++++ root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 1 + 9 files changed, 24 insertions(+), 10 deletions(-) create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check diff --git a/Dockerfile b/Dockerfile index a2970e7..9c99320 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,8 @@ RUN \ libfontconfig1 \ libfreetype6 \ libssl3 \ - mesa-va-drivers && \ + mesa-va-drivers \ + xmlstarlet && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index cb830dc..9d823f5 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,8 @@ RUN \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl3 && \ + libssl3 \ + xmlstarlet && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Jenkinsfile b/Jenkinsfile index 4b6b2a6..13ad87d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -480,7 +480,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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} ." } @@ -511,7 +511,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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} ." } @@ -539,7 +539,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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}" diff --git a/README.md b/README.md index 3432ed0..b8ee0ee 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,9 @@ Find us at: [![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-jellyfin%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/) [![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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) -[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. +[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. -[![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://jellyfin.github.io/) +[![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://github.com/jellyfin/jellyfin) ## Supported Architectures diff --git a/readme-vars.yml b/readme-vars.yml index a150283..cc41103 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -2,7 +2,7 @@ # project information project_name: jellyfin -project_url: "https://jellyfin.github.io/" +project_url: "https://github.com/jellyfin/jellyfin" project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run index b35c3f8..8b6a23e 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run @@ -1,4 +1,5 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash # create directories mkdir -p \ diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run index c519926..c765461 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run @@ -1,4 +1,5 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) @@ -7,7 +8,7 @@ do VIDEO_GID=$(stat -c '%g' "$i") if ! id -G abc | grep -qw "$VIDEO_GID"; then VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [ -z "${VIDEO_NAME}" ]; then + if [[ -z "${VIDEO_NAME}" ]]; then VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" groupadd "$VIDEO_NAME" groupmod -g "$VIDEO_GID" "$VIDEO_NAME" @@ -20,7 +21,7 @@ do done # openmax lib loading -if [ -e "/opt/vc/lib" ] && [ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]; then +if [[ -e "/opt/vc/lib" ]] && [[ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]]; then echo "[jellyfin-init] Pi Libs detected loading" echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" ldconfig diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check new file mode 100755 index 0000000..cbc0190 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check @@ -0,0 +1,9 @@ +#!/bin/bash + +PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) + +if [[ $(curl -sL "http://localhost:${PORT:-8096}/health" | jq -r '.status' 2>/dev/null) = "Healthy" ]]; then + exit 0 +else + exit 1 +fi diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index 6196b0f..388e901 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -1,4 +1,5 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash export \ JELLYFIN_DATA_DIR="/config/data" \ From eacf1b24dc6f9036d2d9a4b759fa204bab30fff2 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 5 Jul 2023 20:36:46 +0100 Subject: [PATCH 1699/2257] Remove old check command from service file --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index 388e901..b1e90ce 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -9,6 +9,6 @@ export \ JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8096" \ + s6-notifyoncheck -d -n 300 -w 1000 \ s6-setuidgid abc /usr/bin/jellyfin \ --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg From 5784bb194d45a193041e0131b702b1ebcf9b7a47 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 5 Jul 2023 20:38:02 +0100 Subject: [PATCH 1700/2257] Fix check logic --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check index cbc0190..2b7be3e 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check @@ -2,7 +2,7 @@ PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) -if [[ $(curl -sL "http://localhost:${PORT:-8096}/health" | jq -r '.status' 2>/dev/null) = "Healthy" ]]; then +if [[ $(curl -sL "http://localhost:${PORT:-8096}/health" 2>/dev/null) = "Healthy" ]]; then exit 0 else exit 1 From 4775527a6a99806dfa0d91562a2ce8e369869ef2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Jul 2023 19:54:36 +0000 Subject: [PATCH 1701/2257] Bot Updating Package Versions --- package_versions.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package_versions.txt b/package_versions.txt index 6ea3532..438d150 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -279,6 +279,7 @@ libxext6 2:1.3.4-1buil libxml2 2.9.13+dfsg-1ubuntu0.3 deb libxrender1 1:0.9.10-1build4 deb libxshmfence1 1.3-1build4 deb +libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb @@ -318,5 +319,6 @@ ubuntu-keyring 2021.03.26 ucf 3.0043 deb usrmerge 25ubuntu2 deb util-linux 2.37.2-4ubuntu3 deb +xmlstarlet 1.6.1-2.1 deb zlib.net-mutliplatform 1.0.5 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 38af7d883e29ed87466efd8e8b979c5d5f61bf25 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Jul 2023 12:20:40 +0000 Subject: [PATCH 1702/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3ec7a3c..e6307cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230703.13-unstable deb -jellyfin-web 20230705.5-unstable deb +jellyfin-web 20230706.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 2662d9478e72fd964906b3a079a2e40f1d12e43e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Jul 2023 19:10:16 +0000 Subject: [PATCH 1703/2257] 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 e6307cb..3f1d352 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230703.13-unstable deb -jellyfin-web 20230706.5-unstable deb +jellyfin-server 20230706.5-unstable deb +jellyfin-web 20230706.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 59bf773b094a555e938f0af1c46d6f6d81de0336 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Jul 2023 02:26:11 +0000 Subject: [PATCH 1704/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3f1d352..57c3b7f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230706.5-unstable deb -jellyfin-web 20230706.11-unstable deb +jellyfin-web 20230707.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c9fd3faabbd2eafcaa41d95446d2df587dca4155 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Jul 2023 09:11:33 +0000 Subject: [PATCH 1705/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 57c3b7f..d0db465 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230706.5-unstable deb -jellyfin-web 20230707.1-unstable deb +jellyfin-web 20230707.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 964280e8f69ff1a8580802fd7a70117027228b17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Jul 2023 16:13:34 +0000 Subject: [PATCH 1706/2257] 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 d0db465..b1db365 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ NAME VERSION TYPE BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0 dotnet +BlurHashSharp 1.3.0 dotnet +BlurHashSharp.SkiaSharp 1.3.0 dotnet CacheManager.Core 1.2.0 dotnet CommandLineParser 2.9.1 dotnet Diacritics 3.3.18 dotnet @@ -186,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230706.5-unstable deb -jellyfin-web 20230707.4-unstable deb +jellyfin-server 20230707.6-unstable deb +jellyfin-web 20230707.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From bf156668621798660cee2f86555c7a17c63600a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Jul 2023 23:10:55 +0000 Subject: [PATCH 1707/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b1db365..2b65b2d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230707.5-unstable deb +jellyfin-web 20230707.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e0f6de9f7d8791844458adeada5483c76a6ab177 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Jul 2023 06:12:56 +0000 Subject: [PATCH 1708/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2b65b2d..aff0f23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230707.14-unstable deb +jellyfin-web 20230708.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c1ae16d06309eb4b21dba200f79def816137d962 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Jul 2023 12:17:58 +0000 Subject: [PATCH 1709/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aff0f23..4c490d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230708.3-unstable deb +jellyfin-web 20230708.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 29f335754d2fa6de8d30fcf7c61cba59a8556b5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Jul 2023 19:09:49 +0000 Subject: [PATCH 1710/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4c490d3..f0938bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230708.4-unstable deb +jellyfin-web 20230708.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 7cad07a338d3003dd0b5576f1ec17a6e57de1a36 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Jul 2023 02:44:58 +0000 Subject: [PATCH 1711/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f0938bc..8088f27 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230708.5-unstable deb +jellyfin-web 20230708.17-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 30ab0fe3845f42b43cbd75aecd41f1aa6d860a13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Jul 2023 09:10:24 +0000 Subject: [PATCH 1712/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8088f27..96a32e0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230708.17-unstable deb +jellyfin-web 20230709.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 950ec099fda31b77e23db462c0c8915ae1b0d0cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Jul 2023 05:13:04 +0000 Subject: [PATCH 1713/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 96a32e0..14a84d4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230707.6-unstable deb -jellyfin-web 20230709.1-unstable deb +jellyfin-web 20230709.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From b1aeb99587244425130007be01147464cec7cf91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Jul 2023 12:19:03 +0000 Subject: [PATCH 1714/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 14a84d4..3f8bf13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230707.6-unstable deb +jellyfin-server 20230710.3-unstable deb jellyfin-web 20230709.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 19e50b820b0048b70df687a369d6fa72e1a2246d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Jul 2023 19:11:00 +0000 Subject: [PATCH 1715/2257] 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 3f8bf13..2341d69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230709.4-unstable deb +jellyfin-web 20230710.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -244,7 +244,7 @@ libkrb5support0 1 libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb From 3ba79e5493c8bd42316dc3647f392806cd7be229 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jul 2023 09:12:34 +0000 Subject: [PATCH 1716/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2341d69..5ba2e03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230710.1-unstable deb +jellyfin-web 20230711.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c2e2e93104eaf2b67aa9cb6a4859d291865ab85c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jul 2023 12:51:17 +0000 Subject: [PATCH 1717/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 438d150..f6e3825 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -196,7 +196,7 @@ libkrb5support0 1.19.2-2ubunt libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.1 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.2 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb From 5f8dd97bd411703a99c2c91a7780d5e510688b56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jul 2023 19:09:35 +0000 Subject: [PATCH 1718/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5ba2e03..229fca4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230711.2-unstable deb +jellyfin-web 20230711.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 52d245b4fca1ff8265c338cc37bed4b883f56284 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Jul 2023 02:28:09 +0000 Subject: [PATCH 1719/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 229fca4..a542165 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230711.8-unstable deb +jellyfin-web 20230711.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 0e8e6a801bfe08e07ca05ee725039c7ff4aca346 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Jul 2023 23:11:26 +0000 Subject: [PATCH 1720/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a542165..46b2284 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230711.9-unstable deb +jellyfin-web 20230712.30-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c5b4201b3c376cc59f7ce484772b02dfc9374ab8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Jul 2023 06:14:07 +0000 Subject: [PATCH 1721/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 46b2284..c4579ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230712.30-unstable deb +jellyfin-web 20230712.31-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 22e909740d7e1123a04f89ad278320a002d02e8b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Jul 2023 12:19:53 +0000 Subject: [PATCH 1722/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4579ce..cc39fa7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230712.31-unstable deb +jellyfin-web 20230713.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From ed2a7bcf7222458fa68270f10c4b433c307e3855 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Jul 2023 02:29:04 +0000 Subject: [PATCH 1723/2257] 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 cc39fa7..d93ed8b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230710.3-unstable deb -jellyfin-web 20230713.3-unstable deb +jellyfin-server 20230713.4-unstable deb +jellyfin-web 20230713.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 219ac96f0a7b31e3f6d7607703ce06e0596648c3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Jul 2023 09:11:14 +0000 Subject: [PATCH 1724/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d93ed8b..d752c5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230713.4-unstable deb -jellyfin-web 20230713.16-unstable deb +jellyfin-web 20230714.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 99ecdfb8eabef2526274e34ca1dde895c30bf59b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Jul 2023 16:13:28 +0000 Subject: [PATCH 1725/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d752c5b..968d6ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230713.4-unstable deb -jellyfin-web 20230714.1-unstable deb +jellyfin-web 20230714.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 99ba42d7b3bd59aa1a672f7d3929090f79f05346 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Jul 2023 23:12:40 +0000 Subject: [PATCH 1726/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 968d6ca..4dfb2cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230713.4-unstable deb -jellyfin-web 20230714.8-unstable deb +jellyfin-web 20230714.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 3d68e28bedfcbf640b8b8624c4ceeaff8152be68 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Jul 2023 06:14:34 +0000 Subject: [PATCH 1727/2257] 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 4dfb2cf..de2e245 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230713.4-unstable deb -jellyfin-web 20230714.11-unstable deb +jellyfin-server 20230715.1-unstable deb +jellyfin-web 20230715.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From d2c6fccc0ce98c4a5a016f6c7438e6b5a8883445 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Jul 2023 20:10:54 +0000 Subject: [PATCH 1728/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index de2e245..41ff969 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230715.1-unstable deb -jellyfin-web 20230715.1-unstable deb +jellyfin-web 20230715.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From d40dc8adcf1ab4790016cb564475b61bc4880b02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Jul 2023 02:50:47 +0000 Subject: [PATCH 1729/2257] 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 41ff969..29b919f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230715.1-unstable deb -jellyfin-web 20230715.4-unstable deb +jellyfin-server 20230715.4-unstable deb +jellyfin-web 20230715.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e27dc7d64ff4f5f97c582984fb112ea54ec8b4b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Jul 2023 16:12:08 +0000 Subject: [PATCH 1730/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 29b919f..6a8f7d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230715.4-unstable deb -jellyfin-web 20230715.5-unstable deb +jellyfin-web 20230716.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 058405daa48d2c4ff73cfdea1cb6c3cb30a65755 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Jul 2023 23:12:17 +0000 Subject: [PATCH 1731/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6a8f7d5..6f30c9c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230715.4-unstable deb -jellyfin-web 20230716.1-unstable deb +jellyfin-web 20230716.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From f4cb39d0d9a086f1137523f163c74758846e1447 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Jul 2023 06:14:38 +0000 Subject: [PATCH 1732/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6f30c9c..c40aad5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230715.4-unstable deb -jellyfin-web 20230716.2-unstable deb +jellyfin-web 20230716.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 8ffb6e9cbedf9ab049b9a1180e5491d38b6bd8dd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Jul 2023 12:22:12 +0000 Subject: [PATCH 1733/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c40aad5..497f885 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230715.4-unstable deb -jellyfin-web 20230716.4-unstable deb +jellyfin-web 20230717.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 3c02acdd3b6321bbf8656c453eb39a601d18de8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Jul 2023 19:09:39 +0000 Subject: [PATCH 1734/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 497f885..83f2b8f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230715.4-unstable deb +jellyfin-server 20230717.2-unstable deb jellyfin-web 20230717.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 5ebd68c6a5527065c0b894f014b498d83eaf7062 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Jul 2023 02:59:38 +0000 Subject: [PATCH 1735/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 83f2b8f..24800f5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230717.2-unstable deb -jellyfin-web 20230717.2-unstable deb +jellyfin-web 20230718.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From c964f47a27a4723b1896626b6f527932960eeb13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 18 Jul 2023 12:48:32 +0000 Subject: [PATCH 1736/2257] 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 24800f5..3dd399c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230717.2-unstable deb +jellyfin-server 20230718.5-unstable deb jellyfin-web 20230718.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -348,7 +348,7 @@ passwd 1 perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb procps 2:3.3.17-6ubuntu2 deb -prometheus-net 8.0.0 dotnet +prometheus-net 8.0.1 dotnet prometheus-net.AspNetCore 8.0.0 dotnet prometheus-net.DotNetRuntime 4.4.0 dotnet publicsuffix 20211207.1025-1 deb From 0dda1a565f365c587a6f0f3edf31fe81599559e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Jul 2023 01:21:32 +0000 Subject: [PATCH 1737/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3dd399c..e9b03bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230718.5-unstable deb -jellyfin-web 20230718.1-unstable deb +jellyfin-web 20230718.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From b48fc95684f3b187a59321da2bd17d2dd5cfd408 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 20 Jul 2023 11:11:09 +0000 Subject: [PATCH 1738/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e9b03bf..b7fd903 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230718.5-unstable deb -jellyfin-web 20230718.6-unstable deb +jellyfin-web 20230720.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e1fc32370659f84400454123554da3487e8e1df7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 20 Jul 2023 18:12:05 +0000 Subject: [PATCH 1739/2257] 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 b7fd903..8a14b5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -89,7 +89,7 @@ Serilog.Sinks.Async 1 Serilog.Sinks.Console 4.1.0 dotnet Serilog.Sinks.Debug 2.0.0 dotnet Serilog.Sinks.File 5.0.0 dotnet -Serilog.Sinks.Graylog 3.0.1 dotnet +Serilog.Sinks.Graylog 3.0.2 dotnet SkiaSharp 2.88.3 dotnet SkiaSharp.HarfBuzz 2.88.3 dotnet SkiaSharp.NativeAssets.Linux 2.88.3 dotnet @@ -186,8 +186,8 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230718.5-unstable deb -jellyfin-web 20230720.2-unstable deb +jellyfin-server 20230720.3-unstable deb +jellyfin-web 20230720.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e1dd0979abec0b7680f437fdc88a8ab52b9144eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 21 Jul 2023 00:47:47 +0000 Subject: [PATCH 1740/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8a14b5e..1302d9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230720.3-unstable deb +jellyfin-server 20230720.4-unstable deb jellyfin-web 20230720.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From b409f8948bff2198bde3f4c4b5e3340a23e0e476 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 21 Jul 2023 20:12:02 +0000 Subject: [PATCH 1741/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1302d9b..fd7ca8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230720.4-unstable deb -jellyfin-web 20230720.5-unstable deb +jellyfin-web 20230721.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 697fa96d2c23f182a93ad8ed7494e0df077956da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jul 2023 02:08:30 +0000 Subject: [PATCH 1742/2257] 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 fd7ca8c..0afc122 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -159,7 +159,7 @@ bash 5 bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.10 deb +curl 7.81.0-1ubuntu1.13 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -208,7 +208,7 @@ libcap-ng0 0 libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.10 deb +libcurl4 7.81.0-1ubuntu1.13 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb From 15a0e2ba5a176e69c93bf47d559ae4fd8d5730b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Jul 2023 11:09:12 +0000 Subject: [PATCH 1743/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0afc122..c4a8e82 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -244,7 +244,7 @@ libkrb5support0 1 libksba8 1.6.0-2ubuntu0.2 deb libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb From f57d6a91bb24734a31283190e34d2c58f4c1d0de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Jul 2023 07:09:39 +0000 Subject: [PATCH 1744/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4a8e82..b2007eb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ hostname 3 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230720.4-unstable deb -jellyfin-web 20230721.7-unstable deb +jellyfin-web 20230728.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From fcf215009e30a7fdcb0397751e947f80a1819547 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 09:08:59 +0000 Subject: [PATCH 1745/2257] 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 b2007eb..399599d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,20 +21,20 @@ LrcParser 2 MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore.Authorization 7.0.8 dotnet +Microsoft.AspNetCore.Authorization 7.0.9 dotnet Microsoft.AspNetCore.Http.Abstractions 2.2.0 dotnet Microsoft.AspNetCore.Http.Extensions 2.2.0 dotnet Microsoft.AspNetCore.Http.Features 2.2.0 dotnet Microsoft.AspNetCore.HttpOverrides 2.2.0 dotnet -Microsoft.AspNetCore.Metadata 7.0.8 dotnet +Microsoft.AspNetCore.Metadata 7.0.9 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 7.0.8 dotnet -Microsoft.EntityFrameworkCore 7.0.8 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.8 dotnet -Microsoft.EntityFrameworkCore.Analyzers 7.0.8 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.8 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.8 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.8 dotnet +Microsoft.Data.Sqlite.Core 7.0.9 dotnet +Microsoft.EntityFrameworkCore 7.0.9 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.9 dotnet +Microsoft.EntityFrameworkCore.Analyzers 7.0.9 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.9 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.9 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.9 dotnet Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet Microsoft.Extensions.Caching.Memory 7.0.0 dotnet @@ -47,9 +47,9 @@ Microsoft.Extensions.Configuration.Json 7 Microsoft.Extensions.DependencyInjection 7.0.0 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet Microsoft.Extensions.DependencyModel 7.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.8 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.8 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.8 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.9 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.9 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.9 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230720.4-unstable deb +jellyfin-server 20230729.6-unstable deb jellyfin-web 20230728.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 7a6e8a57dab1fb98dd9e273bcb6c6bff80076759 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 16:12:26 +0000 Subject: [PATCH 1746/2257] 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 399599d..bf3b587 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230729.6-unstable deb +jellyfin-server 20230729.10-unstable deb jellyfin-web 20230728.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -349,7 +349,7 @@ perl-base 5 pinentry-curses 1.1.1-1build2 deb procps 2:3.3.17-6ubuntu2 deb prometheus-net 8.0.1 dotnet -prometheus-net.AspNetCore 8.0.0 dotnet +prometheus-net.AspNetCore 8.0.1 dotnet prometheus-net.DotNetRuntime 4.4.0 dotnet publicsuffix 20211207.1025-1 deb readline-common 8.1.2-1 deb From 0902b443e9ce3f624fcc688297274c5bdb537843 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 23:10:44 +0000 Subject: [PATCH 1747/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bf3b587..f4cfca0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -186,7 +186,7 @@ gzip 1 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230729.10-unstable deb +jellyfin-server 20230729.14-unstable deb jellyfin-web 20230728.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 9d1e88178560f701e5373fb7389970b799da3d18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 31 Jul 2023 22:12:05 +0000 Subject: [PATCH 1748/2257] Bot Updating Package Versions --- package_versions.txt | 1001 +++++++++++++++++++++++++----------------- 1 file changed, 600 insertions(+), 401 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f4cfca0..131ee8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,401 +1,600 @@ -NAME VERSION TYPE -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.3.0 dotnet -BlurHashSharp.SkiaSharp 1.3.0 dotnet -CacheManager.Core 1.2.0 dotnet -CommandLineParser 2.9.1 dotnet -Diacritics 3.3.18 dotnet -DiscUtils.Core 0.16.13 dotnet -DiscUtils.Iso9660 0.16.13 dotnet -DiscUtils.Streams 0.16.13 dotnet -DiscUtils.Udf 0.16.13 dotnet -DotNet.Glob 3.1.3 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.2 dotnet -EasyCaching.Core 1.8.0 dotnet -HarfBuzzSharp 2.8.2.3 dotnet -HarfBuzzSharp.NativeAssets.Linux 2.8.2.3 dotnet -HarfBuzzSharp.NativeAssets.Win32 2.8.2.3 dotnet -HarfBuzzSharp.NativeAssets.macOS 2.8.2.3 dotnet -Jellyfin.XmlTv 10.8.0 dotnet -LrcParser 2023.524.0 dotnet -MetaBrainz.Common 1.0.0 dotnet -MetaBrainz.Common.Json 5.1.0 dotnet -MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore.Authorization 7.0.9 dotnet -Microsoft.AspNetCore.Http.Abstractions 2.2.0 dotnet -Microsoft.AspNetCore.Http.Extensions 2.2.0 dotnet -Microsoft.AspNetCore.Http.Features 2.2.0 dotnet -Microsoft.AspNetCore.HttpOverrides 2.2.0 dotnet -Microsoft.AspNetCore.Metadata 7.0.9 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 7.0.9 dotnet -Microsoft.EntityFrameworkCore 7.0.9 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.9 dotnet -Microsoft.EntityFrameworkCore.Analyzers 7.0.9 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.9 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.9 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 7.0.9 dotnet -Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet -Microsoft.Extensions.Caching.Abstractions 7.0.0 dotnet -Microsoft.Extensions.Caching.Memory 7.0.0 dotnet -Microsoft.Extensions.Configuration 7.0.0 dotnet -Microsoft.Extensions.Configuration.Abstractions 7.0.0 dotnet -Microsoft.Extensions.Configuration.Binder 7.0.4 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.0 dotnet -Microsoft.Extensions.Configuration.FileExtensions 7.0.0 dotnet -Microsoft.Extensions.Configuration.Json 7.0.0 dotnet -Microsoft.Extensions.DependencyInjection 7.0.0 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet -Microsoft.Extensions.DependencyModel 7.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.9 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.9 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.9 dotnet -Microsoft.Extensions.FileProviders.Abstractions 7.0.0 dotnet -Microsoft.Extensions.FileProviders.Physical 7.0.0 dotnet -Microsoft.Extensions.FileSystemGlobbing 7.0.0 dotnet -Microsoft.Extensions.Hosting.Abstractions 7.0.0 dotnet -Microsoft.Extensions.Http 7.0.0 dotnet -Microsoft.Extensions.Logging 7.0.0 dotnet -Microsoft.Extensions.Logging.Abstractions 7.0.1 dotnet -Microsoft.Extensions.ObjectPool 7.0.0 dotnet -Microsoft.Extensions.Options 7.0.1 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet -Microsoft.Extensions.Primitives 7.0.0 dotnet -Microsoft.NETCore.Platforms 5.0.0 dotnet -Microsoft.NETCore.Targets 1.1.0 dotnet -Microsoft.Net.Http.Headers 2.2.0 dotnet -Microsoft.OpenApi 1.2.3 dotnet -Microsoft.Win32.Primitives 4.3.0 dotnet -Microsoft.Win32.Registry 5.0.0 dotnet -Microsoft.Win32.SystemEvents 6.0.0 dotnet -Mono.Nat 3.0.4 dotnet -NEbml 0.11.0 dotnet -NeoSmart.AsyncLock 3.2.1 dotnet -Newtonsoft.Json 13.0.3 dotnet -PlaylistsNET 1.4.0 dotnet -SQLitePCL.pretty.netstandard 3.1.0 dotnet -SQLitePCLRaw.bundle_e_sqlite3 2.1.5 dotnet -SQLitePCLRaw.core 2.1.5 dotnet -SQLitePCLRaw.lib.e_sqlite3 2.1.5 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.5 dotnet -Serilog 2.12.0 dotnet -Serilog.AspNetCore 7.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0 dotnet -Serilog.Extensions.Hosting 7.0.0 dotnet -Serilog.Extensions.Logging 7.0.0 dotnet -Serilog.Formatting.Compact 1.1.0 dotnet -Serilog.Settings.Configuration 7.0.0 dotnet -Serilog.Sinks.Async 1.5.0 dotnet -Serilog.Sinks.Console 4.1.0 dotnet -Serilog.Sinks.Debug 2.0.0 dotnet -Serilog.Sinks.File 5.0.0 dotnet -Serilog.Sinks.Graylog 3.0.2 dotnet -SkiaSharp 2.88.3 dotnet -SkiaSharp.HarfBuzz 2.88.3 dotnet -SkiaSharp.NativeAssets.Linux 2.88.3 dotnet -SkiaSharp.NativeAssets.Win32 2.88.3 dotnet -SkiaSharp.NativeAssets.macOS 2.88.3 dotnet -SkiaSharp.Svg 1.60.0 dotnet -Swashbuckle.AspNetCore 6.2.3 dotnet -Swashbuckle.AspNetCore.ReDoc 6.4.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet -System.Buffers 4.5.0 dotnet -System.Collections 4.3.0 dotnet -System.Collections.Concurrent 4.3.0 dotnet -System.Diagnostics.Debug 4.3.0 dotnet -System.Diagnostics.DiagnosticSource 6.0.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.FileSystem 4.3.0 dotnet -System.IO.FileSystem.Primitives 4.3.0 dotnet -System.Linq 4.3.0 dotnet -System.Linq.Async 6.0.1 dotnet -System.Memory 4.5.4 dotnet -System.Net.Http 4.3.4 dotnet -System.Net.Primitives 4.3.0 dotnet -System.Private.Uri 4.3.0 dotnet -System.Reflection 4.3.0 dotnet -System.Reflection.Primitives 4.3.0 dotnet -System.Resources.ResourceManager 4.3.0 dotnet -System.Runtime 4.3.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.Numerics 4.3.0 dotnet -System.Security.AccessControl 5.0.0 dotnet -System.Security.Cryptography.Algorithms 4.3.0 dotnet -System.Security.Cryptography.Cng 4.3.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.Primitives 4.3.0 dotnet -System.Security.Cryptography.X509Certificates 4.3.0 dotnet -System.Security.Principal.Windows 5.0.0 dotnet -System.Text.Encoding 4.3.0 dotnet -System.Text.Encoding.CodePages 7.0.0 dotnet -System.Text.Encoding.Extensions 4.3.0 dotnet -System.Text.Encodings.Web 7.0.0 dotnet -System.Text.Json 7.0.3 dotnet -System.Threading 4.3.0 dotnet -System.Threading.Tasks 4.3.0 dotnet -System.Threading.Tasks.Dataflow 7.0.0 dotnet -TMDbLib 2.0.0 dotnet -TagLibSharp 2.3.0 dotnet -UTF.Unknown 2.5.1 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.9 deb -apt-utils 2.4.9 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.13 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230729.14-unstable deb -jellyfin-web 20230728.2-unstable deb -jq 1.6-2.1ubuntu3 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.9 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.13 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1build3 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.13 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2 deb -libwebp7 1.2.2-2ubuntu0.22.04.1 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb -libx11-6 2:1.7.5-1ubuntu0.2 deb -libx11-data 2:1.7.5-1ubuntu0.2 deb -libx11-xcb1 2:1.7.5-1ubuntu0.2 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.1 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb -mount 2.37.2-4ubuntu3 deb -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.10 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheus-net 8.0.1 dotnet -prometheus-net.AspNetCore 8.0.1 dotnet -prometheus-net.DotNetRuntime 4.4.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -runtime.any.System.Collections 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.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.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.native.System 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.2 dotnet -runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 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.2 dotnet -runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 dotnet -runtime.unix.Microsoft.Win32.Primitives 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.Private.Uri 4.3.0 dotnet -runtime.unix.System.Runtime.Extensions 4.3.0 dotnet -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -zlib.net-mutliplatform 1.0.6 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE + 10.9.0 dotnet + 8.0.1 dotnet +AsyncLock 3.2.1.0 dotnet +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CacheManager.Core 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +Diacritics 3.3.18 dotnet +DiscUtils (for .NET and .NET Core), core library that supports parts of DiscUtils 0.16.13.55129 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DotNet.Glob 1.0.0.0 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.2.0 dotnet +EasyCaching.Core 1.8.0.0 dotnet +Emby.Dlna 10.9.0 dotnet +Emby.Naming 10.9.0 dotnet +Emby.Photos 10.9.0 dotnet +Emby.Server.Implementations 10.9.0 dotnet +HarfBuzzSharp 2.8.2.3 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Drawing 10.9.0 dotnet +Jellyfin.Drawing.Skia 10.9.0 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Server 10.9.0 dotnet +Jellyfin.Server.Implementations 10.9.0 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET .NET 6.0 13.0.3.27908 dotnet +LrcParser 2023.524.0.0 dotnet +MediaBrowser.Common 10.9.0 dotnet +MediaBrowser.Controller 10.9.0 dotnet +MediaBrowser.LocalMetadata 10.9.0 dotnet +MediaBrowser.MediaEncoding 10.9.0 dotnet +MediaBrowser.Model 10.9.0 dotnet +MediaBrowser.Providers 10.9.0 dotnet +MediaBrowser.XbmcMetadata 10.9.0 dotnet +MetaBrainz.Common 1.0.0 dotnet +MetaBrainz.Common.Json 5.1.0 dotnet +MetaBrainz.MusicBrainz 5.0.0 dotnet +Microsoft.AspNetCore 7.0.923.32110 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authentication 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authorization 7.0.923.32110 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.923.32110 dotnet +Microsoft.AspNetCore.Components 7.0.923.32110 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.923.32110 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.923.32110 dotnet +Microsoft.AspNetCore.Components.Server 7.0.923.32110 dotnet +Microsoft.AspNetCore.Components.Web 7.0.923.32110 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.923.32110 dotnet +Microsoft.AspNetCore.Cors 7.0.923.32110 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.923.32110 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.923.32110 dotnet +Microsoft.AspNetCore.DataProtection 7.0.923.32110 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.923.32110 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.923.32110 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.923.32110 dotnet +Microsoft.AspNetCore.Hosting 7.0.923.32110 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http.Features 7.0.923.32110 dotnet +Microsoft.AspNetCore.Http.Results 7.0.923.32110 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.923.32110 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.923.32110 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.923.32110 dotnet +Microsoft.AspNetCore.Identity 7.0.923.32110 dotnet +Microsoft.AspNetCore.Localization 7.0.923.32110 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.923.32110 dotnet +Microsoft.AspNetCore.Metadata 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.923.32110 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.923.32110 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.923.32110 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.923.32110 dotnet +Microsoft.AspNetCore.Razor 7.0.923.32110 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.923.32110 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.923.32110 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.923.32110 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.923.32110 dotnet +Microsoft.AspNetCore.Rewrite 7.0.923.32110 dotnet +Microsoft.AspNetCore.Routing 7.0.923.32110 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.923.32110 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.923.32110 dotnet +Microsoft.AspNetCore.Session 7.0.923.32110 dotnet +Microsoft.AspNetCore.SignalR 7.0.923.32110 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.923.32110 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.923.32110 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.923.32110 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.923.32110 dotnet +Microsoft.AspNetCore.WebSockets 7.0.923.32110 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.923.32110 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 7.0.923.32018 dotnet +Microsoft.Data.Sqlite 7.0.923.31909 dotnet +Microsoft.EntityFrameworkCore 7.0.923.31909 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.923.31909 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.923.31909 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.923.31909 dotnet +Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet +Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.923.32110 dotnet +Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.923.32110 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.923.32110 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.923.32110 dotnet +Microsoft.Extensions.Features 7.0.923.32110 dotnet +Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.923.32110 dotnet +Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet +Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet +Microsoft.Extensions.Hosting 7.0.323.6910 dotnet +Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Http 7.0.22.51805 dotnet +Microsoft.Extensions.Identity.Core 7.0.923.32110 dotnet +Microsoft.Extensions.Identity.Stores 7.0.923.32110 dotnet +Microsoft.Extensions.Localization 7.0.923.32110 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.923.32110 dotnet +Microsoft.Extensions.Logging 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet +Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet +Microsoft.Extensions.ObjectPool 7.0.923.32110 dotnet +Microsoft.Extensions.Options 7.0.323.6910 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet +Microsoft.Extensions.Primitives 7.0.22.51805 dotnet +Microsoft.Extensions.WebEncoders 7.0.923.32110 dotnet +Microsoft.JSInterop 7.0.923.32110 dotnet +Microsoft.Net.Http.Headers 7.0.923.32110 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 7.0.923.32018 dotnet +Microsoft.VisualBasic.Core 12.0.923.32018 dotnet +Microsoft.Win32.Primitives 7.0.923.32018 dotnet +Microsoft.Win32.Registry 7.0.923.32018 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +Mono.Nat 3.0.4 dotnet +NEbml.Core 0.11.0.0 dotnet +PlaylistsNET 1.4.0.0 dotnet +RSSDP 2019.1.20.3 dotnet +SQLitePCL.pretty 1.0.0 dotnet +SQLitePCLRaw.batteries_v2 2.1.5.1964 dotnet +SQLitePCLRaw.core 2.1.5.1964 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.5.1964 dotnet +Serilog 2.12.0.0 dotnet +Serilog.AspNetCore 7.0.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 7.0.0.0 dotnet +Serilog.Extensions.Logging 7.0.0.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 7.0.0.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 4.1.0.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 3.0.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +SkiaSharp 2.88.3.0 dotnet +SkiaSharp.Extended.Svg 1.60.0.0 dotnet +SkiaSharp.HarfBuzz 2.88.3.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.4.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 7.0.923.32018 dotnet +System.AppContext 7.0.923.32018 dotnet +System.Buffers 7.0.923.32018 dotnet +System.Collections 7.0.923.32018 dotnet +System.Collections.Concurrent 7.0.923.32018 dotnet +System.Collections.Immutable 7.0.923.32018 dotnet +System.Collections.NonGeneric 7.0.923.32018 dotnet +System.Collections.Specialized 7.0.923.32018 dotnet +System.ComponentModel 7.0.923.32018 dotnet +System.ComponentModel.Annotations 7.0.923.32018 dotnet +System.ComponentModel.DataAnnotations 7.0.923.32018 dotnet +System.ComponentModel.EventBasedAsync 7.0.923.32018 dotnet +System.ComponentModel.Primitives 7.0.923.32018 dotnet +System.ComponentModel.TypeConverter 7.0.923.32018 dotnet +System.Configuration 7.0.923.32018 dotnet +System.Console 7.0.923.32018 dotnet +System.Core 7.0.923.32018 dotnet +System.Data 7.0.923.32018 dotnet +System.Data.Common 7.0.923.32018 dotnet +System.Data.DataSetExtensions 7.0.923.32018 dotnet +System.Diagnostics.Contracts 7.0.923.32018 dotnet +System.Diagnostics.Debug 7.0.923.32018 dotnet +System.Diagnostics.DiagnosticSource 7.0.923.32018 dotnet +System.Diagnostics.EventLog 7.0.22.51805 dotnet +System.Diagnostics.FileVersionInfo 7.0.923.32018 dotnet +System.Diagnostics.Process 7.0.923.32018 dotnet +System.Diagnostics.StackTrace 7.0.923.32018 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.923.32018 dotnet +System.Diagnostics.Tools 7.0.923.32018 dotnet +System.Diagnostics.TraceSource 7.0.923.32018 dotnet +System.Diagnostics.Tracing 7.0.923.32018 dotnet +System.Drawing 7.0.923.32018 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 7.0.923.32018 dotnet +System.Dynamic.Runtime 7.0.923.32018 dotnet +System.Formats.Asn1 7.0.923.32018 dotnet +System.Formats.Tar 7.0.923.32018 dotnet +System.Globalization 7.0.923.32018 dotnet +System.Globalization.Calendars 7.0.923.32018 dotnet +System.Globalization.Extensions 7.0.923.32018 dotnet +System.IO 7.0.923.32018 dotnet +System.IO.Compression 7.0.923.32018 dotnet +System.IO.Compression.Brotli 7.0.923.32018 dotnet +System.IO.Compression.FileSystem 7.0.923.32018 dotnet +System.IO.Compression.ZipFile 7.0.923.32018 dotnet +System.IO.FileSystem 7.0.923.32018 dotnet +System.IO.FileSystem.AccessControl 7.0.923.32018 dotnet +System.IO.FileSystem.DriveInfo 7.0.923.32018 dotnet +System.IO.FileSystem.Primitives 7.0.923.32018 dotnet +System.IO.FileSystem.Watcher 7.0.923.32018 dotnet +System.IO.IsolatedStorage 7.0.923.32018 dotnet +System.IO.MemoryMappedFiles 7.0.923.32018 dotnet +System.IO.Pipelines 7.0.22.51805 dotnet +System.IO.Pipes 7.0.923.32018 dotnet +System.IO.Pipes.AccessControl 7.0.923.32018 dotnet +System.IO.UnmanagedMemoryStream 7.0.923.32018 dotnet +System.Linq 7.0.923.32018 dotnet +System.Linq.Async 6.0.1.35981 dotnet +System.Linq.Expressions 7.0.923.32018 dotnet +System.Linq.Parallel 7.0.923.32018 dotnet +System.Linq.Queryable 7.0.923.32018 dotnet +System.Memory 7.0.923.32018 dotnet +System.Net 7.0.923.32018 dotnet +System.Net.Http 7.0.923.32018 dotnet +System.Net.Http.Json 7.0.923.32018 dotnet +System.Net.HttpListener 7.0.923.32018 dotnet +System.Net.Mail 7.0.923.32018 dotnet +System.Net.NameResolution 7.0.923.32018 dotnet +System.Net.NetworkInformation 7.0.923.32018 dotnet +System.Net.Ping 7.0.923.32018 dotnet +System.Net.Primitives 7.0.923.32018 dotnet +System.Net.Quic 7.0.923.32018 dotnet +System.Net.Requests 7.0.923.32018 dotnet +System.Net.Security 7.0.923.32018 dotnet +System.Net.ServicePoint 7.0.923.32018 dotnet +System.Net.Sockets 7.0.923.32018 dotnet +System.Net.WebClient 7.0.923.32018 dotnet +System.Net.WebHeaderCollection 7.0.923.32018 dotnet +System.Net.WebProxy 7.0.923.32018 dotnet +System.Net.WebSockets 7.0.923.32018 dotnet +System.Net.WebSockets.Client 7.0.923.32018 dotnet +System.Numerics 7.0.923.32018 dotnet +System.Numerics.Vectors 7.0.923.32018 dotnet +System.ObjectModel 7.0.923.32018 dotnet +System.Private.CoreLib 7.0.923.32018 dotnet +System.Private.DataContractSerialization 7.0.923.32018 dotnet +System.Private.Uri 7.0.923.32018 dotnet +System.Private.Xml 7.0.923.32018 dotnet +System.Private.Xml.Linq 7.0.923.32018 dotnet +System.Reflection 7.0.923.32018 dotnet +System.Reflection.DispatchProxy 7.0.923.32018 dotnet +System.Reflection.Emit 7.0.923.32018 dotnet +System.Reflection.Emit.ILGeneration 7.0.923.32018 dotnet +System.Reflection.Emit.Lightweight 7.0.923.32018 dotnet +System.Reflection.Extensions 7.0.923.32018 dotnet +System.Reflection.Metadata 7.0.923.32018 dotnet +System.Reflection.Primitives 7.0.923.32018 dotnet +System.Reflection.TypeExtensions 7.0.923.32018 dotnet +System.Resources.Reader 7.0.923.32018 dotnet +System.Resources.ResourceManager 7.0.923.32018 dotnet +System.Resources.Writer 7.0.923.32018 dotnet +System.Runtime 7.0.923.32018 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.923.32018 dotnet +System.Runtime.CompilerServices.VisualC 7.0.923.32018 dotnet +System.Runtime.Extensions 7.0.923.32018 dotnet +System.Runtime.Handles 7.0.923.32018 dotnet +System.Runtime.InteropServices 7.0.923.32018 dotnet +System.Runtime.InteropServices.JavaScript 7.0.923.32018 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.923.32018 dotnet +System.Runtime.Intrinsics 7.0.923.32018 dotnet +System.Runtime.Loader 7.0.923.32018 dotnet +System.Runtime.Numerics 7.0.923.32018 dotnet +System.Runtime.Serialization 7.0.923.32018 dotnet +System.Runtime.Serialization.Formatters 7.0.923.32018 dotnet +System.Runtime.Serialization.Json 7.0.923.32018 dotnet +System.Runtime.Serialization.Primitives 7.0.923.32018 dotnet +System.Runtime.Serialization.Xml 7.0.923.32018 dotnet +System.Security 7.0.923.32018 dotnet +System.Security.AccessControl 7.0.923.32018 dotnet +System.Security.Claims 7.0.923.32018 dotnet +System.Security.Cryptography 7.0.923.32018 dotnet +System.Security.Cryptography.Algorithms 7.0.923.32018 dotnet +System.Security.Cryptography.Cng 7.0.923.32018 dotnet +System.Security.Cryptography.Csp 7.0.923.32018 dotnet +System.Security.Cryptography.Encoding 7.0.923.32018 dotnet +System.Security.Cryptography.OpenSsl 7.0.923.32018 dotnet +System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet +System.Security.Cryptography.Primitives 7.0.923.32018 dotnet +System.Security.Cryptography.X509Certificates 7.0.923.32018 dotnet +System.Security.Cryptography.Xml 7.0.222.60605 dotnet +System.Security.Principal 7.0.923.32018 dotnet +System.Security.Principal.Windows 7.0.923.32018 dotnet +System.Security.SecureString 7.0.923.32018 dotnet +System.ServiceModel.Web 7.0.923.32018 dotnet +System.ServiceProcess 7.0.923.32018 dotnet +System.Text.Encoding 7.0.923.32018 dotnet +System.Text.Encoding.CodePages 7.0.923.32018 dotnet +System.Text.Encoding.Extensions 7.0.923.32018 dotnet +System.Text.Encodings.Web 7.0.923.32018 dotnet +System.Text.Json 7.0.923.32018 dotnet +System.Text.RegularExpressions 7.0.923.32018 dotnet +System.Threading 7.0.923.32018 dotnet +System.Threading.Channels 7.0.923.32018 dotnet +System.Threading.Overlapped 7.0.923.32018 dotnet +System.Threading.RateLimiting 7.0.22.51805 dotnet +System.Threading.Tasks 7.0.923.32018 dotnet +System.Threading.Tasks.Dataflow 7.0.923.32018 dotnet +System.Threading.Tasks.Extensions 7.0.923.32018 dotnet +System.Threading.Tasks.Parallel 7.0.923.32018 dotnet +System.Threading.Thread 7.0.923.32018 dotnet +System.Threading.ThreadPool 7.0.923.32018 dotnet +System.Threading.Timer 7.0.923.32018 dotnet +System.Transactions 7.0.923.32018 dotnet +System.Transactions.Local 7.0.923.32018 dotnet +System.ValueTuple 7.0.923.32018 dotnet +System.Web 7.0.923.32018 dotnet +System.Web.HttpUtility 7.0.923.32018 dotnet +System.Windows 7.0.923.32018 dotnet +System.Xml 7.0.923.32018 dotnet +System.Xml.Linq 7.0.923.32018 dotnet +System.Xml.ReaderWriter 7.0.923.32018 dotnet +System.Xml.Serialization 7.0.923.32018 dotnet +System.Xml.XDocument 7.0.923.32018 dotnet +System.Xml.XPath 7.0.923.32018 dotnet +System.Xml.XPath.XDocument 7.0.923.32018 dotnet +System.Xml.XmlDocument 7.0.923.32018 dotnet +System.Xml.XmlSerializer 7.0.923.32018 dotnet +TMDb Library 2.0.0.0 dotnet +TagLibSharp 2.3.0.0 dotnet +UTF Unknown 2.0.664 dotnet +WindowsBase 7.0.923.32018 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.9 deb +apt-utils 2.4.9 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +curl 7.81.0-1ubuntu1.13 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg5 5.1.3-3-jammy deb +jellyfin-server 20230729.14-unstable deb +jellyfin-web 20230728.2-unstable deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.9 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.13 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1build3 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.13.2 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2 deb +libwebp7 1.2.2-2ubuntu0.22.04.1 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb +libx11-6 2:1.7.5-1ubuntu0.2 deb +libx11-data 2:1.7.5-1ubuntu0.2 deb +libx11-xcb1 2:1.7.5-1ubuntu0.2 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.1 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 7.0.923.32018 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 7.0.923.32018 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.10 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net.DotNetRuntime 4.4.0.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +zlib.net 1.0.6.0 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 80f5e946539b294dfc1487b81c26074e2cc3d20c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Aug 2023 05:10:17 +0000 Subject: [PATCH 1749/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 131ee8c..cdc6d8f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230729.14-unstable deb -jellyfin-web 20230728.2-unstable deb +jellyfin-web 20230731.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From d81909152d4d7648169e2a271e078e6f5d6775da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Aug 2023 12:46:21 +0000 Subject: [PATCH 1750/2257] Bot Updating Package Versions --- package_versions.txt | 911 ++++++++++++++++++++++++++++--------------- 1 file changed, 587 insertions(+), 324 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f6e3825..18ac815 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,324 +1,587 @@ -NAME VERSION TYPE -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0 dotnet -CommandLineParser 2.9.1 dotnet -DiscUtils.Core 0.16.13 dotnet -DiscUtils.Iso9660 0.16.13 dotnet -DiscUtils.Streams 0.16.13 dotnet -DiscUtils.Udf 0.16.13 dotnet -DotNet.Glob 3.1.3 dotnet -Jellyfin.XmlTv 10.8.0 dotnet -Microsoft.AspNetCore.Authorization 6.0.9 dotnet -Microsoft.AspNetCore.Metadata 6.0.9 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 6.0.9 dotnet -Microsoft.EntityFrameworkCore 6.0.9 dotnet -Microsoft.EntityFrameworkCore.Abstractions 6.0.9 dotnet -Microsoft.EntityFrameworkCore.Analyzers 6.0.9 dotnet -Microsoft.EntityFrameworkCore.Relational 6.0.9 dotnet -Microsoft.EntityFrameworkCore.Sqlite 6.0.9 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 6.0.9 dotnet -Microsoft.Extensions.ApiDescription.Server 3.0.0 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Caching.Memory 6.0.1 dotnet -Microsoft.Extensions.Configuration 6.0.0 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Configuration.Binder 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.DependencyInjection 6.0.0 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet -Microsoft.Extensions.DependencyModel 6.0.0 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.9 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.9 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.9 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.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Http 6.0.0 dotnet -Microsoft.Extensions.Logging 6.0.0 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.2 dotnet -Microsoft.Extensions.Options 6.0.0 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 2.0.0 dotnet -Microsoft.Extensions.Primitives 6.0.0 dotnet -Microsoft.NETCore.Platforms 5.0.0 dotnet -Microsoft.NETCore.Targets 1.1.0 dotnet -Microsoft.OpenApi 1.2.3 dotnet -Microsoft.Win32.Registry 5.0.0 dotnet -Microsoft.Win32.SystemEvents 5.0.0 dotnet -Mono.Nat 3.0.3 dotnet -NEbml 0.11.0 dotnet -Newtonsoft.Json 13.0.1 dotnet -OptimizedPriorityQueue 5.1.0 dotnet -PlaylistsNET 1.2.1 dotnet -SQLitePCL.pretty.netstandard 3.1.0 dotnet -SQLitePCLRaw.bundle_e_sqlite3 2.1.0 dotnet -SQLitePCLRaw.core 2.1.0 dotnet -SQLitePCLRaw.lib.e_sqlite3 2.1.0 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.0 dotnet -Serilog 2.10.0 dotnet -Serilog.AspNetCore 4.1.0 dotnet -Serilog.Enrichers.Thread 3.1.0 dotnet -Serilog.Extensions.Hosting 4.1.2 dotnet -Serilog.Extensions.Logging 3.0.1 dotnet -Serilog.Formatting.Compact 1.1.0 dotnet -Serilog.Settings.Configuration 3.3.0 dotnet -Serilog.Sinks.Async 1.5.0 dotnet -Serilog.Sinks.Console 4.0.1 dotnet -Serilog.Sinks.Debug 2.0.0 dotnet -Serilog.Sinks.File 5.0.0 dotnet -Serilog.Sinks.Graylog 2.3.0 dotnet -SharpCompress 0.32.2 dotnet -SkiaSharp 2.88.2 dotnet -SkiaSharp.NativeAssets.Linux 2.88.2 dotnet -SkiaSharp.NativeAssets.Win32 2.88.2 dotnet -SkiaSharp.NativeAssets.macOS 2.88.2 dotnet -SkiaSharp.Svg 1.60.0 dotnet -Swashbuckle.AspNetCore 6.2.3 dotnet -Swashbuckle.AspNetCore.ReDoc 6.3.1 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet -System.Buffers 4.5.1 dotnet -System.Collections.Immutable 6.0.0 dotnet -System.Diagnostics.DiagnosticSource 6.0.0 dotnet -System.Drawing.Common 5.0.2 dotnet -System.Globalization 4.3.0 dotnet -System.Linq.Async 6.0.1 dotnet -System.Memory 4.5.4 dotnet -System.Private.Uri 4.3.0 dotnet -System.Runtime 4.3.0 dotnet -System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet -System.Security.AccessControl 5.0.0 dotnet -System.Security.Principal.Windows 5.0.0 dotnet -System.Text.Encoding.CodePages 6.0.0 dotnet -System.Text.Encodings.Web 6.0.0 dotnet -System.Text.Json 6.0.6 dotnet -System.Threading.Tasks.Dataflow 6.0.0 dotnet -TMDbLib 1.9.2 dotnet -TagLibSharp 2.3.0 dotnet -UTF.Unknown 2.5.1 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.9 deb -apt-utils 2.4.9 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.10 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 10.8.10-1 deb -jellyfin-web 10.8.10-1 deb -jq 1.6-2.1ubuntu3 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.9 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.10 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.2 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1build3 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.5 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2 deb -libwebp7 1.2.2-2ubuntu0.22.04.1 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb -libx11-6 2:1.7.5-1ubuntu0.2 deb -libx11-data 2:1.7.5-1ubuntu0.2 deb -libx11-xcb1 2:1.7.5-1ubuntu0.2 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.1 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb -mount 2.37.2-4ubuntu3 deb -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.10 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheus-net 6.0.0 dotnet -prometheus-net.AspNetCore 6.0.0 dotnet -prometheus-net.DotNetRuntime 4.2.4 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -runtime.any.System.Globalization 4.3.0 dotnet -runtime.any.System.Runtime 4.3.0 dotnet -runtime.native.System 4.3.0 dotnet -runtime.unix.System.Private.Uri 4.3.0 dotnet -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -xmlstarlet 1.6.1-2.1 deb -zlib.net-mutliplatform 1.0.5 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE + 10.8.10 dotnet + 6.0.0 dotnet +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +DiscUtils (for .NET and .NET Core), core library that supports parts of DiscUtils 0.16.13.55129 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DotNet.Glob 1.0.0.0 dotnet +DvdLib 10.8.10 dotnet +Emby.Dlna 10.8.10 dotnet +Emby.Drawing 10.8.10 dotnet +Emby.Naming 10.8.10 dotnet +Emby.Notifications 10.8.10 dotnet +Emby.Photos 10.8.10 dotnet +Emby.Server.Implementations 10.8.10 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Drawing.Skia 10.8.10 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Server 10.8.10 dotnet +Jellyfin.Server.Implementations 10.8.10 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET .NET Standard 2.0 13.0.1.25517 dotnet +MediaBrowser.Common 10.8.10 dotnet +MediaBrowser.Controller 10.8.10 dotnet +MediaBrowser.LocalMetadata 10.8.10 dotnet +MediaBrowser.MediaEncoding 10.8.10 dotnet +MediaBrowser.Model 10.8.10 dotnet +MediaBrowser.Providers 10.8.10 dotnet +MediaBrowser.XbmcMetadata 10.8.10 dotnet +Microsoft.AspNetCore 6.0.922.41926 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet +Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.Session 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 6.0.922.41905 dotnet +Microsoft.Data.Sqlite 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet +Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet +Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet +Microsoft.Extensions.Localization 6.0.922.41926 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet +Microsoft.JSInterop 6.0.922.41926 dotnet +Microsoft.Net.Http.Headers 6.0.922.41926 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.922.41905 dotnet +Microsoft.VisualBasic.Core 11.100.922.41905 dotnet +Microsoft.Win32.Primitives 6.0.922.41905 dotnet +Microsoft.Win32.Registry 6.0.922.41905 dotnet +Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet +Mono.Nat 3.0.3 dotnet +NEbml.Core 0.11.0.0 dotnet +PlaylistsNET 1.2.1.0 dotnet +PriorityQueue 5.0.0.0 dotnet +RSSDP 2019.1.20.3 dotnet +SQLitePCL.pretty 1.0.0 dotnet +SQLitePCLRaw.batteries_v2 2.1.0.1603 dotnet +SQLitePCLRaw.core 2.1.0.1603 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.0.1603 dotnet +Serilog 2.10.0.0 dotnet +Serilog.AspNetCore 4.1.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 4.1.2.0 dotnet +Serilog.Extensions.Logging 3.0.1.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 3.3.0.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 4.0.1.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 2.3.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +SharpCompress 0.32.2 dotnet +SkiaSharp 2.88.2.0 dotnet +SkiaSharp.Extended.Svg 1.60.0.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 6.0.922.41905 dotnet +System.AppContext 6.0.922.41905 dotnet +System.Buffers 6.0.922.41905 dotnet +System.Collections 6.0.922.41905 dotnet +System.Collections.Concurrent 6.0.922.41905 dotnet +System.Collections.Immutable 6.0.922.41905 dotnet +System.Collections.NonGeneric 6.0.922.41905 dotnet +System.Collections.Specialized 6.0.922.41905 dotnet +System.ComponentModel 6.0.922.41905 dotnet +System.ComponentModel.Annotations 6.0.922.41905 dotnet +System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet +System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet +System.ComponentModel.Primitives 6.0.922.41905 dotnet +System.ComponentModel.TypeConverter 6.0.922.41905 dotnet +System.Configuration 6.0.922.41905 dotnet +System.Console 6.0.922.41905 dotnet +System.Core 6.0.922.41905 dotnet +System.Data 6.0.922.41905 dotnet +System.Data.Common 6.0.922.41905 dotnet +System.Data.DataSetExtensions 6.0.922.41905 dotnet +System.Diagnostics.Contracts 6.0.922.41905 dotnet +System.Diagnostics.Debug 6.0.922.41905 dotnet +System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet +System.Diagnostics.Process 6.0.922.41905 dotnet +System.Diagnostics.StackTrace 6.0.922.41905 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet +System.Diagnostics.Tools 6.0.922.41905 dotnet +System.Diagnostics.TraceSource 6.0.922.41905 dotnet +System.Diagnostics.Tracing 6.0.922.41905 dotnet +System.Drawing 6.0.922.41905 dotnet +System.Drawing.Common 5.0.421.11614 dotnet +System.Drawing.Primitives 6.0.922.41905 dotnet +System.Dynamic.Runtime 6.0.922.41905 dotnet +System.Formats.Asn1 6.0.922.41905 dotnet +System.Globalization 6.0.922.41905 dotnet +System.Globalization.Calendars 6.0.922.41905 dotnet +System.Globalization.Extensions 6.0.922.41905 dotnet +System.IO 6.0.922.41905 dotnet +System.IO.Compression 6.0.922.41905 dotnet +System.IO.Compression.Brotli 6.0.922.41905 dotnet +System.IO.Compression.FileSystem 6.0.922.41905 dotnet +System.IO.Compression.ZipFile 6.0.922.41905 dotnet +System.IO.FileSystem 6.0.922.41905 dotnet +System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet +System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet +System.IO.FileSystem.Primitives 6.0.922.41905 dotnet +System.IO.FileSystem.Watcher 6.0.922.41905 dotnet +System.IO.IsolatedStorage 6.0.922.41905 dotnet +System.IO.MemoryMappedFiles 6.0.922.41905 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.922.41905 dotnet +System.IO.Pipes.AccessControl 6.0.922.41905 dotnet +System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet +System.Linq 6.0.922.41905 dotnet +System.Linq.Async 6.0.1.35981 dotnet +System.Linq.Expressions 6.0.922.41905 dotnet +System.Linq.Parallel 6.0.922.41905 dotnet +System.Linq.Queryable 6.0.922.41905 dotnet +System.Memory 6.0.922.41905 dotnet +System.Net 6.0.922.41905 dotnet +System.Net.Http 6.0.922.41905 dotnet +System.Net.Http.Json 6.0.922.41905 dotnet +System.Net.HttpListener 6.0.922.41905 dotnet +System.Net.Mail 6.0.922.41905 dotnet +System.Net.NameResolution 6.0.922.41905 dotnet +System.Net.NetworkInformation 6.0.922.41905 dotnet +System.Net.Ping 6.0.922.41905 dotnet +System.Net.Primitives 6.0.922.41905 dotnet +System.Net.Quic 6.0.922.41905 dotnet +System.Net.Requests 6.0.922.41905 dotnet +System.Net.Security 6.0.922.41905 dotnet +System.Net.ServicePoint 6.0.922.41905 dotnet +System.Net.Sockets 6.0.922.41905 dotnet +System.Net.WebClient 6.0.922.41905 dotnet +System.Net.WebHeaderCollection 6.0.922.41905 dotnet +System.Net.WebProxy 6.0.922.41905 dotnet +System.Net.WebSockets 6.0.922.41905 dotnet +System.Net.WebSockets.Client 6.0.922.41905 dotnet +System.Numerics 6.0.922.41905 dotnet +System.Numerics.Vectors 6.0.922.41905 dotnet +System.ObjectModel 6.0.922.41905 dotnet +System.Private.CoreLib 6.0.922.41905 dotnet +System.Private.DataContractSerialization 6.0.922.41905 dotnet +System.Private.Uri 6.0.922.41905 dotnet +System.Private.Xml 6.0.922.41905 dotnet +System.Private.Xml.Linq 6.0.922.41905 dotnet +System.Reflection 6.0.922.41905 dotnet +System.Reflection.DispatchProxy 6.0.922.41905 dotnet +System.Reflection.Emit 6.0.922.41905 dotnet +System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet +System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet +System.Reflection.Extensions 6.0.922.41905 dotnet +System.Reflection.Metadata 6.0.922.41905 dotnet +System.Reflection.Primitives 6.0.922.41905 dotnet +System.Reflection.TypeExtensions 6.0.922.41905 dotnet +System.Resources.Reader 6.0.922.41905 dotnet +System.Resources.ResourceManager 6.0.922.41905 dotnet +System.Resources.Writer 6.0.922.41905 dotnet +System.Runtime 6.0.922.41905 dotnet +System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet +System.Runtime.Extensions 6.0.922.41905 dotnet +System.Runtime.Handles 6.0.922.41905 dotnet +System.Runtime.InteropServices 6.0.922.41905 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet +System.Runtime.Intrinsics 6.0.922.41905 dotnet +System.Runtime.Loader 6.0.922.41905 dotnet +System.Runtime.Numerics 6.0.922.41905 dotnet +System.Runtime.Serialization 6.0.922.41905 dotnet +System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet +System.Runtime.Serialization.Json 6.0.922.41905 dotnet +System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet +System.Runtime.Serialization.Xml 6.0.922.41905 dotnet +System.Security 6.0.922.41905 dotnet +System.Security.AccessControl 6.0.922.41905 dotnet +System.Security.Claims 6.0.922.41905 dotnet +System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet +System.Security.Cryptography.Cng 6.0.922.41905 dotnet +System.Security.Cryptography.Csp 6.0.922.41905 dotnet +System.Security.Cryptography.Encoding 6.0.922.41905 dotnet +System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet +System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet +System.Security.Cryptography.Primitives 6.0.922.41905 dotnet +System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Principal 6.0.922.41905 dotnet +System.Security.Principal.Windows 6.0.922.41905 dotnet +System.Security.SecureString 6.0.922.41905 dotnet +System.ServiceModel.Web 6.0.922.41905 dotnet +System.ServiceProcess 6.0.922.41905 dotnet +System.Text.Encoding 6.0.922.41905 dotnet +System.Text.Encoding.CodePages 6.0.922.41905 dotnet +System.Text.Encoding.Extensions 6.0.922.41905 dotnet +System.Text.Encodings.Web 6.0.922.41905 dotnet +System.Text.Json 6.0.922.41905 dotnet +System.Text.RegularExpressions 6.0.922.41905 dotnet +System.Threading 6.0.922.41905 dotnet +System.Threading.Channels 6.0.922.41905 dotnet +System.Threading.Overlapped 6.0.922.41905 dotnet +System.Threading.Tasks 6.0.922.41905 dotnet +System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet +System.Threading.Tasks.Extensions 6.0.922.41905 dotnet +System.Threading.Tasks.Parallel 6.0.922.41905 dotnet +System.Threading.Thread 6.0.922.41905 dotnet +System.Threading.ThreadPool 6.0.922.41905 dotnet +System.Threading.Timer 6.0.922.41905 dotnet +System.Transactions 6.0.922.41905 dotnet +System.Transactions.Local 6.0.922.41905 dotnet +System.ValueTuple 6.0.922.41905 dotnet +System.Web 6.0.922.41905 dotnet +System.Web.HttpUtility 6.0.922.41905 dotnet +System.Windows 6.0.922.41905 dotnet +System.Xml 6.0.922.41905 dotnet +System.Xml.Linq 6.0.922.41905 dotnet +System.Xml.ReaderWriter 6.0.922.41905 dotnet +System.Xml.Serialization 6.0.922.41905 dotnet +System.Xml.XDocument 6.0.922.41905 dotnet +System.Xml.XPath 6.0.922.41905 dotnet +System.Xml.XPath.XDocument 6.0.922.41905 dotnet +System.Xml.XmlDocument 6.0.922.41905 dotnet +System.Xml.XmlSerializer 6.0.922.41905 dotnet +TMDb Library 1.9.2.0 dotnet +TagLibSharp 2.3.0.0 dotnet +UTF Unknown 2.0.664 dotnet +WindowsBase 6.0.922.41905 dotnet +ZLIB.NET 1.0.5.0 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.9 deb +apt-utils 2.4.9 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +curl 7.81.0-1ubuntu1.13 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg5 5.1.3-3-jammy deb +jellyfin-server 10.8.10-1 deb +jellyfin-web 10.8.10-1 deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.9 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.13 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1build3 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.5.3 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2 deb +libwebp7 1.2.2-2ubuntu0.22.04.1 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb +libx11-6 2:1.7.5-1ubuntu0.2 deb +libx11-data 2:1.7.5-1ubuntu0.2 deb +libx11-xcb1 2:1.7.5-1ubuntu0.2 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.1 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 6.0.922.41905 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 6.0.922.41905 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.10 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net.DotNetRuntime 4.2.4.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +xmlstarlet 1.6.1-2.1 deb +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 1057db02b4c70817f179e49df695f0cf8afa394e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Aug 2023 01:56:01 +0000 Subject: [PATCH 1751/2257] 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 cdc6d8f..1a75c95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb -jellyfin-server 20230729.14-unstable deb -jellyfin-web 20230731.2-unstable deb +jellyfin-server 20230801.5-unstable deb +jellyfin-web 20230802.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb @@ -476,8 +476,8 @@ libkeyutils1 libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.15+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.15+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb From b124d74bc7729de69662667cbc1d9a8aebb9b10c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Aug 2023 08:14:38 +0000 Subject: [PATCH 1752/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a75c95..882a4b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230801.5-unstable deb -jellyfin-web 20230802.1-unstable deb +jellyfin-web 20230802.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From e54d96930781215c045e82c6c5fc2d403d6c9c87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Aug 2023 15:12:32 +0000 Subject: [PATCH 1753/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 882a4b8..16d623e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230801.5-unstable deb -jellyfin-web 20230802.2-unstable deb +jellyfin-web 20230802.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 9890f850726e67969b816e6476b5c291b3cd2650 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 3 Aug 2023 17:10:44 +0000 Subject: [PATCH 1754/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 16d623e..cc1a10c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-3-jammy deb jellyfin-server 20230801.5-unstable deb -jellyfin-web 20230802.3-unstable deb +jellyfin-web 20230803.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From 6e1aee4a92cc8574addd5a240e5fa225afed99b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 4 Aug 2023 00:45:46 +0000 Subject: [PATCH 1755/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cc1a10c..75dfdd8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -570,7 +570,7 @@ login logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb +mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb mount 2.37.2-4ubuntu3 deb mscorlib 7.0.923.32018 dotnet ncurses-base 6.3-2ubuntu0.1 deb From eac7361176d878313d3cc09de521f472feb7523c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 01:59:51 +0000 Subject: [PATCH 1756/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 75dfdd8..4ecbbd6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -419,7 +419,7 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-3-jammy deb +jellyfin-ffmpeg5 5.1.3-4-jammy deb jellyfin-server 20230801.5-unstable deb jellyfin-web 20230803.4-unstable deb jq 1.6-2.1ubuntu3 deb From 821e9e3159755ca960a8c795fce4e5011fe45a20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 15:12:40 +0000 Subject: [PATCH 1757/2257] 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 4ecbbd6..eed4615 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-4-jammy deb -jellyfin-server 20230801.5-unstable deb -jellyfin-web 20230803.4-unstable deb +jellyfin-server 20230807.1-unstable deb +jellyfin-web 20230807.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From b4091c76b3a62e0633d459c5b204acec0a66d445 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 22:11:26 +0000 Subject: [PATCH 1758/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eed4615..52e145b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-4-jammy deb jellyfin-server 20230807.1-unstable deb -jellyfin-web 20230807.1-unstable deb +jellyfin-web 20230807.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From f45f36192fabc0e61306ac899e9b0502fbdb04b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Aug 2023 05:10:14 +0000 Subject: [PATCH 1759/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 52e145b..b4cdef1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-4-jammy deb jellyfin-server 20230807.1-unstable deb -jellyfin-web 20230807.3-unstable deb +jellyfin-web 20230807.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.9 deb From deaf7c89f577a93072e5bfd007dc7f21f19a78e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Aug 2023 12:44:11 +0000 Subject: [PATCH 1760/2257] 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 18ac815..43455b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -405,7 +405,7 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-3-jammy deb +jellyfin-ffmpeg5 5.1.3-4-jammy deb jellyfin-server 10.8.10-1 deb jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb @@ -462,8 +462,8 @@ libkeyutils1 libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.14+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.14+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.15+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.15+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -557,7 +557,7 @@ login logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 22.2.5-0ubuntu0.1~22.04.3 deb +mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb mount 2.37.2-4ubuntu3 deb mscorlib 6.0.922.41905 dotnet ncurses-base 6.3-2ubuntu0.1 deb From c5331b99df2afa78050da613a0f6ec2fda5b5022 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Aug 2023 01:41:12 +0000 Subject: [PATCH 1761/2257] 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 b4cdef1..643479e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -384,8 +384,8 @@ TagLibSharp UTF Unknown 2.0.664 dotnet WindowsBase 7.0.923.32018 dotnet adduser 3.118ubuntu5 deb -apt 2.4.9 deb -apt-utils 2.4.9 deb +apt 2.4.10 deb +apt-utils 2.4.10 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb @@ -424,7 +424,7 @@ jellyfin-server jellyfin-web 20230807.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.9 deb +libapt-pkg6.0 2.4.10 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb @@ -476,8 +476,8 @@ libkeyutils1 libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.15+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.15+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb From 0f9825c78de305bd5e853aae40749746d2b27697 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Aug 2023 12:43:55 +0000 Subject: [PATCH 1762/2257] 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 43455b4..98dc702 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -370,8 +370,8 @@ UTF Unknown WindowsBase 6.0.922.41905 dotnet ZLIB.NET 1.0.5.0 dotnet adduser 3.118ubuntu5 deb -apt 2.4.9 deb -apt-utils 2.4.9 deb +apt 2.4.10 deb +apt-utils 2.4.10 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb @@ -410,7 +410,7 @@ jellyfin-server jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.9 deb +libapt-pkg6.0 2.4.10 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb @@ -462,8 +462,8 @@ libkeyutils1 libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.15+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.15+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb From 47da59a39099ef0f22f663b08e3686166ff61c50 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Aug 2023 01:39:45 +0000 Subject: [PATCH 1763/2257] Bot Updating Package Versions --- package_versions.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/package_versions.txt b/package_versions.txt index 643479e..ac4b2b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -390,6 +390,7 @@ at base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1 deb +bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb From d6acf7194b8bfd95ec09cb47de9702587843a2ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 12:44:21 +0000 Subject: [PATCH 1764/2257] Bot Updating Package Versions --- package_versions.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/package_versions.txt b/package_versions.txt index 98dc702..6845ab4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -376,6 +376,7 @@ at base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1 deb +bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb From 47b6a72d3f2fe3b7e254d8ba6fdc3f590e1b3f45 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 19:10:22 +0000 Subject: [PATCH 1765/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ac4b2b1..2503014 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-4-jammy deb +jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230807.1-unstable deb jellyfin-web 20230807.8-unstable deb jq 1.6-2.1ubuntu3 deb From 8a8c8e695cb1e6a3eccab3db38b866f64adac72a Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 29 Aug 2023 17:51:20 -0400 Subject: [PATCH 1766/2257] fix: take ownership of plugin directories --- root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run index 8b6a23e..7955695 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run @@ -3,7 +3,7 @@ # create directories mkdir -p \ - /config/{log,data/transcodes,cache} \ + /config/{log,data/plugins/configurations,data/transcodes,cache} \ /data \ /transcode @@ -11,5 +11,7 @@ mkdir -p \ lsiown abc:abc \ /config \ /config/* \ + /config/data/plugins \ + /config/data/plugins/configurations \ /config/data/transcodes \ /transcode From a1c5bd5dd68a6217b8e8e1a894107095645a4443 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Sep 2023 12:44:19 +0000 Subject: [PATCH 1767/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6845ab4..79f467d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -406,7 +406,7 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-4-jammy deb +jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 10.8.10-1 deb jellyfin-web 10.8.10-1 deb jq 1.6-2.1ubuntu3 deb From 6ac83bf02db843cebc9e6e53d925b1101518af5c Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:36:52 -0400 Subject: [PATCH 1768/2257] docs: update changelog --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index cc41103..b1248fb 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -113,6 +113,7 @@ app_setup_block: | unraid_template_sync: false # changelog changelogs: + - {date: "12.09.23:", desc: "Take ownership of plugin directories."} - {date: "04.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - {date: "07.12.22:", desc: "Rebase master to Jammy, migrate to s6v3."} - {date: "11.06.22:", desc: "Switch to upstream repo's ffmpeg5 build."} From c8e83fb19cd1cef4e9e4a2adfa37ad7e18c32bd3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Sep 2023 19:02:26 +0000 Subject: [PATCH 1769/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b8ee0ee..5bb0294 100644 --- a/README.md +++ b/README.md @@ -307,6 +307,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **12.09.23:** - Take ownership of plugin directories. * **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase master to Jammy, migrate to s6v3. * **11.06.22:** - Switch to upstream repo's ffmpeg5 build. From dfa974218b886322b240558adbf3c14143734685 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Sep 2023 01:46:31 +0000 Subject: [PATCH 1770/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2503014..d331869 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -566,7 +566,7 @@ libxxhash0 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.1 deb +locales 2.35-0ubuntu3.3 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From dded2ffceb18d9dd0c4ce454170e62cabe48d504 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Sep 2023 15:12:17 +0000 Subject: [PATCH 1771/2257] Bot Updating Package Versions --- package_versions.txt | 559 +++++++++++++++++++++---------------------- 1 file changed, 279 insertions(+), 280 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d331869..c44fddb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -19,7 +19,7 @@ Emby.Dlna Emby.Naming 10.9.0 dotnet Emby.Photos 10.9.0 dotnet Emby.Server.Implementations 10.9.0 dotnet -HarfBuzzSharp 2.8.2.3 dotnet +HarfBuzzSharp 2.8.2.5 dotnet Jellyfin.Api 1.0.0.0 dotnet Jellyfin.Drawing 10.9.0 dotnet Jellyfin.Drawing.Skia 10.9.0 dotnet @@ -40,96 +40,96 @@ MediaBrowser.XbmcMetadata MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore 7.0.923.32110 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authentication 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authorization 7.0.923.32110 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.923.32110 dotnet -Microsoft.AspNetCore.Components 7.0.923.32110 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.923.32110 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.923.32110 dotnet -Microsoft.AspNetCore.Components.Server 7.0.923.32110 dotnet -Microsoft.AspNetCore.Components.Web 7.0.923.32110 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.923.32110 dotnet -Microsoft.AspNetCore.Cors 7.0.923.32110 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.923.32110 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.923.32110 dotnet -Microsoft.AspNetCore.DataProtection 7.0.923.32110 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.923.32110 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.923.32110 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.923.32110 dotnet -Microsoft.AspNetCore.Hosting 7.0.923.32110 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http.Features 7.0.923.32110 dotnet -Microsoft.AspNetCore.Http.Results 7.0.923.32110 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.923.32110 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.923.32110 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.923.32110 dotnet -Microsoft.AspNetCore.Identity 7.0.923.32110 dotnet -Microsoft.AspNetCore.Localization 7.0.923.32110 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.923.32110 dotnet -Microsoft.AspNetCore.Metadata 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.923.32110 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.923.32110 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.923.32110 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.923.32110 dotnet -Microsoft.AspNetCore.Razor 7.0.923.32110 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.923.32110 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.923.32110 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.923.32110 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.923.32110 dotnet -Microsoft.AspNetCore.Rewrite 7.0.923.32110 dotnet -Microsoft.AspNetCore.Routing 7.0.923.32110 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.923.32110 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.923.32110 dotnet -Microsoft.AspNetCore.Session 7.0.923.32110 dotnet -Microsoft.AspNetCore.SignalR 7.0.923.32110 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.923.32110 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.923.32110 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.923.32110 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.923.32110 dotnet -Microsoft.AspNetCore.WebSockets 7.0.923.32110 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.923.32110 dotnet +Microsoft.AspNetCore 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authentication 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authorization 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Components 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Cors 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1023.36439 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1023.36439 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1023.36439 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Hosting 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1023.36439 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1023.36439 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1023.36439 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Identity 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Localization 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Metadata 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1023.36439 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1023.36439 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Razor 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1023.36439 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1023.36439 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1023.36439 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Routing 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1023.36439 dotnet +Microsoft.AspNetCore.Session 7.0.1023.36439 dotnet +Microsoft.AspNetCore.SignalR 7.0.1023.36439 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1023.36439 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1023.36439 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1023.36439 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1023.36439 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1023.36439 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1023.36439 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.923.32018 dotnet -Microsoft.Data.Sqlite 7.0.923.31909 dotnet -Microsoft.EntityFrameworkCore 7.0.923.31909 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.923.31909 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.923.31909 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.923.31909 dotnet +Microsoft.CSharp 7.0.1023.36312 dotnet +Microsoft.Data.Sqlite 7.0.1023.36204 dotnet +Microsoft.EntityFrameworkCore 7.0.1023.36204 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1023.36204 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1023.36204 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1023.36204 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet Microsoft.Extensions.Configuration 7.0.22.51805 dotnet @@ -140,28 +140,28 @@ Microsoft.Extensions.Configuration.EnvironmentVariables Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.923.32110 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1023.36439 dotnet Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.923.32110 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.923.32110 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.923.32110 dotnet -Microsoft.Extensions.Features 7.0.923.32110 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1023.36439 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1023.36439 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1023.36439 dotnet +Microsoft.Extensions.Features 7.0.1023.36439 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.923.32110 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1023.36439 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet Microsoft.Extensions.Hosting 7.0.323.6910 dotnet Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.923.32110 dotnet -Microsoft.Extensions.Identity.Stores 7.0.923.32110 dotnet -Microsoft.Extensions.Localization 7.0.923.32110 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.923.32110 dotnet +Microsoft.Extensions.Identity.Core 7.0.1023.36439 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1023.36439 dotnet +Microsoft.Extensions.Localization 7.0.1023.36439 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1023.36439 dotnet Microsoft.Extensions.Logging 7.0.22.51805 dotnet Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet @@ -170,219 +170,218 @@ Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.923.32110 dotnet +Microsoft.Extensions.ObjectPool 7.0.1023.36439 dotnet Microsoft.Extensions.Options 7.0.323.6910 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.923.32110 dotnet -Microsoft.JSInterop 7.0.923.32110 dotnet -Microsoft.Net.Http.Headers 7.0.923.32110 dotnet +Microsoft.Extensions.WebEncoders 7.0.1023.36439 dotnet +Microsoft.JSInterop 7.0.1023.36439 dotnet +Microsoft.Net.Http.Headers 7.0.1023.36439 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.923.32018 dotnet -Microsoft.VisualBasic.Core 12.0.923.32018 dotnet -Microsoft.Win32.Primitives 7.0.923.32018 dotnet -Microsoft.Win32.Registry 7.0.923.32018 dotnet +Microsoft.VisualBasic 7.0.1023.36312 dotnet +Microsoft.VisualBasic.Core 12.0.1023.36312 dotnet +Microsoft.Win32.Primitives 7.0.1023.36312 dotnet +Microsoft.Win32.Registry 7.0.1023.36312 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.4.0.0 dotnet RSSDP 2019.1.20.3 dotnet -SQLitePCL.pretty 1.0.0 dotnet -SQLitePCLRaw.batteries_v2 2.1.5.1964 dotnet -SQLitePCLRaw.core 2.1.5.1964 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.5.1964 dotnet +SQLitePCLRaw.batteries_v2 2.1.4.1835 dotnet +SQLitePCLRaw.core 2.1.4.1835 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.4.1835 dotnet Serilog 2.12.0.0 dotnet Serilog.AspNetCore 7.0.0.0 dotnet Serilog.Enrichers.Thread 3.1.0.0 dotnet Serilog.Extensions.Hosting 7.0.0.0 dotnet Serilog.Extensions.Logging 7.0.0.0 dotnet Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 7.0.0.0 dotnet +Serilog.Settings.Configuration 7.0.1.0 dotnet Serilog.Sinks.Async 1.5.0.0 dotnet Serilog.Sinks.Console 4.1.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.0.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SkiaSharp 2.88.3.0 dotnet +SkiaSharp 2.88.5.0 dotnet SkiaSharp.Extended.Svg 1.60.0.0 dotnet -SkiaSharp.HarfBuzz 2.88.3.0 dotnet -Swashbuckle.AspNetCore.ReDoc 6.4.0.0 dotnet +SkiaSharp.HarfBuzz 2.88.5.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.923.32018 dotnet -System.AppContext 7.0.923.32018 dotnet -System.Buffers 7.0.923.32018 dotnet -System.Collections 7.0.923.32018 dotnet -System.Collections.Concurrent 7.0.923.32018 dotnet -System.Collections.Immutable 7.0.923.32018 dotnet -System.Collections.NonGeneric 7.0.923.32018 dotnet -System.Collections.Specialized 7.0.923.32018 dotnet -System.ComponentModel 7.0.923.32018 dotnet -System.ComponentModel.Annotations 7.0.923.32018 dotnet -System.ComponentModel.DataAnnotations 7.0.923.32018 dotnet -System.ComponentModel.EventBasedAsync 7.0.923.32018 dotnet -System.ComponentModel.Primitives 7.0.923.32018 dotnet -System.ComponentModel.TypeConverter 7.0.923.32018 dotnet -System.Configuration 7.0.923.32018 dotnet -System.Console 7.0.923.32018 dotnet -System.Core 7.0.923.32018 dotnet -System.Data 7.0.923.32018 dotnet -System.Data.Common 7.0.923.32018 dotnet -System.Data.DataSetExtensions 7.0.923.32018 dotnet -System.Diagnostics.Contracts 7.0.923.32018 dotnet -System.Diagnostics.Debug 7.0.923.32018 dotnet -System.Diagnostics.DiagnosticSource 7.0.923.32018 dotnet +System 7.0.1023.36312 dotnet +System.AppContext 7.0.1023.36312 dotnet +System.Buffers 7.0.1023.36312 dotnet +System.Collections 7.0.1023.36312 dotnet +System.Collections.Concurrent 7.0.1023.36312 dotnet +System.Collections.Immutable 7.0.1023.36312 dotnet +System.Collections.NonGeneric 7.0.1023.36312 dotnet +System.Collections.Specialized 7.0.1023.36312 dotnet +System.ComponentModel 7.0.1023.36312 dotnet +System.ComponentModel.Annotations 7.0.1023.36312 dotnet +System.ComponentModel.DataAnnotations 7.0.1023.36312 dotnet +System.ComponentModel.EventBasedAsync 7.0.1023.36312 dotnet +System.ComponentModel.Primitives 7.0.1023.36312 dotnet +System.ComponentModel.TypeConverter 7.0.1023.36312 dotnet +System.Configuration 7.0.1023.36312 dotnet +System.Console 7.0.1023.36312 dotnet +System.Core 7.0.1023.36312 dotnet +System.Data 7.0.1023.36312 dotnet +System.Data.Common 7.0.1023.36312 dotnet +System.Data.DataSetExtensions 7.0.1023.36312 dotnet +System.Diagnostics.Contracts 7.0.1023.36312 dotnet +System.Diagnostics.Debug 7.0.1023.36312 dotnet +System.Diagnostics.DiagnosticSource 7.0.1023.36312 dotnet System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.923.32018 dotnet -System.Diagnostics.Process 7.0.923.32018 dotnet -System.Diagnostics.StackTrace 7.0.923.32018 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.923.32018 dotnet -System.Diagnostics.Tools 7.0.923.32018 dotnet -System.Diagnostics.TraceSource 7.0.923.32018 dotnet -System.Diagnostics.Tracing 7.0.923.32018 dotnet -System.Drawing 7.0.923.32018 dotnet +System.Diagnostics.FileVersionInfo 7.0.1023.36312 dotnet +System.Diagnostics.Process 7.0.1023.36312 dotnet +System.Diagnostics.StackTrace 7.0.1023.36312 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1023.36312 dotnet +System.Diagnostics.Tools 7.0.1023.36312 dotnet +System.Diagnostics.TraceSource 7.0.1023.36312 dotnet +System.Diagnostics.Tracing 7.0.1023.36312 dotnet +System.Drawing 7.0.1023.36312 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.923.32018 dotnet -System.Dynamic.Runtime 7.0.923.32018 dotnet -System.Formats.Asn1 7.0.923.32018 dotnet -System.Formats.Tar 7.0.923.32018 dotnet -System.Globalization 7.0.923.32018 dotnet -System.Globalization.Calendars 7.0.923.32018 dotnet -System.Globalization.Extensions 7.0.923.32018 dotnet -System.IO 7.0.923.32018 dotnet -System.IO.Compression 7.0.923.32018 dotnet -System.IO.Compression.Brotli 7.0.923.32018 dotnet -System.IO.Compression.FileSystem 7.0.923.32018 dotnet -System.IO.Compression.ZipFile 7.0.923.32018 dotnet -System.IO.FileSystem 7.0.923.32018 dotnet -System.IO.FileSystem.AccessControl 7.0.923.32018 dotnet -System.IO.FileSystem.DriveInfo 7.0.923.32018 dotnet -System.IO.FileSystem.Primitives 7.0.923.32018 dotnet -System.IO.FileSystem.Watcher 7.0.923.32018 dotnet -System.IO.IsolatedStorage 7.0.923.32018 dotnet -System.IO.MemoryMappedFiles 7.0.923.32018 dotnet +System.Drawing.Primitives 7.0.1023.36312 dotnet +System.Dynamic.Runtime 7.0.1023.36312 dotnet +System.Formats.Asn1 7.0.1023.36312 dotnet +System.Formats.Tar 7.0.1023.36312 dotnet +System.Globalization 7.0.1023.36312 dotnet +System.Globalization.Calendars 7.0.1023.36312 dotnet +System.Globalization.Extensions 7.0.1023.36312 dotnet +System.IO 7.0.1023.36312 dotnet +System.IO.Compression 7.0.1023.36312 dotnet +System.IO.Compression.Brotli 7.0.1023.36312 dotnet +System.IO.Compression.FileSystem 7.0.1023.36312 dotnet +System.IO.Compression.ZipFile 7.0.1023.36312 dotnet +System.IO.FileSystem 7.0.1023.36312 dotnet +System.IO.FileSystem.AccessControl 7.0.1023.36312 dotnet +System.IO.FileSystem.DriveInfo 7.0.1023.36312 dotnet +System.IO.FileSystem.Primitives 7.0.1023.36312 dotnet +System.IO.FileSystem.Watcher 7.0.1023.36312 dotnet +System.IO.IsolatedStorage 7.0.1023.36312 dotnet +System.IO.MemoryMappedFiles 7.0.1023.36312 dotnet System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.923.32018 dotnet -System.IO.Pipes.AccessControl 7.0.923.32018 dotnet -System.IO.UnmanagedMemoryStream 7.0.923.32018 dotnet -System.Linq 7.0.923.32018 dotnet +System.IO.Pipes 7.0.1023.36312 dotnet +System.IO.Pipes.AccessControl 7.0.1023.36312 dotnet +System.IO.UnmanagedMemoryStream 7.0.1023.36312 dotnet +System.Linq 7.0.1023.36312 dotnet System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.923.32018 dotnet -System.Linq.Parallel 7.0.923.32018 dotnet -System.Linq.Queryable 7.0.923.32018 dotnet -System.Memory 7.0.923.32018 dotnet -System.Net 7.0.923.32018 dotnet -System.Net.Http 7.0.923.32018 dotnet -System.Net.Http.Json 7.0.923.32018 dotnet -System.Net.HttpListener 7.0.923.32018 dotnet -System.Net.Mail 7.0.923.32018 dotnet -System.Net.NameResolution 7.0.923.32018 dotnet -System.Net.NetworkInformation 7.0.923.32018 dotnet -System.Net.Ping 7.0.923.32018 dotnet -System.Net.Primitives 7.0.923.32018 dotnet -System.Net.Quic 7.0.923.32018 dotnet -System.Net.Requests 7.0.923.32018 dotnet -System.Net.Security 7.0.923.32018 dotnet -System.Net.ServicePoint 7.0.923.32018 dotnet -System.Net.Sockets 7.0.923.32018 dotnet -System.Net.WebClient 7.0.923.32018 dotnet -System.Net.WebHeaderCollection 7.0.923.32018 dotnet -System.Net.WebProxy 7.0.923.32018 dotnet -System.Net.WebSockets 7.0.923.32018 dotnet -System.Net.WebSockets.Client 7.0.923.32018 dotnet -System.Numerics 7.0.923.32018 dotnet -System.Numerics.Vectors 7.0.923.32018 dotnet -System.ObjectModel 7.0.923.32018 dotnet -System.Private.CoreLib 7.0.923.32018 dotnet -System.Private.DataContractSerialization 7.0.923.32018 dotnet -System.Private.Uri 7.0.923.32018 dotnet -System.Private.Xml 7.0.923.32018 dotnet -System.Private.Xml.Linq 7.0.923.32018 dotnet -System.Reflection 7.0.923.32018 dotnet -System.Reflection.DispatchProxy 7.0.923.32018 dotnet -System.Reflection.Emit 7.0.923.32018 dotnet -System.Reflection.Emit.ILGeneration 7.0.923.32018 dotnet -System.Reflection.Emit.Lightweight 7.0.923.32018 dotnet -System.Reflection.Extensions 7.0.923.32018 dotnet -System.Reflection.Metadata 7.0.923.32018 dotnet -System.Reflection.Primitives 7.0.923.32018 dotnet -System.Reflection.TypeExtensions 7.0.923.32018 dotnet -System.Resources.Reader 7.0.923.32018 dotnet -System.Resources.ResourceManager 7.0.923.32018 dotnet -System.Resources.Writer 7.0.923.32018 dotnet -System.Runtime 7.0.923.32018 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.923.32018 dotnet -System.Runtime.CompilerServices.VisualC 7.0.923.32018 dotnet -System.Runtime.Extensions 7.0.923.32018 dotnet -System.Runtime.Handles 7.0.923.32018 dotnet -System.Runtime.InteropServices 7.0.923.32018 dotnet -System.Runtime.InteropServices.JavaScript 7.0.923.32018 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.923.32018 dotnet -System.Runtime.Intrinsics 7.0.923.32018 dotnet -System.Runtime.Loader 7.0.923.32018 dotnet -System.Runtime.Numerics 7.0.923.32018 dotnet -System.Runtime.Serialization 7.0.923.32018 dotnet -System.Runtime.Serialization.Formatters 7.0.923.32018 dotnet -System.Runtime.Serialization.Json 7.0.923.32018 dotnet -System.Runtime.Serialization.Primitives 7.0.923.32018 dotnet -System.Runtime.Serialization.Xml 7.0.923.32018 dotnet -System.Security 7.0.923.32018 dotnet -System.Security.AccessControl 7.0.923.32018 dotnet -System.Security.Claims 7.0.923.32018 dotnet -System.Security.Cryptography 7.0.923.32018 dotnet -System.Security.Cryptography.Algorithms 7.0.923.32018 dotnet -System.Security.Cryptography.Cng 7.0.923.32018 dotnet -System.Security.Cryptography.Csp 7.0.923.32018 dotnet -System.Security.Cryptography.Encoding 7.0.923.32018 dotnet -System.Security.Cryptography.OpenSsl 7.0.923.32018 dotnet +System.Linq.Expressions 7.0.1023.36312 dotnet +System.Linq.Parallel 7.0.1023.36312 dotnet +System.Linq.Queryable 7.0.1023.36312 dotnet +System.Memory 7.0.1023.36312 dotnet +System.Net 7.0.1023.36312 dotnet +System.Net.Http 7.0.1023.36312 dotnet +System.Net.Http.Json 7.0.1023.36312 dotnet +System.Net.HttpListener 7.0.1023.36312 dotnet +System.Net.Mail 7.0.1023.36312 dotnet +System.Net.NameResolution 7.0.1023.36312 dotnet +System.Net.NetworkInformation 7.0.1023.36312 dotnet +System.Net.Ping 7.0.1023.36312 dotnet +System.Net.Primitives 7.0.1023.36312 dotnet +System.Net.Quic 7.0.1023.36312 dotnet +System.Net.Requests 7.0.1023.36312 dotnet +System.Net.Security 7.0.1023.36312 dotnet +System.Net.ServicePoint 7.0.1023.36312 dotnet +System.Net.Sockets 7.0.1023.36312 dotnet +System.Net.WebClient 7.0.1023.36312 dotnet +System.Net.WebHeaderCollection 7.0.1023.36312 dotnet +System.Net.WebProxy 7.0.1023.36312 dotnet +System.Net.WebSockets 7.0.1023.36312 dotnet +System.Net.WebSockets.Client 7.0.1023.36312 dotnet +System.Numerics 7.0.1023.36312 dotnet +System.Numerics.Vectors 7.0.1023.36312 dotnet +System.ObjectModel 7.0.1023.36312 dotnet +System.Private.CoreLib 7.0.1023.36312 dotnet +System.Private.DataContractSerialization 7.0.1023.36312 dotnet +System.Private.Uri 7.0.1023.36312 dotnet +System.Private.Xml 7.0.1023.36312 dotnet +System.Private.Xml.Linq 7.0.1023.36312 dotnet +System.Reflection 7.0.1023.36312 dotnet +System.Reflection.DispatchProxy 7.0.1023.36312 dotnet +System.Reflection.Emit 7.0.1023.36312 dotnet +System.Reflection.Emit.ILGeneration 7.0.1023.36312 dotnet +System.Reflection.Emit.Lightweight 7.0.1023.36312 dotnet +System.Reflection.Extensions 7.0.1023.36312 dotnet +System.Reflection.Metadata 7.0.1023.36312 dotnet +System.Reflection.Primitives 7.0.1023.36312 dotnet +System.Reflection.TypeExtensions 7.0.1023.36312 dotnet +System.Resources.Reader 7.0.1023.36312 dotnet +System.Resources.ResourceManager 7.0.1023.36312 dotnet +System.Resources.Writer 7.0.1023.36312 dotnet +System.Runtime 7.0.1023.36312 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1023.36312 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1023.36312 dotnet +System.Runtime.Extensions 7.0.1023.36312 dotnet +System.Runtime.Handles 7.0.1023.36312 dotnet +System.Runtime.InteropServices 7.0.1023.36312 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1023.36312 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1023.36312 dotnet +System.Runtime.Intrinsics 7.0.1023.36312 dotnet +System.Runtime.Loader 7.0.1023.36312 dotnet +System.Runtime.Numerics 7.0.1023.36312 dotnet +System.Runtime.Serialization 7.0.1023.36312 dotnet +System.Runtime.Serialization.Formatters 7.0.1023.36312 dotnet +System.Runtime.Serialization.Json 7.0.1023.36312 dotnet +System.Runtime.Serialization.Primitives 7.0.1023.36312 dotnet +System.Runtime.Serialization.Xml 7.0.1023.36312 dotnet +System.Security 7.0.1023.36312 dotnet +System.Security.AccessControl 7.0.1023.36312 dotnet +System.Security.Claims 7.0.1023.36312 dotnet +System.Security.Cryptography 7.0.1023.36312 dotnet +System.Security.Cryptography.Algorithms 7.0.1023.36312 dotnet +System.Security.Cryptography.Cng 7.0.1023.36312 dotnet +System.Security.Cryptography.Csp 7.0.1023.36312 dotnet +System.Security.Cryptography.Encoding 7.0.1023.36312 dotnet +System.Security.Cryptography.OpenSsl 7.0.1023.36312 dotnet System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.923.32018 dotnet -System.Security.Cryptography.X509Certificates 7.0.923.32018 dotnet +System.Security.Cryptography.Primitives 7.0.1023.36312 dotnet +System.Security.Cryptography.X509Certificates 7.0.1023.36312 dotnet System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.923.32018 dotnet -System.Security.Principal.Windows 7.0.923.32018 dotnet -System.Security.SecureString 7.0.923.32018 dotnet -System.ServiceModel.Web 7.0.923.32018 dotnet -System.ServiceProcess 7.0.923.32018 dotnet -System.Text.Encoding 7.0.923.32018 dotnet -System.Text.Encoding.CodePages 7.0.923.32018 dotnet -System.Text.Encoding.Extensions 7.0.923.32018 dotnet -System.Text.Encodings.Web 7.0.923.32018 dotnet -System.Text.Json 7.0.923.32018 dotnet -System.Text.RegularExpressions 7.0.923.32018 dotnet -System.Threading 7.0.923.32018 dotnet -System.Threading.Channels 7.0.923.32018 dotnet -System.Threading.Overlapped 7.0.923.32018 dotnet +System.Security.Principal 7.0.1023.36312 dotnet +System.Security.Principal.Windows 7.0.1023.36312 dotnet +System.Security.SecureString 7.0.1023.36312 dotnet +System.ServiceModel.Web 7.0.1023.36312 dotnet +System.ServiceProcess 7.0.1023.36312 dotnet +System.Text.Encoding 7.0.1023.36312 dotnet +System.Text.Encoding.CodePages 7.0.1023.36312 dotnet +System.Text.Encoding.Extensions 7.0.1023.36312 dotnet +System.Text.Encodings.Web 7.0.1023.36312 dotnet +System.Text.Json 7.0.1023.36312 dotnet +System.Text.RegularExpressions 7.0.1023.36312 dotnet +System.Threading 7.0.1023.36312 dotnet +System.Threading.Channels 7.0.1023.36312 dotnet +System.Threading.Overlapped 7.0.1023.36312 dotnet System.Threading.RateLimiting 7.0.22.51805 dotnet -System.Threading.Tasks 7.0.923.32018 dotnet -System.Threading.Tasks.Dataflow 7.0.923.32018 dotnet -System.Threading.Tasks.Extensions 7.0.923.32018 dotnet -System.Threading.Tasks.Parallel 7.0.923.32018 dotnet -System.Threading.Thread 7.0.923.32018 dotnet -System.Threading.ThreadPool 7.0.923.32018 dotnet -System.Threading.Timer 7.0.923.32018 dotnet -System.Transactions 7.0.923.32018 dotnet -System.Transactions.Local 7.0.923.32018 dotnet -System.ValueTuple 7.0.923.32018 dotnet -System.Web 7.0.923.32018 dotnet -System.Web.HttpUtility 7.0.923.32018 dotnet -System.Windows 7.0.923.32018 dotnet -System.Xml 7.0.923.32018 dotnet -System.Xml.Linq 7.0.923.32018 dotnet -System.Xml.ReaderWriter 7.0.923.32018 dotnet -System.Xml.Serialization 7.0.923.32018 dotnet -System.Xml.XDocument 7.0.923.32018 dotnet -System.Xml.XPath 7.0.923.32018 dotnet -System.Xml.XPath.XDocument 7.0.923.32018 dotnet -System.Xml.XmlDocument 7.0.923.32018 dotnet -System.Xml.XmlSerializer 7.0.923.32018 dotnet +System.Threading.Tasks 7.0.1023.36312 dotnet +System.Threading.Tasks.Dataflow 7.0.1023.36312 dotnet +System.Threading.Tasks.Extensions 7.0.1023.36312 dotnet +System.Threading.Tasks.Parallel 7.0.1023.36312 dotnet +System.Threading.Thread 7.0.1023.36312 dotnet +System.Threading.ThreadPool 7.0.1023.36312 dotnet +System.Threading.Timer 7.0.1023.36312 dotnet +System.Transactions 7.0.1023.36312 dotnet +System.Transactions.Local 7.0.1023.36312 dotnet +System.ValueTuple 7.0.1023.36312 dotnet +System.Web 7.0.1023.36312 dotnet +System.Web.HttpUtility 7.0.1023.36312 dotnet +System.Windows 7.0.1023.36312 dotnet +System.Xml 7.0.1023.36312 dotnet +System.Xml.Linq 7.0.1023.36312 dotnet +System.Xml.ReaderWriter 7.0.1023.36312 dotnet +System.Xml.Serialization 7.0.1023.36312 dotnet +System.Xml.XDocument 7.0.1023.36312 dotnet +System.Xml.XPath 7.0.1023.36312 dotnet +System.Xml.XPath.XDocument 7.0.1023.36312 dotnet +System.Xml.XmlDocument 7.0.1023.36312 dotnet +System.Xml.XmlSerializer 7.0.1023.36312 dotnet TMDb Library 2.0.0.0 dotnet TagLibSharp 2.3.0.0 dotnet UTF Unknown 2.0.664 dotnet -WindowsBase 7.0.923.32018 dotnet +WindowsBase 7.0.1023.36312 dotnet adduser 3.118ubuntu5 deb apt 2.4.10 deb apt-utils 2.4.10 deb @@ -421,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230807.1-unstable deb +jellyfin-server 20230913.2-unstable deb jellyfin-web 20230807.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -573,12 +572,12 @@ lsb-base mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.923.32018 dotnet +mscorlib 7.0.1023.36312 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.923.32018 dotnet +netstandard 7.0.1023.36312 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb From 23ec22b2e8075dccef482f3e49c9cf99641f64e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Sep 2023 06:14:32 +0000 Subject: [PATCH 1772/2257] Bot Updating Package Versions --- package_versions.txt | 544 +++++++++++++++++++++---------------------- 1 file changed, 272 insertions(+), 272 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c44fddb..93fc3d1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,96 +40,96 @@ MediaBrowser.XbmcMetadata MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authentication 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authorization 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Components 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Cors 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1023.36439 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1023.36439 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1023.36439 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Hosting 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1023.36439 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1023.36439 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1023.36439 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Identity 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Localization 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Metadata 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1023.36439 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1023.36439 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Razor 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1023.36439 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1023.36439 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1023.36439 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Routing 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1023.36439 dotnet -Microsoft.AspNetCore.Session 7.0.1023.36439 dotnet -Microsoft.AspNetCore.SignalR 7.0.1023.36439 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1023.36439 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1023.36439 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1023.36439 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1023.36439 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1023.36439 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1023.36439 dotnet +Microsoft.AspNetCore 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authentication 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authorization 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Components 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Cors 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1123.42502 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1123.42502 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1123.42502 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Hosting 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1123.42502 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1123.42502 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1123.42502 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Identity 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Localization 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Metadata 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1123.42502 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1123.42502 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Razor 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1123.42502 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1123.42502 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1123.42502 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Routing 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Session 7.0.1123.42502 dotnet +Microsoft.AspNetCore.SignalR 7.0.1123.42502 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1123.42502 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1123.42502 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1123.42502 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1123.42502 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1123.42502 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1123.42502 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1023.36312 dotnet -Microsoft.Data.Sqlite 7.0.1023.36204 dotnet -Microsoft.EntityFrameworkCore 7.0.1023.36204 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1023.36204 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1023.36204 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1023.36204 dotnet +Microsoft.CSharp 7.0.1123.42427 dotnet +Microsoft.Data.Sqlite 7.0.1123.40906 dotnet +Microsoft.EntityFrameworkCore 7.0.1123.40906 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1123.40906 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1123.40906 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1123.40906 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet Microsoft.Extensions.Configuration 7.0.22.51805 dotnet @@ -140,28 +140,28 @@ Microsoft.Extensions.Configuration.EnvironmentVariables Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1023.36439 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1123.42502 dotnet Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1023.36439 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1023.36439 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1023.36439 dotnet -Microsoft.Extensions.Features 7.0.1023.36439 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1123.42502 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1123.42502 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1123.42502 dotnet +Microsoft.Extensions.Features 7.0.1123.42502 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1023.36439 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1123.42502 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet Microsoft.Extensions.Hosting 7.0.323.6910 dotnet Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1023.36439 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1023.36439 dotnet -Microsoft.Extensions.Localization 7.0.1023.36439 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1023.36439 dotnet +Microsoft.Extensions.Identity.Core 7.0.1123.42502 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1123.42502 dotnet +Microsoft.Extensions.Localization 7.0.1123.42502 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1123.42502 dotnet Microsoft.Extensions.Logging 7.0.22.51805 dotnet Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet @@ -170,19 +170,19 @@ Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1023.36439 dotnet +Microsoft.Extensions.ObjectPool 7.0.1123.42502 dotnet Microsoft.Extensions.Options 7.0.323.6910 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1023.36439 dotnet -Microsoft.JSInterop 7.0.1023.36439 dotnet -Microsoft.Net.Http.Headers 7.0.1023.36439 dotnet +Microsoft.Extensions.WebEncoders 7.0.1123.42502 dotnet +Microsoft.JSInterop 7.0.1123.42502 dotnet +Microsoft.Net.Http.Headers 7.0.1123.42502 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1023.36312 dotnet -Microsoft.VisualBasic.Core 12.0.1023.36312 dotnet -Microsoft.Win32.Primitives 7.0.1023.36312 dotnet -Microsoft.Win32.Registry 7.0.1023.36312 dotnet +Microsoft.VisualBasic 7.0.1123.42427 dotnet +Microsoft.VisualBasic.Core 12.0.1123.42427 dotnet +Microsoft.Win32.Primitives 7.0.1123.42427 dotnet +Microsoft.Win32.Registry 7.0.1123.42427 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -211,177 +211,177 @@ Swashbuckle.AspNetCore.ReDoc Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1023.36312 dotnet -System.AppContext 7.0.1023.36312 dotnet -System.Buffers 7.0.1023.36312 dotnet -System.Collections 7.0.1023.36312 dotnet -System.Collections.Concurrent 7.0.1023.36312 dotnet -System.Collections.Immutable 7.0.1023.36312 dotnet -System.Collections.NonGeneric 7.0.1023.36312 dotnet -System.Collections.Specialized 7.0.1023.36312 dotnet -System.ComponentModel 7.0.1023.36312 dotnet -System.ComponentModel.Annotations 7.0.1023.36312 dotnet -System.ComponentModel.DataAnnotations 7.0.1023.36312 dotnet -System.ComponentModel.EventBasedAsync 7.0.1023.36312 dotnet -System.ComponentModel.Primitives 7.0.1023.36312 dotnet -System.ComponentModel.TypeConverter 7.0.1023.36312 dotnet -System.Configuration 7.0.1023.36312 dotnet -System.Console 7.0.1023.36312 dotnet -System.Core 7.0.1023.36312 dotnet -System.Data 7.0.1023.36312 dotnet -System.Data.Common 7.0.1023.36312 dotnet -System.Data.DataSetExtensions 7.0.1023.36312 dotnet -System.Diagnostics.Contracts 7.0.1023.36312 dotnet -System.Diagnostics.Debug 7.0.1023.36312 dotnet -System.Diagnostics.DiagnosticSource 7.0.1023.36312 dotnet +System 7.0.1123.42427 dotnet +System.AppContext 7.0.1123.42427 dotnet +System.Buffers 7.0.1123.42427 dotnet +System.Collections 7.0.1123.42427 dotnet +System.Collections.Concurrent 7.0.1123.42427 dotnet +System.Collections.Immutable 7.0.1123.42427 dotnet +System.Collections.NonGeneric 7.0.1123.42427 dotnet +System.Collections.Specialized 7.0.1123.42427 dotnet +System.ComponentModel 7.0.1123.42427 dotnet +System.ComponentModel.Annotations 7.0.1123.42427 dotnet +System.ComponentModel.DataAnnotations 7.0.1123.42427 dotnet +System.ComponentModel.EventBasedAsync 7.0.1123.42427 dotnet +System.ComponentModel.Primitives 7.0.1123.42427 dotnet +System.ComponentModel.TypeConverter 7.0.1123.42427 dotnet +System.Configuration 7.0.1123.42427 dotnet +System.Console 7.0.1123.42427 dotnet +System.Core 7.0.1123.42427 dotnet +System.Data 7.0.1123.42427 dotnet +System.Data.Common 7.0.1123.42427 dotnet +System.Data.DataSetExtensions 7.0.1123.42427 dotnet +System.Diagnostics.Contracts 7.0.1123.42427 dotnet +System.Diagnostics.Debug 7.0.1123.42427 dotnet +System.Diagnostics.DiagnosticSource 7.0.1123.42427 dotnet System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1023.36312 dotnet -System.Diagnostics.Process 7.0.1023.36312 dotnet -System.Diagnostics.StackTrace 7.0.1023.36312 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1023.36312 dotnet -System.Diagnostics.Tools 7.0.1023.36312 dotnet -System.Diagnostics.TraceSource 7.0.1023.36312 dotnet -System.Diagnostics.Tracing 7.0.1023.36312 dotnet -System.Drawing 7.0.1023.36312 dotnet +System.Diagnostics.FileVersionInfo 7.0.1123.42427 dotnet +System.Diagnostics.Process 7.0.1123.42427 dotnet +System.Diagnostics.StackTrace 7.0.1123.42427 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1123.42427 dotnet +System.Diagnostics.Tools 7.0.1123.42427 dotnet +System.Diagnostics.TraceSource 7.0.1123.42427 dotnet +System.Diagnostics.Tracing 7.0.1123.42427 dotnet +System.Drawing 7.0.1123.42427 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1023.36312 dotnet -System.Dynamic.Runtime 7.0.1023.36312 dotnet -System.Formats.Asn1 7.0.1023.36312 dotnet -System.Formats.Tar 7.0.1023.36312 dotnet -System.Globalization 7.0.1023.36312 dotnet -System.Globalization.Calendars 7.0.1023.36312 dotnet -System.Globalization.Extensions 7.0.1023.36312 dotnet -System.IO 7.0.1023.36312 dotnet -System.IO.Compression 7.0.1023.36312 dotnet -System.IO.Compression.Brotli 7.0.1023.36312 dotnet -System.IO.Compression.FileSystem 7.0.1023.36312 dotnet -System.IO.Compression.ZipFile 7.0.1023.36312 dotnet -System.IO.FileSystem 7.0.1023.36312 dotnet -System.IO.FileSystem.AccessControl 7.0.1023.36312 dotnet -System.IO.FileSystem.DriveInfo 7.0.1023.36312 dotnet -System.IO.FileSystem.Primitives 7.0.1023.36312 dotnet -System.IO.FileSystem.Watcher 7.0.1023.36312 dotnet -System.IO.IsolatedStorage 7.0.1023.36312 dotnet -System.IO.MemoryMappedFiles 7.0.1023.36312 dotnet +System.Drawing.Primitives 7.0.1123.42427 dotnet +System.Dynamic.Runtime 7.0.1123.42427 dotnet +System.Formats.Asn1 7.0.1123.42427 dotnet +System.Formats.Tar 7.0.1123.42427 dotnet +System.Globalization 7.0.1123.42427 dotnet +System.Globalization.Calendars 7.0.1123.42427 dotnet +System.Globalization.Extensions 7.0.1123.42427 dotnet +System.IO 7.0.1123.42427 dotnet +System.IO.Compression 7.0.1123.42427 dotnet +System.IO.Compression.Brotli 7.0.1123.42427 dotnet +System.IO.Compression.FileSystem 7.0.1123.42427 dotnet +System.IO.Compression.ZipFile 7.0.1123.42427 dotnet +System.IO.FileSystem 7.0.1123.42427 dotnet +System.IO.FileSystem.AccessControl 7.0.1123.42427 dotnet +System.IO.FileSystem.DriveInfo 7.0.1123.42427 dotnet +System.IO.FileSystem.Primitives 7.0.1123.42427 dotnet +System.IO.FileSystem.Watcher 7.0.1123.42427 dotnet +System.IO.IsolatedStorage 7.0.1123.42427 dotnet +System.IO.MemoryMappedFiles 7.0.1123.42427 dotnet System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1023.36312 dotnet -System.IO.Pipes.AccessControl 7.0.1023.36312 dotnet -System.IO.UnmanagedMemoryStream 7.0.1023.36312 dotnet -System.Linq 7.0.1023.36312 dotnet +System.IO.Pipes 7.0.1123.42427 dotnet +System.IO.Pipes.AccessControl 7.0.1123.42427 dotnet +System.IO.UnmanagedMemoryStream 7.0.1123.42427 dotnet +System.Linq 7.0.1123.42427 dotnet System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1023.36312 dotnet -System.Linq.Parallel 7.0.1023.36312 dotnet -System.Linq.Queryable 7.0.1023.36312 dotnet -System.Memory 7.0.1023.36312 dotnet -System.Net 7.0.1023.36312 dotnet -System.Net.Http 7.0.1023.36312 dotnet -System.Net.Http.Json 7.0.1023.36312 dotnet -System.Net.HttpListener 7.0.1023.36312 dotnet -System.Net.Mail 7.0.1023.36312 dotnet -System.Net.NameResolution 7.0.1023.36312 dotnet -System.Net.NetworkInformation 7.0.1023.36312 dotnet -System.Net.Ping 7.0.1023.36312 dotnet -System.Net.Primitives 7.0.1023.36312 dotnet -System.Net.Quic 7.0.1023.36312 dotnet -System.Net.Requests 7.0.1023.36312 dotnet -System.Net.Security 7.0.1023.36312 dotnet -System.Net.ServicePoint 7.0.1023.36312 dotnet -System.Net.Sockets 7.0.1023.36312 dotnet -System.Net.WebClient 7.0.1023.36312 dotnet -System.Net.WebHeaderCollection 7.0.1023.36312 dotnet -System.Net.WebProxy 7.0.1023.36312 dotnet -System.Net.WebSockets 7.0.1023.36312 dotnet -System.Net.WebSockets.Client 7.0.1023.36312 dotnet -System.Numerics 7.0.1023.36312 dotnet -System.Numerics.Vectors 7.0.1023.36312 dotnet -System.ObjectModel 7.0.1023.36312 dotnet -System.Private.CoreLib 7.0.1023.36312 dotnet -System.Private.DataContractSerialization 7.0.1023.36312 dotnet -System.Private.Uri 7.0.1023.36312 dotnet -System.Private.Xml 7.0.1023.36312 dotnet -System.Private.Xml.Linq 7.0.1023.36312 dotnet -System.Reflection 7.0.1023.36312 dotnet -System.Reflection.DispatchProxy 7.0.1023.36312 dotnet -System.Reflection.Emit 7.0.1023.36312 dotnet -System.Reflection.Emit.ILGeneration 7.0.1023.36312 dotnet -System.Reflection.Emit.Lightweight 7.0.1023.36312 dotnet -System.Reflection.Extensions 7.0.1023.36312 dotnet -System.Reflection.Metadata 7.0.1023.36312 dotnet -System.Reflection.Primitives 7.0.1023.36312 dotnet -System.Reflection.TypeExtensions 7.0.1023.36312 dotnet -System.Resources.Reader 7.0.1023.36312 dotnet -System.Resources.ResourceManager 7.0.1023.36312 dotnet -System.Resources.Writer 7.0.1023.36312 dotnet -System.Runtime 7.0.1023.36312 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1023.36312 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1023.36312 dotnet -System.Runtime.Extensions 7.0.1023.36312 dotnet -System.Runtime.Handles 7.0.1023.36312 dotnet -System.Runtime.InteropServices 7.0.1023.36312 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1023.36312 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1023.36312 dotnet -System.Runtime.Intrinsics 7.0.1023.36312 dotnet -System.Runtime.Loader 7.0.1023.36312 dotnet -System.Runtime.Numerics 7.0.1023.36312 dotnet -System.Runtime.Serialization 7.0.1023.36312 dotnet -System.Runtime.Serialization.Formatters 7.0.1023.36312 dotnet -System.Runtime.Serialization.Json 7.0.1023.36312 dotnet -System.Runtime.Serialization.Primitives 7.0.1023.36312 dotnet -System.Runtime.Serialization.Xml 7.0.1023.36312 dotnet -System.Security 7.0.1023.36312 dotnet -System.Security.AccessControl 7.0.1023.36312 dotnet -System.Security.Claims 7.0.1023.36312 dotnet -System.Security.Cryptography 7.0.1023.36312 dotnet -System.Security.Cryptography.Algorithms 7.0.1023.36312 dotnet -System.Security.Cryptography.Cng 7.0.1023.36312 dotnet -System.Security.Cryptography.Csp 7.0.1023.36312 dotnet -System.Security.Cryptography.Encoding 7.0.1023.36312 dotnet -System.Security.Cryptography.OpenSsl 7.0.1023.36312 dotnet +System.Linq.Expressions 7.0.1123.42427 dotnet +System.Linq.Parallel 7.0.1123.42427 dotnet +System.Linq.Queryable 7.0.1123.42427 dotnet +System.Memory 7.0.1123.42427 dotnet +System.Net 7.0.1123.42427 dotnet +System.Net.Http 7.0.1123.42427 dotnet +System.Net.Http.Json 7.0.1123.42427 dotnet +System.Net.HttpListener 7.0.1123.42427 dotnet +System.Net.Mail 7.0.1123.42427 dotnet +System.Net.NameResolution 7.0.1123.42427 dotnet +System.Net.NetworkInformation 7.0.1123.42427 dotnet +System.Net.Ping 7.0.1123.42427 dotnet +System.Net.Primitives 7.0.1123.42427 dotnet +System.Net.Quic 7.0.1123.42427 dotnet +System.Net.Requests 7.0.1123.42427 dotnet +System.Net.Security 7.0.1123.42427 dotnet +System.Net.ServicePoint 7.0.1123.42427 dotnet +System.Net.Sockets 7.0.1123.42427 dotnet +System.Net.WebClient 7.0.1123.42427 dotnet +System.Net.WebHeaderCollection 7.0.1123.42427 dotnet +System.Net.WebProxy 7.0.1123.42427 dotnet +System.Net.WebSockets 7.0.1123.42427 dotnet +System.Net.WebSockets.Client 7.0.1123.42427 dotnet +System.Numerics 7.0.1123.42427 dotnet +System.Numerics.Vectors 7.0.1123.42427 dotnet +System.ObjectModel 7.0.1123.42427 dotnet +System.Private.CoreLib 7.0.1123.42427 dotnet +System.Private.DataContractSerialization 7.0.1123.42427 dotnet +System.Private.Uri 7.0.1123.42427 dotnet +System.Private.Xml 7.0.1123.42427 dotnet +System.Private.Xml.Linq 7.0.1123.42427 dotnet +System.Reflection 7.0.1123.42427 dotnet +System.Reflection.DispatchProxy 7.0.1123.42427 dotnet +System.Reflection.Emit 7.0.1123.42427 dotnet +System.Reflection.Emit.ILGeneration 7.0.1123.42427 dotnet +System.Reflection.Emit.Lightweight 7.0.1123.42427 dotnet +System.Reflection.Extensions 7.0.1123.42427 dotnet +System.Reflection.Metadata 7.0.1123.42427 dotnet +System.Reflection.Primitives 7.0.1123.42427 dotnet +System.Reflection.TypeExtensions 7.0.1123.42427 dotnet +System.Resources.Reader 7.0.1123.42427 dotnet +System.Resources.ResourceManager 7.0.1123.42427 dotnet +System.Resources.Writer 7.0.1123.42427 dotnet +System.Runtime 7.0.1123.42427 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1123.42427 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1123.42427 dotnet +System.Runtime.Extensions 7.0.1123.42427 dotnet +System.Runtime.Handles 7.0.1123.42427 dotnet +System.Runtime.InteropServices 7.0.1123.42427 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1123.42427 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1123.42427 dotnet +System.Runtime.Intrinsics 7.0.1123.42427 dotnet +System.Runtime.Loader 7.0.1123.42427 dotnet +System.Runtime.Numerics 7.0.1123.42427 dotnet +System.Runtime.Serialization 7.0.1123.42427 dotnet +System.Runtime.Serialization.Formatters 7.0.1123.42427 dotnet +System.Runtime.Serialization.Json 7.0.1123.42427 dotnet +System.Runtime.Serialization.Primitives 7.0.1123.42427 dotnet +System.Runtime.Serialization.Xml 7.0.1123.42427 dotnet +System.Security 7.0.1123.42427 dotnet +System.Security.AccessControl 7.0.1123.42427 dotnet +System.Security.Claims 7.0.1123.42427 dotnet +System.Security.Cryptography 7.0.1123.42427 dotnet +System.Security.Cryptography.Algorithms 7.0.1123.42427 dotnet +System.Security.Cryptography.Cng 7.0.1123.42427 dotnet +System.Security.Cryptography.Csp 7.0.1123.42427 dotnet +System.Security.Cryptography.Encoding 7.0.1123.42427 dotnet +System.Security.Cryptography.OpenSsl 7.0.1123.42427 dotnet System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1023.36312 dotnet -System.Security.Cryptography.X509Certificates 7.0.1023.36312 dotnet +System.Security.Cryptography.Primitives 7.0.1123.42427 dotnet +System.Security.Cryptography.X509Certificates 7.0.1123.42427 dotnet System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1023.36312 dotnet -System.Security.Principal.Windows 7.0.1023.36312 dotnet -System.Security.SecureString 7.0.1023.36312 dotnet -System.ServiceModel.Web 7.0.1023.36312 dotnet -System.ServiceProcess 7.0.1023.36312 dotnet -System.Text.Encoding 7.0.1023.36312 dotnet -System.Text.Encoding.CodePages 7.0.1023.36312 dotnet -System.Text.Encoding.Extensions 7.0.1023.36312 dotnet -System.Text.Encodings.Web 7.0.1023.36312 dotnet -System.Text.Json 7.0.1023.36312 dotnet -System.Text.RegularExpressions 7.0.1023.36312 dotnet -System.Threading 7.0.1023.36312 dotnet -System.Threading.Channels 7.0.1023.36312 dotnet -System.Threading.Overlapped 7.0.1023.36312 dotnet -System.Threading.RateLimiting 7.0.22.51805 dotnet -System.Threading.Tasks 7.0.1023.36312 dotnet -System.Threading.Tasks.Dataflow 7.0.1023.36312 dotnet -System.Threading.Tasks.Extensions 7.0.1023.36312 dotnet -System.Threading.Tasks.Parallel 7.0.1023.36312 dotnet -System.Threading.Thread 7.0.1023.36312 dotnet -System.Threading.ThreadPool 7.0.1023.36312 dotnet -System.Threading.Timer 7.0.1023.36312 dotnet -System.Transactions 7.0.1023.36312 dotnet -System.Transactions.Local 7.0.1023.36312 dotnet -System.ValueTuple 7.0.1023.36312 dotnet -System.Web 7.0.1023.36312 dotnet -System.Web.HttpUtility 7.0.1023.36312 dotnet -System.Windows 7.0.1023.36312 dotnet -System.Xml 7.0.1023.36312 dotnet -System.Xml.Linq 7.0.1023.36312 dotnet -System.Xml.ReaderWriter 7.0.1023.36312 dotnet -System.Xml.Serialization 7.0.1023.36312 dotnet -System.Xml.XDocument 7.0.1023.36312 dotnet -System.Xml.XPath 7.0.1023.36312 dotnet -System.Xml.XPath.XDocument 7.0.1023.36312 dotnet -System.Xml.XmlDocument 7.0.1023.36312 dotnet -System.Xml.XmlSerializer 7.0.1023.36312 dotnet +System.Security.Principal 7.0.1123.42427 dotnet +System.Security.Principal.Windows 7.0.1123.42427 dotnet +System.Security.SecureString 7.0.1123.42427 dotnet +System.ServiceModel.Web 7.0.1123.42427 dotnet +System.ServiceProcess 7.0.1123.42427 dotnet +System.Text.Encoding 7.0.1123.42427 dotnet +System.Text.Encoding.CodePages 7.0.1123.42427 dotnet +System.Text.Encoding.Extensions 7.0.1123.42427 dotnet +System.Text.Encodings.Web 7.0.1123.42427 dotnet +System.Text.Json 7.0.1123.42427 dotnet +System.Text.RegularExpressions 7.0.1123.42427 dotnet +System.Threading 7.0.1123.42427 dotnet +System.Threading.Channels 7.0.1123.42427 dotnet +System.Threading.Overlapped 7.0.1123.42427 dotnet +System.Threading.RateLimiting 7.0.1123.42427 dotnet +System.Threading.Tasks 7.0.1123.42427 dotnet +System.Threading.Tasks.Dataflow 7.0.1123.42427 dotnet +System.Threading.Tasks.Extensions 7.0.1123.42427 dotnet +System.Threading.Tasks.Parallel 7.0.1123.42427 dotnet +System.Threading.Thread 7.0.1123.42427 dotnet +System.Threading.ThreadPool 7.0.1123.42427 dotnet +System.Threading.Timer 7.0.1123.42427 dotnet +System.Transactions 7.0.1123.42427 dotnet +System.Transactions.Local 7.0.1123.42427 dotnet +System.ValueTuple 7.0.1123.42427 dotnet +System.Web 7.0.1123.42427 dotnet +System.Web.HttpUtility 7.0.1123.42427 dotnet +System.Windows 7.0.1123.42427 dotnet +System.Xml 7.0.1123.42427 dotnet +System.Xml.Linq 7.0.1123.42427 dotnet +System.Xml.ReaderWriter 7.0.1123.42427 dotnet +System.Xml.Serialization 7.0.1123.42427 dotnet +System.Xml.XDocument 7.0.1123.42427 dotnet +System.Xml.XPath 7.0.1123.42427 dotnet +System.Xml.XPath.XDocument 7.0.1123.42427 dotnet +System.Xml.XmlDocument 7.0.1123.42427 dotnet +System.Xml.XmlSerializer 7.0.1123.42427 dotnet TMDb Library 2.0.0.0 dotnet TagLibSharp 2.3.0.0 dotnet UTF Unknown 2.0.664 dotnet -WindowsBase 7.0.1023.36312 dotnet +WindowsBase 7.0.1123.42427 dotnet adduser 3.118ubuntu5 deb apt 2.4.10 deb apt-utils 2.4.10 deb @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230913.2-unstable deb +jellyfin-server 20230913.11-unstable deb jellyfin-web 20230807.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -572,12 +572,12 @@ lsb-base mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1023.36312 dotnet +mscorlib 7.0.1123.42427 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1023.36312 dotnet +netstandard 7.0.1123.42427 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb From 65272a98d0c42c02e9a2b52e9c9529be82477a50 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Sep 2023 20:10:52 +0000 Subject: [PATCH 1773/2257] 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 93fc3d1..0e6c0d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230913.11-unstable deb -jellyfin-web 20230807.8-unstable deb +jellyfin-web 20230914.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb @@ -539,8 +539,8 @@ libvorbis0a libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb libvpx7 1.11.0-2ubuntu2 deb -libwebp7 1.2.2-2ubuntu0.22.04.1 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb libx11-6 2:1.7.5-1ubuntu0.2 deb libx11-data 2:1.7.5-1ubuntu0.2 deb libx11-xcb1 2:1.7.5-1ubuntu0.2 deb From e48604a89e5d3b39b9aa5bb6a3bb28c4a0a55c2d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Sep 2023 02:20:26 +0000 Subject: [PATCH 1774/2257] 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 0e6c0d2..42b949c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230913.11-unstable deb -jellyfin-web 20230914.11-unstable deb +jellyfin-server 20230914.3-unstable deb +jellyfin-web 20230915.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 03e524cee15607d062709c7e029cbe092eb78e34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Sep 2023 23:10:06 +0000 Subject: [PATCH 1775/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 42b949c..e8713da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230914.3-unstable deb -jellyfin-web 20230915.1-unstable deb +jellyfin-web 20230915.12-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From a1d5c43cdc456088a371efe3b6bfa4690a674c0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 16 Sep 2023 06:13:08 +0000 Subject: [PATCH 1776/2257] 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 e8713da..88d15ee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230914.3-unstable deb -jellyfin-web 20230915.12-unstable deb +jellyfin-server 20230916.2-unstable deb +jellyfin-web 20230916.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 2a5f2675d1e0263059fe334c5d1ba208a39db69c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 16 Sep 2023 13:13:54 +0000 Subject: [PATCH 1777/2257] 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 88d15ee..1d24c30 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230916.2-unstable deb -jellyfin-web 20230916.2-unstable deb +jellyfin-server 20230916.11-unstable deb +jellyfin-web 20230916.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From a2200e778e07007f994d0da88eec5033ab92e2e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 16 Sep 2023 20:10:47 +0000 Subject: [PATCH 1778/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1d24c30..f0c8d7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230916.11-unstable deb -jellyfin-web 20230916.4-unstable deb +jellyfin-web 20230916.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 44663ad4db26e6836bab411da34087f6cc98ab1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Sep 2023 02:20:23 +0000 Subject: [PATCH 1779/2257] 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 f0c8d7a..29718e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230916.11-unstable deb -jellyfin-web 20230916.6-unstable deb +jellyfin-server 20230916.18-unstable deb +jellyfin-web 20230917.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From aecede4f51d5e05acb0bc513af1d68b8bd125ced Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Sep 2023 09:10:04 +0000 Subject: [PATCH 1780/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 29718e7..af402ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230916.18-unstable deb -jellyfin-web 20230917.2-unstable deb +jellyfin-web 20230917.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 98f7c1c8ae7992cb93dacb6bf5b9a91608e526e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Sep 2023 16:12:56 +0000 Subject: [PATCH 1781/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index af402ec..e04dfb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230916.18-unstable deb -jellyfin-web 20230917.3-unstable deb +jellyfin-web 20230917.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From a7a4ba24acd57b2fedcb1e8d22de564b681111a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Sep 2023 23:10:33 +0000 Subject: [PATCH 1782/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e04dfb7..487db99 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230916.18-unstable deb -jellyfin-web 20230917.5-unstable deb +jellyfin-web 20230917.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 72bd63e713f03346d0068b45f4715cbe1fc8c4f5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 12:17:40 +0000 Subject: [PATCH 1783/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 487db99..81c920e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230916.18-unstable deb +jellyfin-server 20230918.3-unstable deb jellyfin-web 20230917.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From db53f4d572b6c21e11b1ce78b108f392f7953b20 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 01:45:47 +0000 Subject: [PATCH 1784/2257] 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 81c920e..1a442ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230918.3-unstable deb -jellyfin-web 20230917.6-unstable deb +jellyfin-server 20230918.9-unstable deb +jellyfin-web 20230919.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 4d8781a56159c641285d639c86bd8af79f376758 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 08:14:01 +0000 Subject: [PATCH 1785/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1a442ca..42935d6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230918.9-unstable deb -jellyfin-web 20230919.1-unstable deb +jellyfin-web 20230919.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 2bf2748680930041f40ddcec7550b6904c4588f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 12:45:23 +0000 Subject: [PATCH 1786/2257] 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 79f467d..eee26ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -526,8 +526,8 @@ libvorbis0a libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb libvpx7 1.11.0-2ubuntu2 deb -libwebp7 1.2.2-2ubuntu0.22.04.1 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.1 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb libx11-6 2:1.7.5-1ubuntu0.2 deb libx11-data 2:1.7.5-1ubuntu0.2 deb libx11-xcb1 2:1.7.5-1ubuntu0.2 deb @@ -553,7 +553,7 @@ libxxhash0 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.1 deb +locales 2.35-0ubuntu3.3 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From 5b131c01cc7e4fa35a1377d892b97be43f99637a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 19:09:27 +0000 Subject: [PATCH 1787/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 42935d6..8bce1a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230918.9-unstable deb -jellyfin-web 20230919.3-unstable deb +jellyfin-web 20230919.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 44d1e0d10dfc075a1ec18ec3078ad6181a3f89fe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Sep 2023 01:45:22 +0000 Subject: [PATCH 1788/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8bce1a5..0e56928 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230918.9-unstable deb -jellyfin-web 20230919.4-unstable deb +jellyfin-web 20230919.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 67e860614cf02a58c3e89bc0d604a274aa268d13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Sep 2023 08:13:32 +0000 Subject: [PATCH 1789/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0e56928..c3a8833 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230918.9-unstable deb -jellyfin-web 20230919.5-unstable deb +jellyfin-web 20230920.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 1f2410791e44c262b47645f2d1841ac5dab54749 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Sep 2023 15:12:16 +0000 Subject: [PATCH 1790/2257] 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 c3a8833..760da7c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230918.9-unstable deb -jellyfin-web 20230920.3-unstable deb +jellyfin-server 20230920.2-unstable deb +jellyfin-web 20230920.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 0ef2f9cedf21b7f2893d69821ff1e22753282b0b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 21 Sep 2023 18:13:26 +0000 Subject: [PATCH 1791/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 760da7c..fbdd6ab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230920.2-unstable deb -jellyfin-web 20230920.11-unstable deb +jellyfin-web 20230921.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From bd1bfe8a5c276c0b82bcda498c73563c79363667 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Sep 2023 00:39:16 +0000 Subject: [PATCH 1792/2257] 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 fbdd6ab..6b214ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -19,7 +19,7 @@ Emby.Dlna Emby.Naming 10.9.0 dotnet Emby.Photos 10.9.0 dotnet Emby.Server.Implementations 10.9.0 dotnet -HarfBuzzSharp 2.8.2.5 dotnet +HarfBuzzSharp 7.3.0.0 dotnet Jellyfin.Api 1.0.0.0 dotnet Jellyfin.Drawing 10.9.0 dotnet Jellyfin.Drawing.Skia 10.9.0 dotnet @@ -204,9 +204,9 @@ Serilog.Sinks.Debug Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.0.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SkiaSharp 2.88.5.0 dotnet +SkiaSharp 2.88.6.0 dotnet SkiaSharp.Extended.Svg 1.60.0.0 dotnet -SkiaSharp.HarfBuzz 2.88.5.0 dotnet +SkiaSharp.HarfBuzz 2.88.6.0 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230920.2-unstable deb +jellyfin-server 20230921.9-unstable deb jellyfin-web 20230921.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 34f00eb39bd4d3618a5a13a871fb5575fb5ba577 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Sep 2023 07:11:33 +0000 Subject: [PATCH 1793/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6b214ae..8814e63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230921.9-unstable deb -jellyfin-web 20230921.8-unstable deb +jellyfin-web 20230922.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 67fa5a5920807fe600d759eed9105e3073e8e9da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Sep 2023 14:11:10 +0000 Subject: [PATCH 1794/2257] 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 8814e63..9a30971 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230921.9-unstable deb -jellyfin-web 20230922.1-unstable deb +jellyfin-server 20230922.2-unstable deb +jellyfin-web 20230922.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 67e55481a0ce8e1dfb3ed7d8af16c4cf54c8af87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Sep 2023 21:09:29 +0000 Subject: [PATCH 1795/2257] 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 9a30971..e20cb44 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230922.2-unstable deb -jellyfin-web 20230922.4-unstable deb +jellyfin-server 20230922.6-unstable deb +jellyfin-web 20230922.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From bdecd26b9bfc7ddd34791f95cc713edc07a92462 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 23 Sep 2023 04:13:14 +0000 Subject: [PATCH 1796/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e20cb44..178afbd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230922.6-unstable deb -jellyfin-web 20230922.10-unstable deb +jellyfin-web 20230922.13-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 7ca287443aa0f301e162ac5b36c88c880b6828f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 23 Sep 2023 11:10:12 +0000 Subject: [PATCH 1797/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 178afbd..3fa3b44 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230922.6-unstable deb -jellyfin-web 20230922.13-unstable deb +jellyfin-web 20230923.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From cbb381df08b73742d5c1216c3585956da5d9c0e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 23 Sep 2023 18:12:45 +0000 Subject: [PATCH 1798/2257] 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 3fa3b44..209b153 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -204,9 +204,9 @@ Serilog.Sinks.Debug Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.0.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SkiaSharp 2.88.6.0 dotnet +SkiaSharp 2.88.5.0 dotnet SkiaSharp.Extended.Svg 1.60.0.0 dotnet -SkiaSharp.HarfBuzz 2.88.6.0 dotnet +SkiaSharp.HarfBuzz 2.88.5.0 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230922.6-unstable deb -jellyfin-web 20230923.2-unstable deb +jellyfin-server 20230923.12-unstable deb +jellyfin-web 20230923.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From c725e1502729ced29cbe2bc0bfd0d74657f51a53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Sep 2023 00:41:15 +0000 Subject: [PATCH 1799/2257] 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 209b153..5bae097 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230923.12-unstable deb -jellyfin-web 20230923.6-unstable deb +jellyfin-server 20230923.18-unstable deb +jellyfin-web 20230923.12-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 15a1ebf10e77ead244257b8a64a0fc2e7b0f3acf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Sep 2023 03:11:27 +0000 Subject: [PATCH 1800/2257] 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 eee26ac..f4e98f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE - 10.8.10 dotnet + 10.8.11 dotnet 6.0.0 dotnet BDInfo 0.7.6.2 dotnet BlurHashSharp 1.2.0.0 dotnet @@ -10,28 +10,28 @@ DiscUtils.Iso9660 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -DvdLib 10.8.10 dotnet -Emby.Dlna 10.8.10 dotnet -Emby.Drawing 10.8.10 dotnet -Emby.Naming 10.8.10 dotnet -Emby.Notifications 10.8.10 dotnet -Emby.Photos 10.8.10 dotnet -Emby.Server.Implementations 10.8.10 dotnet +DvdLib 10.8.11 dotnet +Emby.Dlna 10.8.11 dotnet +Emby.Drawing 10.8.11 dotnet +Emby.Naming 10.8.11 dotnet +Emby.Notifications 10.8.11 dotnet +Emby.Photos 10.8.11 dotnet +Emby.Server.Implementations 10.8.11 dotnet Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing.Skia 10.8.10 dotnet +Jellyfin.Drawing.Skia 10.8.11 dotnet Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.8.10 dotnet -Jellyfin.Server.Implementations 10.8.10 dotnet +Jellyfin.Server 10.8.11 dotnet +Jellyfin.Server.Implementations 10.8.11 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET .NET Standard 2.0 13.0.1.25517 dotnet -MediaBrowser.Common 10.8.10 dotnet -MediaBrowser.Controller 10.8.10 dotnet -MediaBrowser.LocalMetadata 10.8.10 dotnet -MediaBrowser.MediaEncoding 10.8.10 dotnet -MediaBrowser.Model 10.8.10 dotnet -MediaBrowser.Providers 10.8.10 dotnet -MediaBrowser.XbmcMetadata 10.8.10 dotnet +MediaBrowser.Common 10.8.11 dotnet +MediaBrowser.Controller 10.8.11 dotnet +MediaBrowser.LocalMetadata 10.8.11 dotnet +MediaBrowser.MediaEncoding 10.8.11 dotnet +MediaBrowser.Model 10.8.11 dotnet +MediaBrowser.Providers 10.8.11 dotnet +MediaBrowser.XbmcMetadata 10.8.11 dotnet Microsoft.AspNetCore 6.0.922.41926 dotnet Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet @@ -407,8 +407,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 10.8.10-1 deb -jellyfin-web 10.8.10-1 deb +jellyfin-server 10.8.11-1 deb +jellyfin-web 10.8.11-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 9cd25b30b8aba0057f0cc61b7531fb6af4adf381 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Sep 2023 07:09:21 +0000 Subject: [PATCH 1801/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5bae097..22f464c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230923.18-unstable deb -jellyfin-web 20230923.12-unstable deb +jellyfin-web 20230924.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From b08327715d08db9a2788c08742ee6e7e991fd73d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Sep 2023 14:11:19 +0000 Subject: [PATCH 1802/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 22f464c..5729d06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230923.18-unstable deb -jellyfin-web 20230924.9-unstable deb +jellyfin-web 20230924.12-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 10b12daaa0c08c33bb5c250619f89c9fecd6885a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 24 Sep 2023 21:10:24 +0000 Subject: [PATCH 1803/2257] 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 5729d06..180becb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230923.18-unstable deb -jellyfin-web 20230924.12-unstable deb +jellyfin-server 20230924.3-unstable deb +jellyfin-web 20230924.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From b27e11dd25a74a4384e74121fc3e2b19e9ae282d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Sep 2023 04:12:45 +0000 Subject: [PATCH 1804/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 180becb..80dfd18 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230924.3-unstable deb -jellyfin-web 20230924.16-unstable deb +jellyfin-web 20230924.23-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 7b3355310f82737af480ba2a50027e038283c538 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Sep 2023 17:10:34 +0000 Subject: [PATCH 1805/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 80dfd18..17f420d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230924.3-unstable deb +jellyfin-server 20230925.4-unstable deb jellyfin-web 20230924.23-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 062c97466a9c3a869e067ebe51e2dac2fed9407e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Sep 2023 00:38:51 +0000 Subject: [PATCH 1806/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 17f420d..23094c0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230925.4-unstable deb -jellyfin-web 20230924.23-unstable deb +jellyfin-web 20230925.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From cbff925d2dbb7a3012edcb736b9243a725b42b53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Sep 2023 12:48:17 +0000 Subject: [PATCH 1807/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 23094c0..71c47c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230925.4-unstable deb -jellyfin-web 20230925.5-unstable deb +jellyfin-web 20230926.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 8a76704d93fbe519feff0df56f7c680a6a0f8992 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Sep 2023 19:10:36 +0000 Subject: [PATCH 1808/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 71c47c5..9fad754 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230925.4-unstable deb -jellyfin-web 20230926.4-unstable deb +jellyfin-web 20230926.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 30bccbf87316cfad4a6fc70b3798fb52424e5f95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 01:47:40 +0000 Subject: [PATCH 1809/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9fad754..f57799b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230925.4-unstable deb +jellyfin-server 20230926.1-unstable deb jellyfin-web 20230926.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From f8b10b5f25c5ea95c32952c4ece3b7d4a1fba1ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 08:14:16 +0000 Subject: [PATCH 1810/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f57799b..c82e85a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230926.1-unstable deb -jellyfin-web 20230926.7-unstable deb +jellyfin-web 20230927.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From c7bbb6fdb335ec03989cf6ebcea93a03f9955bff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 15:12:17 +0000 Subject: [PATCH 1811/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c82e85a..549452e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230926.1-unstable deb -jellyfin-web 20230927.4-unstable deb +jellyfin-web 20230927.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 80de095ee05579e0c65226c29c165b138cad1144 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 22:12:07 +0000 Subject: [PATCH 1812/2257] 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 549452e..57f4912 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230926.1-unstable deb -jellyfin-web 20230927.6-unstable deb +jellyfin-server 20230927.9-unstable deb +jellyfin-web 20230927.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 3f39f37f0a40ddab2741768de1104d31ecd1e5bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 28 Sep 2023 12:20:45 +0000 Subject: [PATCH 1813/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 57f4912..53da67e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230927.9-unstable deb -jellyfin-web 20230927.10-unstable deb +jellyfin-web 20230928.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 68ccf3807835539c4117b2a76daa90a449c4aa38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 28 Sep 2023 19:11:01 +0000 Subject: [PATCH 1814/2257] 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 53da67e..d831228 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230927.9-unstable deb -jellyfin-web 20230928.7-unstable deb +jellyfin-server 20230928.7-unstable deb +jellyfin-web 20230928.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 64ea70d2e8fb065849b13c644e5fc56bbe5b0a8e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 29 Sep 2023 15:11:59 +0000 Subject: [PATCH 1815/2257] 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 d831228..1c23c6e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230928.7-unstable deb -jellyfin-web 20230928.8-unstable deb +jellyfin-server 20230929.4-unstable deb +jellyfin-web 20230929.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 0dbe2b9e612cdbaf3099767acf178adc1ed70ea7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 29 Sep 2023 22:12:19 +0000 Subject: [PATCH 1816/2257] 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 1c23c6e..d26ad8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230929.4-unstable deb -jellyfin-web 20230929.11-unstable deb +jellyfin-server 20230929.11-unstable deb +jellyfin-web 20230929.13-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From e244644dfe44fc356bc6e2e7fbad67dd026db92d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 30 Sep 2023 05:11:05 +0000 Subject: [PATCH 1817/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d26ad8a..c3cd525 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230929.11-unstable deb -jellyfin-web 20230929.13-unstable deb +jellyfin-web 20230930.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 2a00c6eeeb28c6afab1439e5947208db4898dbed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 30 Sep 2023 12:18:28 +0000 Subject: [PATCH 1818/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c3cd525..ef3853b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230929.11-unstable deb -jellyfin-web 20230930.1-unstable deb +jellyfin-web 20230930.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 43214833fbe41c5b4f1089b75b684de2ee12d6fc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 30 Sep 2023 19:07:59 +0000 Subject: [PATCH 1819/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ef3853b..3523431 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20230929.11-unstable deb -jellyfin-web 20230930.4-unstable deb +jellyfin-web 20230930.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 9bf7cc6ccb36b9019113aa8a86b85c81a0c73d06 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Oct 2023 08:12:07 +0000 Subject: [PATCH 1820/2257] 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 3523431..0973603 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20230929.11-unstable deb -jellyfin-web 20230930.5-unstable deb +jellyfin-server 20231001.2-unstable deb +jellyfin-web 20231001.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From f9e35b5bb21b7de763488870e438582f81119aeb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Oct 2023 04:12:20 +0000 Subject: [PATCH 1821/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0973603..a4292f2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231001.2-unstable deb -jellyfin-web 20231001.1-unstable deb +jellyfin-web 20231002.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 8dab6992dd0065afd0a35437ec3352adf2bd65b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Oct 2023 11:10:02 +0000 Subject: [PATCH 1822/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a4292f2..215b069 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231001.2-unstable deb -jellyfin-web 20231002.1-unstable deb +jellyfin-web 20231002.8-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 95c30d0aa71bee645a42d980f4ab7815b2157b0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Oct 2023 18:14:23 +0000 Subject: [PATCH 1823/2257] 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 215b069..aaaa8ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231001.2-unstable deb -jellyfin-web 20231002.8-unstable deb +jellyfin-server 20231002.5-unstable deb +jellyfin-web 20231002.19-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From f70a7687cc085bc3e19c850aaf99ef58b0a1521e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 00:38:21 +0000 Subject: [PATCH 1824/2257] 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 aaaa8ea..d61d405 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231002.5-unstable deb -jellyfin-web 20231002.19-unstable deb +jellyfin-web 20231002.25-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb @@ -538,7 +538,7 @@ libuuid1 libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2 deb +libvpx7 1.11.0-2ubuntu2.2 deb libwebp7 1.2.2-2ubuntu0.22.04.2 deb libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb libx11-6 2:1.7.5-1ubuntu0.2 deb From d4d4a36e4a4a097b0a442c3588300767f5031e5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 07:11:47 +0000 Subject: [PATCH 1825/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d61d405..e56d083 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231002.5-unstable deb -jellyfin-web 20231002.25-unstable deb +jellyfin-web 20231003.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 8cedd2ba941ab8a8a06579e3b82cf08bc712fb82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 12:46:13 +0000 Subject: [PATCH 1826/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e56d083..ae87829 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231002.5-unstable deb +jellyfin-server 20231003.5-unstable deb jellyfin-web 20231003.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d9a99fc742cff25a1c1de6374f6a7acf22ae33d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 12:46:58 +0000 Subject: [PATCH 1827/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f4e98f0..67c81fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -525,7 +525,7 @@ libuuid1 libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2 deb +libvpx7 1.11.0-2ubuntu2.2 deb libwebp7 1.2.2-2ubuntu0.22.04.2 deb libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb libx11-6 2:1.7.5-1ubuntu0.2 deb From aa0d03bd9db167a1b862abb6bbeea078a193036c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Oct 2023 19:10:58 +0000 Subject: [PATCH 1828/2257] 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 ae87829..1fb135e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231003.5-unstable deb -jellyfin-web 20231003.5-unstable deb +jellyfin-server 20231003.10-unstable deb +jellyfin-web 20231003.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb @@ -541,9 +541,9 @@ libvorbisfile3 libvpx7 1.11.0-2ubuntu2.2 deb libwebp7 1.2.2-2ubuntu0.22.04.2 deb libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.2 deb -libx11-data 2:1.7.5-1ubuntu0.2 deb -libx11-xcb1 2:1.7.5-1ubuntu0.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb libx264-163 2:0.163.3060+git5db6aa6-2build1 deb libx265-199 3.5-2 deb libxau6 1:1.0.9-1build5 deb From 035d8db8314814422e2d4bf75056460967b4dbf1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Oct 2023 01:47:45 +0000 Subject: [PATCH 1829/2257] 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 1fb135e..3b7512a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231003.10-unstable deb -jellyfin-web 20231003.14-unstable deb +jellyfin-web 20231003.32-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb @@ -565,7 +565,7 @@ libxxhash0 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.3 deb +locales 2.35-0ubuntu3.4 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From 9690adb4f362c340b8981c5919e4528456c4c8c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Oct 2023 08:13:55 +0000 Subject: [PATCH 1830/2257] 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 3b7512a..3d96138 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231003.10-unstable deb -jellyfin-web 20231003.32-unstable deb +jellyfin-server 20231004.1-unstable deb +jellyfin-web 20231004.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 5faf6014dfb4f133e2110e515268a01e7af8fdea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Oct 2023 15:11:59 +0000 Subject: [PATCH 1831/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3d96138..539db0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231004.1-unstable deb +jellyfin-server 20231004.3-unstable deb jellyfin-web 20231004.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 42afc822e33f399ce5226ba469aae8aaf61d2ea5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Oct 2023 22:11:24 +0000 Subject: [PATCH 1832/2257] 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 539db0e..feedf18 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231004.3-unstable deb -jellyfin-web 20231004.7-unstable deb +jellyfin-server 20231004.6-unstable deb +jellyfin-web 20231004.27-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 86b3a88d54e220288bd05a53a0630659b605cf77 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Oct 2023 05:10:29 +0000 Subject: [PATCH 1833/2257] 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 feedf18..f80a93b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231004.6-unstable deb -jellyfin-web 20231004.27-unstable deb +jellyfin-server 20231004.8-unstable deb +jellyfin-web 20231005.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 28d0f74dc643ce00252a991a7ff623bc85950734 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Oct 2023 19:09:24 +0000 Subject: [PATCH 1834/2257] 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 f80a93b..c3d4ffb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231004.8-unstable deb -jellyfin-web 20231005.2-unstable deb +jellyfin-server 20231005.6-unstable deb +jellyfin-web 20231005.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 8daf7c3725095c73d8da71e83cd0ac88ccd5ba9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Oct 2023 01:46:09 +0000 Subject: [PATCH 1835/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c3d4ffb..7f38139 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231005.6-unstable deb -jellyfin-web 20231005.10-unstable deb +jellyfin-web 20231006.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From e3b5a2b45e0251a7305754c8f81f7a1047bff6bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Oct 2023 08:14:16 +0000 Subject: [PATCH 1836/2257] 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 7f38139..4170c27 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231005.6-unstable deb -jellyfin-web 20231006.1-unstable deb +jellyfin-server 20231006.1-unstable deb +jellyfin-web 20231006.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 9b308f7fae6a5f4227823263fe53ff6757dbcb5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Oct 2023 15:12:38 +0000 Subject: [PATCH 1837/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4170c27..127d620 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231006.1-unstable deb +jellyfin-server 20231006.7-unstable deb jellyfin-web 20231006.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 24b3e8759bf4d7612cdaa816812ddd70ac423b2a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Oct 2023 22:09:14 +0000 Subject: [PATCH 1838/2257] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 36 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 221f520..945b751 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -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/jellyfin") | .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/jellyfin",\ - "shortDescription":"example description",\ - "libraryType":"docker",\ - "website":"https://github.com/linuxserver/docker-jellyfin",\ - "backendUrl":"https://ghcr.io/linuxserver/jellyfin",\ - "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' || : - 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 POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/branches/nightly/protection \ + -d $(jq -c . << EOF + { + "required_status_checks": null, + "enforce_admins": true, + "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 6b3c04743f1e59ad845f4cd39e18e00ead5dd995 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 6 Oct 2023 22:10:59 +0000 Subject: [PATCH 1839/2257] Bot Updating Templated Files --- README.md | 136 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 101 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 176c52c..cf34adb 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-jellyfin/blob/nightly/.github/CONTRIBUTING.md --> - +<!-- DO NOT EDIT THIS FILE MANUALLY --> +<!-- Please read https://github.com/linuxserver/docker-jellyfin/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!") @@ -66,6 +65,7 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Jellyfin releases | | nightly | ✅ | Unstable Jellyfin releases | + ## Application Setup Webui can be found at `http://<your-ip>:8096` @@ -111,7 +111,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ## 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)) @@ -166,12 +166,11 @@ docker run -d \ --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/jellyfin: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 | | :----: | --- | @@ -198,10 +197,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 @@ -210,15 +209,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 @@ -229,12 +233,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 jellyfin /bin/bash` -* To monitor the logs of the container in realtime: `docker logs -f jellyfin` -* container version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` -* image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin:nightly` +* Shell access whilst the container is running: + + ```bash + docker exec -it jellyfin /bin/bash + ``` + +* To monitor the logs of the container in realtime: + + ```bash + docker logs -f jellyfin + ``` + +* Container version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin + ``` + +* Image version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin:nightly + ``` ## Updating Info @@ -244,38 +265,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 jellyfin` -* Let compose update all containers as necessary: `docker-compose up -d` - * or update a single container: `docker-compose up -d jellyfin` -* 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 jellyfin + ``` + +* Update containers: + * All containers: + + ```bash + docker-compose up -d + ``` + + * Single container: + + ```bash + docker-compose up -d jellyfin + ``` + +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/jellyfin:nightly` -* Stop the running container: `docker stop jellyfin` -* Delete the container: `docker rm jellyfin` +* Update the image: + + ```bash + docker pull lscr.io/linuxserver/jellyfin:nightly + ``` + +* Stop the running container: + + ```bash + docker stop jellyfin + ``` + +* Delete the container: + + ```bash + docker rm jellyfin + ``` + * 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 jellyfin - ``` + ```bash + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once jellyfin + ``` * 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 9fe7ec3ea76ea73a56fa567878b717ce0b215362 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 05:09:27 +0000 Subject: [PATCH 1840/2257] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 945b751..c31f822 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -829,11 +829,11 @@ pipeline { steps { echo "Setting up protection for release branch nightly" sh '''#! /bin/bash - curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/branches/nightly/protection \ + 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": true, + "enforce_admins": false, "required_pull_request_reviews": { "dismiss_stale_reviews": false, "require_code_owner_reviews": false, From ef8383717e31a7e15456cd08724ba4706d49eaa0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 05:12:37 +0000 Subject: [PATCH 1841/2257] 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 127d620..02764f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231006.7-unstable deb -jellyfin-web 20231006.7-unstable deb +jellyfin-server 20231006.14-unstable deb +jellyfin-web 20231007.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 4de22a4c53482d2b9c3ff70add5b8f14769b47e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 12:16:42 +0000 Subject: [PATCH 1842/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 02764f0..798831f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231006.14-unstable deb -jellyfin-web 20231007.5-unstable deb +jellyfin-web 20231007.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 94dadf88431dbfd6623a3ca73eb25d673fb3c7ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Oct 2023 19:08:18 +0000 Subject: [PATCH 1843/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 798831f..933f231 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231006.14-unstable deb -jellyfin-web 20231007.7-unstable deb +jellyfin-web 20231007.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From abb0c232e2e819fb41657b1da660facdc28e1e83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Oct 2023 15:11:17 +0000 Subject: [PATCH 1844/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 933f231..ae2a718 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231006.14-unstable deb +jellyfin-server 20231008.7-unstable deb jellyfin-web 20231007.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From f07c4a43fb45769688af83223d25d40a20a61d41 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Oct 2023 04:12:38 +0000 Subject: [PATCH 1845/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ae2a718..de2843b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231008.7-unstable deb +jellyfin-server 20231009.1-unstable deb jellyfin-web 20231007.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 8bf2ea9e31c8b059db69030d26734996c04b7aab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Oct 2023 11:10:06 +0000 Subject: [PATCH 1846/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index de2843b..9c61167 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231009.1-unstable deb -jellyfin-web 20231007.14-unstable deb +jellyfin-web 20231009.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 1e7add7d122a0ef8593d806deab0cebdf0249b4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Oct 2023 18:13:06 +0000 Subject: [PATCH 1847/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9c61167..37c574f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231009.1-unstable deb +jellyfin-server 20231009.9-unstable deb jellyfin-web 20231009.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d1832d65149e079e668f5e002540a5e7954d9a9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 00:37:50 +0000 Subject: [PATCH 1848/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 37c574f..08c8d1d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231009.9-unstable deb -jellyfin-web 20231009.2-unstable deb +jellyfin-web 20231009.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From a166bc09dd9e5f3462b10e2732a2ad513b5387b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 07:10:21 +0000 Subject: [PATCH 1849/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 08c8d1d..534e704 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ hostname init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb jellyfin-server 20231009.9-unstable deb -jellyfin-web 20231009.14-unstable deb +jellyfin-web 20231010.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 8071da0bcf3c8b66ff4c457af88e3f7d9b695e47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 12:42:57 +0000 Subject: [PATCH 1850/2257] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 36 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 13ad87d..9450f70 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -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 "master" - 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/jellyfin") | .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/jellyfin",\ - "shortDescription":"example description",\ - "libraryType":"docker",\ - "website":"https://github.com/linuxserver/docker-jellyfin",\ - "backendUrl":"https://ghcr.io/linuxserver/jellyfin",\ - "publicUrl":"https://lscr.io/linuxserver/jellyfin"}' || : - 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 "master" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + echo "Setting up protection for release branch master" + sh '''#! /bin/bash + curl -H "Authorization: token ${GITHUB_TOKEN}" -X PUT https://api.github.com/repos/${LS_USER}/${LS_REPO}/branches/master/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 0e00f3376c41ae6827ef397deae99d2619cbe0ee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 12:44:23 +0000 Subject: [PATCH 1851/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 534e704..b0ea143 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231009.9-unstable deb +jellyfin-server 20231010.6-unstable deb jellyfin-web 20231010.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From bae4436beb8b5255b4fbc0f8d29eab3421a72621 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 12:46:09 +0000 Subject: [PATCH 1852/2257] Bot Updating Templated Files --- README.md | 136 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 101 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 5bb0294..d3f67f1 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-jellyfin/blob/master/.github/CONTRIBUTING.md --> - +<!-- DO NOT EDIT THIS FILE MANUALLY --> +<!-- Please read https://github.com/linuxserver/docker-jellyfin/blob/master/.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!") @@ -66,6 +65,7 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Stable Jellyfin releases | | nightly | ✅ | Nightly Jellyfin releases | + ## Application Setup Webui can be found at `http://<your-ip>:8096` @@ -116,7 +116,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ## 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)) @@ -162,12 +162,11 @@ docker run -d \ -v /path/to/movies:/data/movies \ --restart unless-stopped \ lscr.io/linuxserver/jellyfin:latest - ``` ## 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 | | :----: | --- | @@ -190,10 +189,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 @@ -217,15 +216,20 @@ The [official documentation for environmentals](https://jellyfin.org/docs/genera ## 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 @@ -236,12 +240,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 jellyfin /bin/bash` -* To monitor the logs of the container in realtime: `docker logs -f jellyfin` -* container version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin` -* image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin:latest` +* Shell access whilst the container is running: + + ```bash + docker exec -it jellyfin /bin/bash + ``` + +* To monitor the logs of the container in realtime: + + ```bash + docker logs -f jellyfin + ``` + +* Container version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' jellyfin + ``` + +* Image version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/jellyfin:latest + ``` ## Updating Info @@ -251,38 +272,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 jellyfin` -* Let compose update all containers as necessary: `docker-compose up -d` - * or update a single container: `docker-compose up -d jellyfin` -* 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 jellyfin + ``` + +* Update containers: + * All containers: + + ```bash + docker-compose up -d + ``` + + * Single container: + + ```bash + docker-compose up -d jellyfin + ``` + +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/jellyfin:latest` -* Stop the running container: `docker stop jellyfin` -* Delete the container: `docker rm jellyfin` +* Update the image: + + ```bash + docker pull lscr.io/linuxserver/jellyfin:latest + ``` + +* Stop the running container: + + ```bash + docker stop jellyfin + ``` + +* Delete the container: + + ```bash + docker rm jellyfin + ``` + * 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 jellyfin - ``` + ```bash + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once jellyfin + ``` * 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 2bbfa9e36f2c2196d0d521f697ad2bbff5433656 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 12:51:17 +0000 Subject: [PATCH 1853/2257] 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 67c81fe..f99b80d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -528,9 +528,9 @@ libvorbisfile3 libvpx7 1.11.0-2ubuntu2.2 deb libwebp7 1.2.2-2ubuntu0.22.04.2 deb libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.2 deb -libx11-data 2:1.7.5-1ubuntu0.2 deb -libx11-xcb1 2:1.7.5-1ubuntu0.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb libx264-163 2:0.163.3060+git5db6aa6-2build1 deb libx265-199 3.5-2 deb libxau6 1:1.0.9-1build5 deb @@ -553,7 +553,7 @@ libxxhash0 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.3 deb +locales 2.35-0ubuntu3.4 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From 8c5f8f9d10e34c8c45b21b7749ff27cede4d08e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 19:08:22 +0000 Subject: [PATCH 1854/2257] 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 b0ea143..875d230 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -47,7 +47,7 @@ Microsoft.AspNetCore.Authentication.Abstractions Microsoft.AspNetCore.Authentication.Cookies 7.0.1123.42502 dotnet Microsoft.AspNetCore.Authentication.Core 7.0.1123.42502 dotnet Microsoft.AspNetCore.Authentication.OAuth 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Authorization 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authorization 7.0.1223.47922 dotnet Microsoft.AspNetCore.Authorization.Policy 7.0.1123.42502 dotnet Microsoft.AspNetCore.Components 7.0.1123.42502 dotnet Microsoft.AspNetCore.Components.Authorization 7.0.1123.42502 dotnet @@ -83,7 +83,7 @@ Microsoft.AspNetCore.HttpsPolicy Microsoft.AspNetCore.Identity 7.0.1123.42502 dotnet Microsoft.AspNetCore.Localization 7.0.1123.42502 dotnet Microsoft.AspNetCore.Localization.Routing 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Metadata 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Metadata 7.0.1223.47922 dotnet Microsoft.AspNetCore.Mvc 7.0.1123.42502 dotnet Microsoft.AspNetCore.Mvc.Abstractions 7.0.1123.42502 dotnet Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1123.42502 dotnet @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231010.6-unstable deb -jellyfin-web 20231010.7-unstable deb +jellyfin-server 20231010.14-unstable deb +jellyfin-web 20231010.17-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From b2da83d3bb4584a9a4812c7e6f4a4188fa9fe4a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 01:45:00 +0000 Subject: [PATCH 1855/2257] Bot Updating Package Versions --- package_versions.txt | 538 +++++++++++++++++++++---------------------- 1 file changed, 269 insertions(+), 269 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 875d230..67cd0bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,96 +40,96 @@ MediaBrowser.XbmcMetadata MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Authentication 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1123.42502 dotnet +Microsoft.AspNetCore 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Authentication 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1223.47922 dotnet Microsoft.AspNetCore.Authorization 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Components 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Cors 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1123.42502 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1123.42502 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1123.42502 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Hosting 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1123.42502 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1123.42502 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1123.42502 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Identity 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Localization 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Components 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Cors 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1223.47922 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1223.47922 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1223.47922 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Hosting 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1223.47922 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1223.47922 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1223.47922 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Identity 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Localization 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1223.47922 dotnet Microsoft.AspNetCore.Metadata 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1123.42502 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1123.42502 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Razor 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1123.42502 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1123.42502 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1123.42502 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Routing 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1123.42502 dotnet -Microsoft.AspNetCore.Session 7.0.1123.42502 dotnet -Microsoft.AspNetCore.SignalR 7.0.1123.42502 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1123.42502 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1123.42502 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1123.42502 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1123.42502 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1123.42502 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1123.42502 dotnet +Microsoft.AspNetCore.Mvc 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1223.47922 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1223.47922 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Razor 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1223.47922 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1223.47922 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1223.47922 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Routing 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1223.47922 dotnet +Microsoft.AspNetCore.Session 7.0.1223.47922 dotnet +Microsoft.AspNetCore.SignalR 7.0.1223.47922 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1223.47922 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1223.47922 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1223.47922 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1223.47922 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1223.47922 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1223.47922 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1123.42427 dotnet -Microsoft.Data.Sqlite 7.0.1123.40906 dotnet -Microsoft.EntityFrameworkCore 7.0.1123.40906 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1123.40906 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1123.40906 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1123.40906 dotnet +Microsoft.CSharp 7.0.1223.47720 dotnet +Microsoft.Data.Sqlite 7.0.1223.47811 dotnet +Microsoft.EntityFrameworkCore 7.0.1223.47811 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1223.47811 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1223.47811 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1223.47811 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet Microsoft.Extensions.Configuration 7.0.22.51805 dotnet @@ -140,28 +140,28 @@ Microsoft.Extensions.Configuration.EnvironmentVariables Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1123.42502 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1223.47922 dotnet Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1123.42502 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1123.42502 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1123.42502 dotnet -Microsoft.Extensions.Features 7.0.1123.42502 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1223.47922 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1223.47922 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1223.47922 dotnet +Microsoft.Extensions.Features 7.0.1223.47922 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1123.42502 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1223.47922 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet Microsoft.Extensions.Hosting 7.0.323.6910 dotnet Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1123.42502 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1123.42502 dotnet -Microsoft.Extensions.Localization 7.0.1123.42502 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1123.42502 dotnet +Microsoft.Extensions.Identity.Core 7.0.1223.47922 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1223.47922 dotnet +Microsoft.Extensions.Localization 7.0.1223.47922 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1223.47922 dotnet Microsoft.Extensions.Logging 7.0.22.51805 dotnet Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet @@ -170,19 +170,19 @@ Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1123.42502 dotnet +Microsoft.Extensions.ObjectPool 7.0.1223.47922 dotnet Microsoft.Extensions.Options 7.0.323.6910 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1123.42502 dotnet -Microsoft.JSInterop 7.0.1123.42502 dotnet -Microsoft.Net.Http.Headers 7.0.1123.42502 dotnet +Microsoft.Extensions.WebEncoders 7.0.1223.47922 dotnet +Microsoft.JSInterop 7.0.1223.47922 dotnet +Microsoft.Net.Http.Headers 7.0.1223.47922 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1123.42427 dotnet -Microsoft.VisualBasic.Core 12.0.1123.42427 dotnet -Microsoft.Win32.Primitives 7.0.1123.42427 dotnet -Microsoft.Win32.Registry 7.0.1123.42427 dotnet +Microsoft.VisualBasic 7.0.1223.47720 dotnet +Microsoft.VisualBasic.Core 12.0.1223.47720 dotnet +Microsoft.Win32.Primitives 7.0.1223.47720 dotnet +Microsoft.Win32.Registry 7.0.1223.47720 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -211,177 +211,177 @@ Swashbuckle.AspNetCore.ReDoc Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1123.42427 dotnet -System.AppContext 7.0.1123.42427 dotnet -System.Buffers 7.0.1123.42427 dotnet -System.Collections 7.0.1123.42427 dotnet -System.Collections.Concurrent 7.0.1123.42427 dotnet -System.Collections.Immutable 7.0.1123.42427 dotnet -System.Collections.NonGeneric 7.0.1123.42427 dotnet -System.Collections.Specialized 7.0.1123.42427 dotnet -System.ComponentModel 7.0.1123.42427 dotnet -System.ComponentModel.Annotations 7.0.1123.42427 dotnet -System.ComponentModel.DataAnnotations 7.0.1123.42427 dotnet -System.ComponentModel.EventBasedAsync 7.0.1123.42427 dotnet -System.ComponentModel.Primitives 7.0.1123.42427 dotnet -System.ComponentModel.TypeConverter 7.0.1123.42427 dotnet -System.Configuration 7.0.1123.42427 dotnet -System.Console 7.0.1123.42427 dotnet -System.Core 7.0.1123.42427 dotnet -System.Data 7.0.1123.42427 dotnet -System.Data.Common 7.0.1123.42427 dotnet -System.Data.DataSetExtensions 7.0.1123.42427 dotnet -System.Diagnostics.Contracts 7.0.1123.42427 dotnet -System.Diagnostics.Debug 7.0.1123.42427 dotnet -System.Diagnostics.DiagnosticSource 7.0.1123.42427 dotnet +System 7.0.1223.47720 dotnet +System.AppContext 7.0.1223.47720 dotnet +System.Buffers 7.0.1223.47720 dotnet +System.Collections 7.0.1223.47720 dotnet +System.Collections.Concurrent 7.0.1223.47720 dotnet +System.Collections.Immutable 7.0.1223.47720 dotnet +System.Collections.NonGeneric 7.0.1223.47720 dotnet +System.Collections.Specialized 7.0.1223.47720 dotnet +System.ComponentModel 7.0.1223.47720 dotnet +System.ComponentModel.Annotations 7.0.1223.47720 dotnet +System.ComponentModel.DataAnnotations 7.0.1223.47720 dotnet +System.ComponentModel.EventBasedAsync 7.0.1223.47720 dotnet +System.ComponentModel.Primitives 7.0.1223.47720 dotnet +System.ComponentModel.TypeConverter 7.0.1223.47720 dotnet +System.Configuration 7.0.1223.47720 dotnet +System.Console 7.0.1223.47720 dotnet +System.Core 7.0.1223.47720 dotnet +System.Data 7.0.1223.47720 dotnet +System.Data.Common 7.0.1223.47720 dotnet +System.Data.DataSetExtensions 7.0.1223.47720 dotnet +System.Diagnostics.Contracts 7.0.1223.47720 dotnet +System.Diagnostics.Debug 7.0.1223.47720 dotnet +System.Diagnostics.DiagnosticSource 7.0.1223.47720 dotnet System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1123.42427 dotnet -System.Diagnostics.Process 7.0.1123.42427 dotnet -System.Diagnostics.StackTrace 7.0.1123.42427 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1123.42427 dotnet -System.Diagnostics.Tools 7.0.1123.42427 dotnet -System.Diagnostics.TraceSource 7.0.1123.42427 dotnet -System.Diagnostics.Tracing 7.0.1123.42427 dotnet -System.Drawing 7.0.1123.42427 dotnet +System.Diagnostics.FileVersionInfo 7.0.1223.47720 dotnet +System.Diagnostics.Process 7.0.1223.47720 dotnet +System.Diagnostics.StackTrace 7.0.1223.47720 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1223.47720 dotnet +System.Diagnostics.Tools 7.0.1223.47720 dotnet +System.Diagnostics.TraceSource 7.0.1223.47720 dotnet +System.Diagnostics.Tracing 7.0.1223.47720 dotnet +System.Drawing 7.0.1223.47720 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1123.42427 dotnet -System.Dynamic.Runtime 7.0.1123.42427 dotnet -System.Formats.Asn1 7.0.1123.42427 dotnet -System.Formats.Tar 7.0.1123.42427 dotnet -System.Globalization 7.0.1123.42427 dotnet -System.Globalization.Calendars 7.0.1123.42427 dotnet -System.Globalization.Extensions 7.0.1123.42427 dotnet -System.IO 7.0.1123.42427 dotnet -System.IO.Compression 7.0.1123.42427 dotnet -System.IO.Compression.Brotli 7.0.1123.42427 dotnet -System.IO.Compression.FileSystem 7.0.1123.42427 dotnet -System.IO.Compression.ZipFile 7.0.1123.42427 dotnet -System.IO.FileSystem 7.0.1123.42427 dotnet -System.IO.FileSystem.AccessControl 7.0.1123.42427 dotnet -System.IO.FileSystem.DriveInfo 7.0.1123.42427 dotnet -System.IO.FileSystem.Primitives 7.0.1123.42427 dotnet -System.IO.FileSystem.Watcher 7.0.1123.42427 dotnet -System.IO.IsolatedStorage 7.0.1123.42427 dotnet -System.IO.MemoryMappedFiles 7.0.1123.42427 dotnet +System.Drawing.Primitives 7.0.1223.47720 dotnet +System.Dynamic.Runtime 7.0.1223.47720 dotnet +System.Formats.Asn1 7.0.1223.47720 dotnet +System.Formats.Tar 7.0.1223.47720 dotnet +System.Globalization 7.0.1223.47720 dotnet +System.Globalization.Calendars 7.0.1223.47720 dotnet +System.Globalization.Extensions 7.0.1223.47720 dotnet +System.IO 7.0.1223.47720 dotnet +System.IO.Compression 7.0.1223.47720 dotnet +System.IO.Compression.Brotli 7.0.1223.47720 dotnet +System.IO.Compression.FileSystem 7.0.1223.47720 dotnet +System.IO.Compression.ZipFile 7.0.1223.47720 dotnet +System.IO.FileSystem 7.0.1223.47720 dotnet +System.IO.FileSystem.AccessControl 7.0.1223.47720 dotnet +System.IO.FileSystem.DriveInfo 7.0.1223.47720 dotnet +System.IO.FileSystem.Primitives 7.0.1223.47720 dotnet +System.IO.FileSystem.Watcher 7.0.1223.47720 dotnet +System.IO.IsolatedStorage 7.0.1223.47720 dotnet +System.IO.MemoryMappedFiles 7.0.1223.47720 dotnet System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1123.42427 dotnet -System.IO.Pipes.AccessControl 7.0.1123.42427 dotnet -System.IO.UnmanagedMemoryStream 7.0.1123.42427 dotnet -System.Linq 7.0.1123.42427 dotnet +System.IO.Pipes 7.0.1223.47720 dotnet +System.IO.Pipes.AccessControl 7.0.1223.47720 dotnet +System.IO.UnmanagedMemoryStream 7.0.1223.47720 dotnet +System.Linq 7.0.1223.47720 dotnet System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1123.42427 dotnet -System.Linq.Parallel 7.0.1123.42427 dotnet -System.Linq.Queryable 7.0.1123.42427 dotnet -System.Memory 7.0.1123.42427 dotnet -System.Net 7.0.1123.42427 dotnet -System.Net.Http 7.0.1123.42427 dotnet -System.Net.Http.Json 7.0.1123.42427 dotnet -System.Net.HttpListener 7.0.1123.42427 dotnet -System.Net.Mail 7.0.1123.42427 dotnet -System.Net.NameResolution 7.0.1123.42427 dotnet -System.Net.NetworkInformation 7.0.1123.42427 dotnet -System.Net.Ping 7.0.1123.42427 dotnet -System.Net.Primitives 7.0.1123.42427 dotnet -System.Net.Quic 7.0.1123.42427 dotnet -System.Net.Requests 7.0.1123.42427 dotnet -System.Net.Security 7.0.1123.42427 dotnet -System.Net.ServicePoint 7.0.1123.42427 dotnet -System.Net.Sockets 7.0.1123.42427 dotnet -System.Net.WebClient 7.0.1123.42427 dotnet -System.Net.WebHeaderCollection 7.0.1123.42427 dotnet -System.Net.WebProxy 7.0.1123.42427 dotnet -System.Net.WebSockets 7.0.1123.42427 dotnet -System.Net.WebSockets.Client 7.0.1123.42427 dotnet -System.Numerics 7.0.1123.42427 dotnet -System.Numerics.Vectors 7.0.1123.42427 dotnet -System.ObjectModel 7.0.1123.42427 dotnet -System.Private.CoreLib 7.0.1123.42427 dotnet -System.Private.DataContractSerialization 7.0.1123.42427 dotnet -System.Private.Uri 7.0.1123.42427 dotnet -System.Private.Xml 7.0.1123.42427 dotnet -System.Private.Xml.Linq 7.0.1123.42427 dotnet -System.Reflection 7.0.1123.42427 dotnet -System.Reflection.DispatchProxy 7.0.1123.42427 dotnet -System.Reflection.Emit 7.0.1123.42427 dotnet -System.Reflection.Emit.ILGeneration 7.0.1123.42427 dotnet -System.Reflection.Emit.Lightweight 7.0.1123.42427 dotnet -System.Reflection.Extensions 7.0.1123.42427 dotnet -System.Reflection.Metadata 7.0.1123.42427 dotnet -System.Reflection.Primitives 7.0.1123.42427 dotnet -System.Reflection.TypeExtensions 7.0.1123.42427 dotnet -System.Resources.Reader 7.0.1123.42427 dotnet -System.Resources.ResourceManager 7.0.1123.42427 dotnet -System.Resources.Writer 7.0.1123.42427 dotnet -System.Runtime 7.0.1123.42427 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1123.42427 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1123.42427 dotnet -System.Runtime.Extensions 7.0.1123.42427 dotnet -System.Runtime.Handles 7.0.1123.42427 dotnet -System.Runtime.InteropServices 7.0.1123.42427 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1123.42427 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1123.42427 dotnet -System.Runtime.Intrinsics 7.0.1123.42427 dotnet -System.Runtime.Loader 7.0.1123.42427 dotnet -System.Runtime.Numerics 7.0.1123.42427 dotnet -System.Runtime.Serialization 7.0.1123.42427 dotnet -System.Runtime.Serialization.Formatters 7.0.1123.42427 dotnet -System.Runtime.Serialization.Json 7.0.1123.42427 dotnet -System.Runtime.Serialization.Primitives 7.0.1123.42427 dotnet -System.Runtime.Serialization.Xml 7.0.1123.42427 dotnet -System.Security 7.0.1123.42427 dotnet -System.Security.AccessControl 7.0.1123.42427 dotnet -System.Security.Claims 7.0.1123.42427 dotnet -System.Security.Cryptography 7.0.1123.42427 dotnet -System.Security.Cryptography.Algorithms 7.0.1123.42427 dotnet -System.Security.Cryptography.Cng 7.0.1123.42427 dotnet -System.Security.Cryptography.Csp 7.0.1123.42427 dotnet -System.Security.Cryptography.Encoding 7.0.1123.42427 dotnet -System.Security.Cryptography.OpenSsl 7.0.1123.42427 dotnet +System.Linq.Expressions 7.0.1223.47720 dotnet +System.Linq.Parallel 7.0.1223.47720 dotnet +System.Linq.Queryable 7.0.1223.47720 dotnet +System.Memory 7.0.1223.47720 dotnet +System.Net 7.0.1223.47720 dotnet +System.Net.Http 7.0.1223.47720 dotnet +System.Net.Http.Json 7.0.1223.47720 dotnet +System.Net.HttpListener 7.0.1223.47720 dotnet +System.Net.Mail 7.0.1223.47720 dotnet +System.Net.NameResolution 7.0.1223.47720 dotnet +System.Net.NetworkInformation 7.0.1223.47720 dotnet +System.Net.Ping 7.0.1223.47720 dotnet +System.Net.Primitives 7.0.1223.47720 dotnet +System.Net.Quic 7.0.1223.47720 dotnet +System.Net.Requests 7.0.1223.47720 dotnet +System.Net.Security 7.0.1223.47720 dotnet +System.Net.ServicePoint 7.0.1223.47720 dotnet +System.Net.Sockets 7.0.1223.47720 dotnet +System.Net.WebClient 7.0.1223.47720 dotnet +System.Net.WebHeaderCollection 7.0.1223.47720 dotnet +System.Net.WebProxy 7.0.1223.47720 dotnet +System.Net.WebSockets 7.0.1223.47720 dotnet +System.Net.WebSockets.Client 7.0.1223.47720 dotnet +System.Numerics 7.0.1223.47720 dotnet +System.Numerics.Vectors 7.0.1223.47720 dotnet +System.ObjectModel 7.0.1223.47720 dotnet +System.Private.CoreLib 7.0.1223.47720 dotnet +System.Private.DataContractSerialization 7.0.1223.47720 dotnet +System.Private.Uri 7.0.1223.47720 dotnet +System.Private.Xml 7.0.1223.47720 dotnet +System.Private.Xml.Linq 7.0.1223.47720 dotnet +System.Reflection 7.0.1223.47720 dotnet +System.Reflection.DispatchProxy 7.0.1223.47720 dotnet +System.Reflection.Emit 7.0.1223.47720 dotnet +System.Reflection.Emit.ILGeneration 7.0.1223.47720 dotnet +System.Reflection.Emit.Lightweight 7.0.1223.47720 dotnet +System.Reflection.Extensions 7.0.1223.47720 dotnet +System.Reflection.Metadata 7.0.1223.47720 dotnet +System.Reflection.Primitives 7.0.1223.47720 dotnet +System.Reflection.TypeExtensions 7.0.1223.47720 dotnet +System.Resources.Reader 7.0.1223.47720 dotnet +System.Resources.ResourceManager 7.0.1223.47720 dotnet +System.Resources.Writer 7.0.1223.47720 dotnet +System.Runtime 7.0.1223.47720 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1223.47720 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1223.47720 dotnet +System.Runtime.Extensions 7.0.1223.47720 dotnet +System.Runtime.Handles 7.0.1223.47720 dotnet +System.Runtime.InteropServices 7.0.1223.47720 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1223.47720 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1223.47720 dotnet +System.Runtime.Intrinsics 7.0.1223.47720 dotnet +System.Runtime.Loader 7.0.1223.47720 dotnet +System.Runtime.Numerics 7.0.1223.47720 dotnet +System.Runtime.Serialization 7.0.1223.47720 dotnet +System.Runtime.Serialization.Formatters 7.0.1223.47720 dotnet +System.Runtime.Serialization.Json 7.0.1223.47720 dotnet +System.Runtime.Serialization.Primitives 7.0.1223.47720 dotnet +System.Runtime.Serialization.Xml 7.0.1223.47720 dotnet +System.Security 7.0.1223.47720 dotnet +System.Security.AccessControl 7.0.1223.47720 dotnet +System.Security.Claims 7.0.1223.47720 dotnet +System.Security.Cryptography 7.0.1223.47720 dotnet +System.Security.Cryptography.Algorithms 7.0.1223.47720 dotnet +System.Security.Cryptography.Cng 7.0.1223.47720 dotnet +System.Security.Cryptography.Csp 7.0.1223.47720 dotnet +System.Security.Cryptography.Encoding 7.0.1223.47720 dotnet +System.Security.Cryptography.OpenSsl 7.0.1223.47720 dotnet System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1123.42427 dotnet -System.Security.Cryptography.X509Certificates 7.0.1123.42427 dotnet +System.Security.Cryptography.Primitives 7.0.1223.47720 dotnet +System.Security.Cryptography.X509Certificates 7.0.1223.47720 dotnet System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1123.42427 dotnet -System.Security.Principal.Windows 7.0.1123.42427 dotnet -System.Security.SecureString 7.0.1123.42427 dotnet -System.ServiceModel.Web 7.0.1123.42427 dotnet -System.ServiceProcess 7.0.1123.42427 dotnet -System.Text.Encoding 7.0.1123.42427 dotnet -System.Text.Encoding.CodePages 7.0.1123.42427 dotnet -System.Text.Encoding.Extensions 7.0.1123.42427 dotnet -System.Text.Encodings.Web 7.0.1123.42427 dotnet -System.Text.Json 7.0.1123.42427 dotnet -System.Text.RegularExpressions 7.0.1123.42427 dotnet -System.Threading 7.0.1123.42427 dotnet -System.Threading.Channels 7.0.1123.42427 dotnet -System.Threading.Overlapped 7.0.1123.42427 dotnet +System.Security.Principal 7.0.1223.47720 dotnet +System.Security.Principal.Windows 7.0.1223.47720 dotnet +System.Security.SecureString 7.0.1223.47720 dotnet +System.ServiceModel.Web 7.0.1223.47720 dotnet +System.ServiceProcess 7.0.1223.47720 dotnet +System.Text.Encoding 7.0.1223.47720 dotnet +System.Text.Encoding.CodePages 7.0.1223.47720 dotnet +System.Text.Encoding.Extensions 7.0.1223.47720 dotnet +System.Text.Encodings.Web 7.0.1223.47720 dotnet +System.Text.Json 7.0.1223.47720 dotnet +System.Text.RegularExpressions 7.0.1223.47720 dotnet +System.Threading 7.0.1223.47720 dotnet +System.Threading.Channels 7.0.1223.47720 dotnet +System.Threading.Overlapped 7.0.1223.47720 dotnet System.Threading.RateLimiting 7.0.1123.42427 dotnet -System.Threading.Tasks 7.0.1123.42427 dotnet -System.Threading.Tasks.Dataflow 7.0.1123.42427 dotnet -System.Threading.Tasks.Extensions 7.0.1123.42427 dotnet -System.Threading.Tasks.Parallel 7.0.1123.42427 dotnet -System.Threading.Thread 7.0.1123.42427 dotnet -System.Threading.ThreadPool 7.0.1123.42427 dotnet -System.Threading.Timer 7.0.1123.42427 dotnet -System.Transactions 7.0.1123.42427 dotnet -System.Transactions.Local 7.0.1123.42427 dotnet -System.ValueTuple 7.0.1123.42427 dotnet -System.Web 7.0.1123.42427 dotnet -System.Web.HttpUtility 7.0.1123.42427 dotnet -System.Windows 7.0.1123.42427 dotnet -System.Xml 7.0.1123.42427 dotnet -System.Xml.Linq 7.0.1123.42427 dotnet -System.Xml.ReaderWriter 7.0.1123.42427 dotnet -System.Xml.Serialization 7.0.1123.42427 dotnet -System.Xml.XDocument 7.0.1123.42427 dotnet -System.Xml.XPath 7.0.1123.42427 dotnet -System.Xml.XPath.XDocument 7.0.1123.42427 dotnet -System.Xml.XmlDocument 7.0.1123.42427 dotnet -System.Xml.XmlSerializer 7.0.1123.42427 dotnet +System.Threading.Tasks 7.0.1223.47720 dotnet +System.Threading.Tasks.Dataflow 7.0.1223.47720 dotnet +System.Threading.Tasks.Extensions 7.0.1223.47720 dotnet +System.Threading.Tasks.Parallel 7.0.1223.47720 dotnet +System.Threading.Thread 7.0.1223.47720 dotnet +System.Threading.ThreadPool 7.0.1223.47720 dotnet +System.Threading.Timer 7.0.1223.47720 dotnet +System.Transactions 7.0.1223.47720 dotnet +System.Transactions.Local 7.0.1223.47720 dotnet +System.ValueTuple 7.0.1223.47720 dotnet +System.Web 7.0.1223.47720 dotnet +System.Web.HttpUtility 7.0.1223.47720 dotnet +System.Windows 7.0.1223.47720 dotnet +System.Xml 7.0.1223.47720 dotnet +System.Xml.Linq 7.0.1223.47720 dotnet +System.Xml.ReaderWriter 7.0.1223.47720 dotnet +System.Xml.Serialization 7.0.1223.47720 dotnet +System.Xml.XDocument 7.0.1223.47720 dotnet +System.Xml.XPath 7.0.1223.47720 dotnet +System.Xml.XPath.XDocument 7.0.1223.47720 dotnet +System.Xml.XmlDocument 7.0.1223.47720 dotnet +System.Xml.XmlSerializer 7.0.1223.47720 dotnet TMDb Library 2.0.0.0 dotnet TagLibSharp 2.3.0.0 dotnet UTF Unknown 2.0.664 dotnet -WindowsBase 7.0.1123.42427 dotnet +WindowsBase 7.0.1223.47720 dotnet adduser 3.118ubuntu5 deb apt 2.4.10 deb apt-utils 2.4.10 deb @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231010.14-unstable deb +jellyfin-server 20231010.24-unstable deb jellyfin-web 20231010.17-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb @@ -572,12 +572,12 @@ lsb-base mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1123.42427 dotnet +mscorlib 7.0.1223.47720 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1123.42427 dotnet +netstandard 7.0.1223.47720 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.10 deb passwd 1:4.8.1-2ubuntu2.1 deb From 8c590cdf52dc611b34411e288a5a6b6adc15a0b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Oct 2023 22:11:27 +0000 Subject: [PATCH 1856/2257] 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 67cd0bf..be88f0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231010.24-unstable deb -jellyfin-web 20231010.17-unstable deb +jellyfin-server 20231011.6-unstable deb +jellyfin-web 20231011.12-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 90b1f50f59576aa466520e6e3bfcb1ec7ade8b82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Oct 2023 05:10:53 +0000 Subject: [PATCH 1857/2257] 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 be88f0a..0a21fd2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231011.6-unstable deb -jellyfin-web 20231011.12-unstable deb +jellyfin-server 20231011.7-unstable deb +jellyfin-web 20231012.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From cbaac3bdc2afd142e15ca70e0a57e1c62ea21502 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Oct 2023 14:11:48 +0000 Subject: [PATCH 1858/2257] 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 0a21fd2..099f9bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231011.7-unstable deb -jellyfin-web 20231012.2-unstable deb +jellyfin-server 20231012.10-unstable deb +jellyfin-web 20231012.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 5925efe6b1ebeaabc014f882abe85cd389120953 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 13 Oct 2023 09:11:43 +0000 Subject: [PATCH 1859/2257] 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 099f9bc..cdd4494 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231012.10-unstable deb -jellyfin-web 20231012.6-unstable deb +jellyfin-server 20231013.4-unstable deb +jellyfin-web 20231013.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From ab1e4e298b7f185917153efd6069e7a85e0ada5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 13 Oct 2023 16:12:14 +0000 Subject: [PATCH 1860/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cdd4494..0a59c67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231013.4-unstable deb +jellyfin-server 20231013.5-unstable deb jellyfin-web 20231013.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d9b2fa793825c42ef8faf9905c1e66c3d91c5789 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Oct 2023 00:36:20 +0000 Subject: [PATCH 1861/2257] 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 0a59c67..6c1a43d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231013.5-unstable deb -jellyfin-web 20231013.3-unstable deb +jellyfin-server 20231013.9-unstable deb +jellyfin-web 20231013.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From ccf5ff2f4f8a47884183ce8957d5f721b95099d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Oct 2023 22:10:32 +0000 Subject: [PATCH 1862/2257] 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 6c1a43d..6df2ed4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231013.9-unstable deb -jellyfin-web 20231013.5-unstable deb +jellyfin-server 20231015.2-unstable deb +jellyfin-web 20231015.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 216b36d5979d12ae614602e0e8e5121e0b83180a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Oct 2023 21:11:11 +0000 Subject: [PATCH 1863/2257] 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 6df2ed4..85ddad2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231015.2-unstable deb -jellyfin-web 20231015.9-unstable deb +jellyfin-server 20231016.5-unstable deb +jellyfin-web 20231016.18-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From d3879e10c4284a5adc854b349d012ea4139377d1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Oct 2023 07:10:49 +0000 Subject: [PATCH 1864/2257] 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 85ddad2..9971b4b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231016.5-unstable deb -jellyfin-web 20231016.18-unstable deb +jellyfin-server 20231017.4-unstable deb +jellyfin-web 20231016.20-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 3eeae34ab4cdc6884e733adc16b8d95a8a046e23 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Oct 2023 19:10:25 +0000 Subject: [PATCH 1865/2257] 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 9971b4b..1355950 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,8 +13,8 @@ DiscUtils.Iso9660 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.2.0 dotnet -EasyCaching.Core 1.8.0.0 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.3.0 dotnet +EasyCaching.Core 1.9.1.0 dotnet Emby.Dlna 10.9.0 dotnet Emby.Naming 10.9.0 dotnet Emby.Photos 10.9.0 dotnet @@ -419,8 +419,8 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-5-jammy deb -jellyfin-server 20231017.4-unstable deb +jellyfin-ffmpeg5 5.1.3-6-jammy deb +jellyfin-server 20231017.13-unstable deb jellyfin-web 20231016.20-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 9321d223e29bf2188ada0e54b0ea55eb44906d39 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Oct 2023 01:47:35 +0000 Subject: [PATCH 1866/2257] 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 1355950..b2d6bc3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -393,7 +393,7 @@ bash bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.13 deb +curl 7.81.0-1ubuntu1.14 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231017.13-unstable deb -jellyfin-web 20231016.20-unstable deb +jellyfin-server 20231018.1-unstable deb +jellyfin-web 20231017.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb @@ -442,7 +442,7 @@ libcap-ng0 libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.13 deb +libcurl4 7.81.0-1ubuntu1.14 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb From c3fe6b08eb647fa679f6d2cb5e842494e42af4e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Oct 2023 08:13:29 +0000 Subject: [PATCH 1867/2257] 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 b2d6bc3..1026486 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ DiscUtils.Iso9660 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.3.0 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.4.0 dotnet EasyCaching.Core 1.9.1.0 dotnet Emby.Dlna 10.9.0 dotnet Emby.Naming 10.9.0 dotnet @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231018.1-unstable deb +jellyfin-server 20231018.2-unstable deb jellyfin-web 20231017.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 3f4b4a1fbadea03f45e2266419bbc1bbe4c1acfe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 18 Oct 2023 23:12:26 +0000 Subject: [PATCH 1868/2257] 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 1026486..33c7dce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231018.2-unstable deb -jellyfin-web 20231017.16-unstable deb +jellyfin-server 20231018.6-unstable deb +jellyfin-web 20231018.19-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 4b6fbb1ae2a3949903997c8177456cf13931f78d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 19 Oct 2023 06:15:21 +0000 Subject: [PATCH 1869/2257] 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 33c7dce..acaa352 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231018.6-unstable deb -jellyfin-web 20231018.19-unstable deb +jellyfin-server 20231019.3-unstable deb +jellyfin-web 20231019.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 0dded69b97f5f415f6ec88066a2f55be34c78f85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 19 Oct 2023 22:10:08 +0000 Subject: [PATCH 1870/2257] 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 acaa352..f3d08cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231019.3-unstable deb -jellyfin-web 20231019.5-unstable deb +jellyfin-server 20231019.7-unstable deb +jellyfin-web 20231019.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 5e7a92e7b3f7c208676488e35003faa2b5d4cbfa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Oct 2023 17:10:42 +0000 Subject: [PATCH 1871/2257] 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 f3d08cb..357b9e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231019.7-unstable deb -jellyfin-web 20231019.16-unstable deb +jellyfin-server 20231022.11-unstable deb +jellyfin-web 20231022.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 14c33fca677c8d63870a9df10edf39713112b042 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Oct 2023 22:11:59 +0000 Subject: [PATCH 1872/2257] 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 357b9e7..0fbad25 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231022.11-unstable deb -jellyfin-web 20231022.3-unstable deb +jellyfin-server 20231023.9-unstable deb +jellyfin-web 20231023.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From e965ed0bc59496d47650b335d855f8e07fc46014 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Oct 2023 05:10:57 +0000 Subject: [PATCH 1873/2257] 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 0fbad25..88e40d6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231023.9-unstable deb -jellyfin-web 20231023.10-unstable deb +jellyfin-server 20231023.13-unstable deb +jellyfin-web 20231024.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 4ea8789f46bbdd79700bdbb90203d301ce998b36 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Oct 2023 12:17:05 +0000 Subject: [PATCH 1874/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 88e40d6..08c9429 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,7 +420,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231023.13-unstable deb +jellyfin-server 20231024.1-unstable deb jellyfin-web 20231024.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From b753a47d58c0febf134fdf85ce43c85bbf4c2b0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Oct 2023 12:45:06 +0000 Subject: [PATCH 1875/2257] 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 f99b80d..04e5e36 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -380,7 +380,7 @@ bash bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb -curl 7.81.0-1ubuntu1.13 deb +curl 7.81.0-1ubuntu1.14 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -406,7 +406,7 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-5-jammy deb +jellyfin-ffmpeg5 5.1.3-6-jammy deb jellyfin-server 10.8.11-1 deb jellyfin-web 10.8.11-1 deb jq 1.6-2.1ubuntu3 deb @@ -429,7 +429,7 @@ libcap-ng0 libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.13 deb +libcurl4 7.81.0-1ubuntu1.14 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb From 8300ed0351911db128a4bf6b6ce9077021757d31 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Oct 2023 00:37:27 +0000 Subject: [PATCH 1876/2257] Bot Updating Package Versions --- package_versions.txt | 548 +++++++++++++++++++++---------------------- 1 file changed, 274 insertions(+), 274 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 08c9429..15dabcd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -40,96 +40,96 @@ MediaBrowser.XbmcMetadata MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet MetaBrainz.MusicBrainz 5.0.0 dotnet -Microsoft.AspNetCore 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authentication 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authorization 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Components 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Cors 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1223.47922 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1223.47922 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1223.47922 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Hosting 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1223.47922 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1223.47922 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1223.47922 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Identity 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Localization 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Metadata 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1223.47922 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1223.47922 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Razor 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1223.47922 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1223.47922 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1223.47922 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Routing 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1223.47922 dotnet -Microsoft.AspNetCore.Session 7.0.1223.47922 dotnet -Microsoft.AspNetCore.SignalR 7.0.1223.47922 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1223.47922 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1223.47922 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1223.47922 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1223.47922 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1223.47922 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1223.47922 dotnet +Microsoft.AspNetCore 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1223.47720 dotnet -Microsoft.Data.Sqlite 7.0.1223.47811 dotnet -Microsoft.EntityFrameworkCore 7.0.1223.47811 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1223.47811 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1223.47811 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1223.47811 dotnet +Microsoft.CSharp 7.0.1323.51816 dotnet +Microsoft.Data.Sqlite 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet Microsoft.Extensions.Configuration 7.0.22.51805 dotnet @@ -140,28 +140,28 @@ Microsoft.Extensions.Configuration.EnvironmentVariables Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1223.47922 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1223.47922 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1223.47922 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1223.47922 dotnet -Microsoft.Extensions.Features 7.0.1223.47922 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet +Microsoft.Extensions.Features 7.0.1323.52007 dotnet Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1223.47922 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet Microsoft.Extensions.Hosting 7.0.323.6910 dotnet Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1223.47922 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1223.47922 dotnet -Microsoft.Extensions.Localization 7.0.1223.47922 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1223.47922 dotnet +Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet Microsoft.Extensions.Logging 7.0.22.51805 dotnet Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet @@ -170,19 +170,19 @@ Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1223.47922 dotnet +Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet Microsoft.Extensions.Options 7.0.323.6910 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1223.47922 dotnet -Microsoft.JSInterop 7.0.1223.47922 dotnet -Microsoft.Net.Http.Headers 7.0.1223.47922 dotnet +Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet +Microsoft.JSInterop 7.0.1323.52007 dotnet +Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1223.47720 dotnet -Microsoft.VisualBasic.Core 12.0.1223.47720 dotnet -Microsoft.Win32.Primitives 7.0.1223.47720 dotnet -Microsoft.Win32.Registry 7.0.1223.47720 dotnet +Microsoft.VisualBasic 7.0.1323.51816 dotnet +Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet +Microsoft.Win32.Primitives 7.0.1323.51816 dotnet +Microsoft.Win32.Registry 7.0.1323.51816 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -211,177 +211,177 @@ Swashbuckle.AspNetCore.ReDoc Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1223.47720 dotnet -System.AppContext 7.0.1223.47720 dotnet -System.Buffers 7.0.1223.47720 dotnet -System.Collections 7.0.1223.47720 dotnet -System.Collections.Concurrent 7.0.1223.47720 dotnet -System.Collections.Immutable 7.0.1223.47720 dotnet -System.Collections.NonGeneric 7.0.1223.47720 dotnet -System.Collections.Specialized 7.0.1223.47720 dotnet -System.ComponentModel 7.0.1223.47720 dotnet -System.ComponentModel.Annotations 7.0.1223.47720 dotnet -System.ComponentModel.DataAnnotations 7.0.1223.47720 dotnet -System.ComponentModel.EventBasedAsync 7.0.1223.47720 dotnet -System.ComponentModel.Primitives 7.0.1223.47720 dotnet -System.ComponentModel.TypeConverter 7.0.1223.47720 dotnet -System.Configuration 7.0.1223.47720 dotnet -System.Console 7.0.1223.47720 dotnet -System.Core 7.0.1223.47720 dotnet -System.Data 7.0.1223.47720 dotnet -System.Data.Common 7.0.1223.47720 dotnet -System.Data.DataSetExtensions 7.0.1223.47720 dotnet -System.Diagnostics.Contracts 7.0.1223.47720 dotnet -System.Diagnostics.Debug 7.0.1223.47720 dotnet -System.Diagnostics.DiagnosticSource 7.0.1223.47720 dotnet +System 7.0.1323.51816 dotnet +System.AppContext 7.0.1323.51816 dotnet +System.Buffers 7.0.1323.51816 dotnet +System.Collections 7.0.1323.51816 dotnet +System.Collections.Concurrent 7.0.1323.51816 dotnet +System.Collections.Immutable 7.0.1323.51816 dotnet +System.Collections.NonGeneric 7.0.1323.51816 dotnet +System.Collections.Specialized 7.0.1323.51816 dotnet +System.ComponentModel 7.0.1323.51816 dotnet +System.ComponentModel.Annotations 7.0.1323.51816 dotnet +System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet +System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet +System.ComponentModel.Primitives 7.0.1323.51816 dotnet +System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet +System.Configuration 7.0.1323.51816 dotnet +System.Console 7.0.1323.51816 dotnet +System.Core 7.0.1323.51816 dotnet +System.Data 7.0.1323.51816 dotnet +System.Data.Common 7.0.1323.51816 dotnet +System.Data.DataSetExtensions 7.0.1323.51816 dotnet +System.Diagnostics.Contracts 7.0.1323.51816 dotnet +System.Diagnostics.Debug 7.0.1323.51816 dotnet +System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1223.47720 dotnet -System.Diagnostics.Process 7.0.1223.47720 dotnet -System.Diagnostics.StackTrace 7.0.1223.47720 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1223.47720 dotnet -System.Diagnostics.Tools 7.0.1223.47720 dotnet -System.Diagnostics.TraceSource 7.0.1223.47720 dotnet -System.Diagnostics.Tracing 7.0.1223.47720 dotnet -System.Drawing 7.0.1223.47720 dotnet +System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet +System.Diagnostics.Process 7.0.1323.51816 dotnet +System.Diagnostics.StackTrace 7.0.1323.51816 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet +System.Diagnostics.Tools 7.0.1323.51816 dotnet +System.Diagnostics.TraceSource 7.0.1323.51816 dotnet +System.Diagnostics.Tracing 7.0.1323.51816 dotnet +System.Drawing 7.0.1323.51816 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1223.47720 dotnet -System.Dynamic.Runtime 7.0.1223.47720 dotnet -System.Formats.Asn1 7.0.1223.47720 dotnet -System.Formats.Tar 7.0.1223.47720 dotnet -System.Globalization 7.0.1223.47720 dotnet -System.Globalization.Calendars 7.0.1223.47720 dotnet -System.Globalization.Extensions 7.0.1223.47720 dotnet -System.IO 7.0.1223.47720 dotnet -System.IO.Compression 7.0.1223.47720 dotnet -System.IO.Compression.Brotli 7.0.1223.47720 dotnet -System.IO.Compression.FileSystem 7.0.1223.47720 dotnet -System.IO.Compression.ZipFile 7.0.1223.47720 dotnet -System.IO.FileSystem 7.0.1223.47720 dotnet -System.IO.FileSystem.AccessControl 7.0.1223.47720 dotnet -System.IO.FileSystem.DriveInfo 7.0.1223.47720 dotnet -System.IO.FileSystem.Primitives 7.0.1223.47720 dotnet -System.IO.FileSystem.Watcher 7.0.1223.47720 dotnet -System.IO.IsolatedStorage 7.0.1223.47720 dotnet -System.IO.MemoryMappedFiles 7.0.1223.47720 dotnet +System.Drawing.Primitives 7.0.1323.51816 dotnet +System.Dynamic.Runtime 7.0.1323.51816 dotnet +System.Formats.Asn1 7.0.1323.51816 dotnet +System.Formats.Tar 7.0.1323.51816 dotnet +System.Globalization 7.0.1323.51816 dotnet +System.Globalization.Calendars 7.0.1323.51816 dotnet +System.Globalization.Extensions 7.0.1323.51816 dotnet +System.IO 7.0.1323.51816 dotnet +System.IO.Compression 7.0.1323.51816 dotnet +System.IO.Compression.Brotli 7.0.1323.51816 dotnet +System.IO.Compression.FileSystem 7.0.1323.51816 dotnet +System.IO.Compression.ZipFile 7.0.1323.51816 dotnet +System.IO.FileSystem 7.0.1323.51816 dotnet +System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet +System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet +System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet +System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet +System.IO.IsolatedStorage 7.0.1323.51816 dotnet +System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1223.47720 dotnet -System.IO.Pipes.AccessControl 7.0.1223.47720 dotnet -System.IO.UnmanagedMemoryStream 7.0.1223.47720 dotnet -System.Linq 7.0.1223.47720 dotnet +System.IO.Pipes 7.0.1323.51816 dotnet +System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet +System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet +System.Linq 7.0.1323.51816 dotnet System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1223.47720 dotnet -System.Linq.Parallel 7.0.1223.47720 dotnet -System.Linq.Queryable 7.0.1223.47720 dotnet -System.Memory 7.0.1223.47720 dotnet -System.Net 7.0.1223.47720 dotnet -System.Net.Http 7.0.1223.47720 dotnet -System.Net.Http.Json 7.0.1223.47720 dotnet -System.Net.HttpListener 7.0.1223.47720 dotnet -System.Net.Mail 7.0.1223.47720 dotnet -System.Net.NameResolution 7.0.1223.47720 dotnet -System.Net.NetworkInformation 7.0.1223.47720 dotnet -System.Net.Ping 7.0.1223.47720 dotnet -System.Net.Primitives 7.0.1223.47720 dotnet -System.Net.Quic 7.0.1223.47720 dotnet -System.Net.Requests 7.0.1223.47720 dotnet -System.Net.Security 7.0.1223.47720 dotnet -System.Net.ServicePoint 7.0.1223.47720 dotnet -System.Net.Sockets 7.0.1223.47720 dotnet -System.Net.WebClient 7.0.1223.47720 dotnet -System.Net.WebHeaderCollection 7.0.1223.47720 dotnet -System.Net.WebProxy 7.0.1223.47720 dotnet -System.Net.WebSockets 7.0.1223.47720 dotnet -System.Net.WebSockets.Client 7.0.1223.47720 dotnet -System.Numerics 7.0.1223.47720 dotnet -System.Numerics.Vectors 7.0.1223.47720 dotnet -System.ObjectModel 7.0.1223.47720 dotnet -System.Private.CoreLib 7.0.1223.47720 dotnet -System.Private.DataContractSerialization 7.0.1223.47720 dotnet -System.Private.Uri 7.0.1223.47720 dotnet -System.Private.Xml 7.0.1223.47720 dotnet -System.Private.Xml.Linq 7.0.1223.47720 dotnet -System.Reflection 7.0.1223.47720 dotnet -System.Reflection.DispatchProxy 7.0.1223.47720 dotnet -System.Reflection.Emit 7.0.1223.47720 dotnet -System.Reflection.Emit.ILGeneration 7.0.1223.47720 dotnet -System.Reflection.Emit.Lightweight 7.0.1223.47720 dotnet -System.Reflection.Extensions 7.0.1223.47720 dotnet -System.Reflection.Metadata 7.0.1223.47720 dotnet -System.Reflection.Primitives 7.0.1223.47720 dotnet -System.Reflection.TypeExtensions 7.0.1223.47720 dotnet -System.Resources.Reader 7.0.1223.47720 dotnet -System.Resources.ResourceManager 7.0.1223.47720 dotnet -System.Resources.Writer 7.0.1223.47720 dotnet -System.Runtime 7.0.1223.47720 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1223.47720 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1223.47720 dotnet -System.Runtime.Extensions 7.0.1223.47720 dotnet -System.Runtime.Handles 7.0.1223.47720 dotnet -System.Runtime.InteropServices 7.0.1223.47720 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1223.47720 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1223.47720 dotnet -System.Runtime.Intrinsics 7.0.1223.47720 dotnet -System.Runtime.Loader 7.0.1223.47720 dotnet -System.Runtime.Numerics 7.0.1223.47720 dotnet -System.Runtime.Serialization 7.0.1223.47720 dotnet -System.Runtime.Serialization.Formatters 7.0.1223.47720 dotnet -System.Runtime.Serialization.Json 7.0.1223.47720 dotnet -System.Runtime.Serialization.Primitives 7.0.1223.47720 dotnet -System.Runtime.Serialization.Xml 7.0.1223.47720 dotnet -System.Security 7.0.1223.47720 dotnet -System.Security.AccessControl 7.0.1223.47720 dotnet -System.Security.Claims 7.0.1223.47720 dotnet -System.Security.Cryptography 7.0.1223.47720 dotnet -System.Security.Cryptography.Algorithms 7.0.1223.47720 dotnet -System.Security.Cryptography.Cng 7.0.1223.47720 dotnet -System.Security.Cryptography.Csp 7.0.1223.47720 dotnet -System.Security.Cryptography.Encoding 7.0.1223.47720 dotnet -System.Security.Cryptography.OpenSsl 7.0.1223.47720 dotnet +System.Linq.Expressions 7.0.1323.51816 dotnet +System.Linq.Parallel 7.0.1323.51816 dotnet +System.Linq.Queryable 7.0.1323.51816 dotnet +System.Memory 7.0.1323.51816 dotnet +System.Net 7.0.1323.51816 dotnet +System.Net.Http 7.0.1323.51816 dotnet +System.Net.Http.Json 7.0.1323.51816 dotnet +System.Net.HttpListener 7.0.1323.51816 dotnet +System.Net.Mail 7.0.1323.51816 dotnet +System.Net.NameResolution 7.0.1323.51816 dotnet +System.Net.NetworkInformation 7.0.1323.51816 dotnet +System.Net.Ping 7.0.1323.51816 dotnet +System.Net.Primitives 7.0.1323.51816 dotnet +System.Net.Quic 7.0.1323.51816 dotnet +System.Net.Requests 7.0.1323.51816 dotnet +System.Net.Security 7.0.1323.51816 dotnet +System.Net.ServicePoint 7.0.1323.51816 dotnet +System.Net.Sockets 7.0.1323.51816 dotnet +System.Net.WebClient 7.0.1323.51816 dotnet +System.Net.WebHeaderCollection 7.0.1323.51816 dotnet +System.Net.WebProxy 7.0.1323.51816 dotnet +System.Net.WebSockets 7.0.1323.51816 dotnet +System.Net.WebSockets.Client 7.0.1323.51816 dotnet +System.Numerics 7.0.1323.51816 dotnet +System.Numerics.Vectors 7.0.1323.51816 dotnet +System.ObjectModel 7.0.1323.51816 dotnet +System.Private.CoreLib 7.0.1323.51816 dotnet +System.Private.DataContractSerialization 7.0.1323.51816 dotnet +System.Private.Uri 7.0.1323.51816 dotnet +System.Private.Xml 7.0.1323.51816 dotnet +System.Private.Xml.Linq 7.0.1323.51816 dotnet +System.Reflection 7.0.1323.51816 dotnet +System.Reflection.DispatchProxy 7.0.1323.51816 dotnet +System.Reflection.Emit 7.0.1323.51816 dotnet +System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet +System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet +System.Reflection.Extensions 7.0.1323.51816 dotnet +System.Reflection.Metadata 7.0.1323.51816 dotnet +System.Reflection.Primitives 7.0.1323.51816 dotnet +System.Reflection.TypeExtensions 7.0.1323.51816 dotnet +System.Resources.Reader 7.0.1323.51816 dotnet +System.Resources.ResourceManager 7.0.1323.51816 dotnet +System.Resources.Writer 7.0.1323.51816 dotnet +System.Runtime 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet +System.Runtime.Extensions 7.0.1323.51816 dotnet +System.Runtime.Handles 7.0.1323.51816 dotnet +System.Runtime.InteropServices 7.0.1323.51816 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet +System.Runtime.Intrinsics 7.0.1323.51816 dotnet +System.Runtime.Loader 7.0.1323.51816 dotnet +System.Runtime.Numerics 7.0.1323.51816 dotnet +System.Runtime.Serialization 7.0.1323.51816 dotnet +System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet +System.Runtime.Serialization.Json 7.0.1323.51816 dotnet +System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet +System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet +System.Security 7.0.1323.51816 dotnet +System.Security.AccessControl 7.0.1323.51816 dotnet +System.Security.Claims 7.0.1323.51816 dotnet +System.Security.Cryptography 7.0.1323.51816 dotnet +System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet +System.Security.Cryptography.Cng 7.0.1323.51816 dotnet +System.Security.Cryptography.Csp 7.0.1323.51816 dotnet +System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet +System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1223.47720 dotnet -System.Security.Cryptography.X509Certificates 7.0.1223.47720 dotnet +System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet +System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1223.47720 dotnet -System.Security.Principal.Windows 7.0.1223.47720 dotnet -System.Security.SecureString 7.0.1223.47720 dotnet -System.ServiceModel.Web 7.0.1223.47720 dotnet -System.ServiceProcess 7.0.1223.47720 dotnet -System.Text.Encoding 7.0.1223.47720 dotnet -System.Text.Encoding.CodePages 7.0.1223.47720 dotnet -System.Text.Encoding.Extensions 7.0.1223.47720 dotnet -System.Text.Encodings.Web 7.0.1223.47720 dotnet -System.Text.Json 7.0.1223.47720 dotnet -System.Text.RegularExpressions 7.0.1223.47720 dotnet -System.Threading 7.0.1223.47720 dotnet -System.Threading.Channels 7.0.1223.47720 dotnet -System.Threading.Overlapped 7.0.1223.47720 dotnet +System.Security.Principal 7.0.1323.51816 dotnet +System.Security.Principal.Windows 7.0.1323.51816 dotnet +System.Security.SecureString 7.0.1323.51816 dotnet +System.ServiceModel.Web 7.0.1323.51816 dotnet +System.ServiceProcess 7.0.1323.51816 dotnet +System.Text.Encoding 7.0.1323.51816 dotnet +System.Text.Encoding.CodePages 7.0.1323.51816 dotnet +System.Text.Encoding.Extensions 7.0.1323.51816 dotnet +System.Text.Encodings.Web 7.0.1323.51816 dotnet +System.Text.Json 7.0.1323.51816 dotnet +System.Text.RegularExpressions 7.0.1323.51816 dotnet +System.Threading 7.0.1323.51816 dotnet +System.Threading.Channels 7.0.1323.51816 dotnet +System.Threading.Overlapped 7.0.1323.51816 dotnet System.Threading.RateLimiting 7.0.1123.42427 dotnet -System.Threading.Tasks 7.0.1223.47720 dotnet -System.Threading.Tasks.Dataflow 7.0.1223.47720 dotnet -System.Threading.Tasks.Extensions 7.0.1223.47720 dotnet -System.Threading.Tasks.Parallel 7.0.1223.47720 dotnet -System.Threading.Thread 7.0.1223.47720 dotnet -System.Threading.ThreadPool 7.0.1223.47720 dotnet -System.Threading.Timer 7.0.1223.47720 dotnet -System.Transactions 7.0.1223.47720 dotnet -System.Transactions.Local 7.0.1223.47720 dotnet -System.ValueTuple 7.0.1223.47720 dotnet -System.Web 7.0.1223.47720 dotnet -System.Web.HttpUtility 7.0.1223.47720 dotnet -System.Windows 7.0.1223.47720 dotnet -System.Xml 7.0.1223.47720 dotnet -System.Xml.Linq 7.0.1223.47720 dotnet -System.Xml.ReaderWriter 7.0.1223.47720 dotnet -System.Xml.Serialization 7.0.1223.47720 dotnet -System.Xml.XDocument 7.0.1223.47720 dotnet -System.Xml.XPath 7.0.1223.47720 dotnet -System.Xml.XPath.XDocument 7.0.1223.47720 dotnet -System.Xml.XmlDocument 7.0.1223.47720 dotnet -System.Xml.XmlSerializer 7.0.1223.47720 dotnet +System.Threading.Tasks 7.0.1323.51816 dotnet +System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet +System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet +System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet +System.Threading.Thread 7.0.1323.51816 dotnet +System.Threading.ThreadPool 7.0.1323.51816 dotnet +System.Threading.Timer 7.0.1323.51816 dotnet +System.Transactions 7.0.1323.51816 dotnet +System.Transactions.Local 7.0.1323.51816 dotnet +System.ValueTuple 7.0.1323.51816 dotnet +System.Web 7.0.1323.51816 dotnet +System.Web.HttpUtility 7.0.1323.51816 dotnet +System.Windows 7.0.1323.51816 dotnet +System.Xml 7.0.1323.51816 dotnet +System.Xml.Linq 7.0.1323.51816 dotnet +System.Xml.ReaderWriter 7.0.1323.51816 dotnet +System.Xml.Serialization 7.0.1323.51816 dotnet +System.Xml.XDocument 7.0.1323.51816 dotnet +System.Xml.XPath 7.0.1323.51816 dotnet +System.Xml.XPath.XDocument 7.0.1323.51816 dotnet +System.Xml.XmlDocument 7.0.1323.51816 dotnet +System.Xml.XmlSerializer 7.0.1323.51816 dotnet TMDb Library 2.0.0.0 dotnet TagLibSharp 2.3.0.0 dotnet UTF Unknown 2.0.664 dotnet -WindowsBase 7.0.1223.47720 dotnet +WindowsBase 7.0.1323.51816 dotnet adduser 3.118ubuntu5 deb apt 2.4.10 deb apt-utils 2.4.10 deb @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231024.1-unstable deb -jellyfin-web 20231024.1-unstable deb +jellyfin-server 20231024.11-unstable deb +jellyfin-web 20231024.17-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb @@ -523,7 +523,7 @@ libsmartcols1 libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb +libssl3 3.0.2-0ubuntu1.12 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -572,14 +572,14 @@ lsb-base mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1223.47720 dotnet +mscorlib 7.0.1323.51816 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1223.47720 dotnet +netstandard 7.0.1323.51816 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.10 deb +openssl 3.0.2-0ubuntu1.12 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb From d59267fc675b5904869751a2dfcc807a34d33c54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Oct 2023 12:16:58 +0000 Subject: [PATCH 1877/2257] 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 15dabcd..84a6cff 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ DiscUtils.Iso9660 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.4.0 dotnet +EFCoreSecondLevelCacheInterceptor 3.9.5.0 dotnet EasyCaching.Core 1.9.1.0 dotnet Emby.Dlna 10.9.0 dotnet Emby.Naming 10.9.0 dotnet @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231024.11-unstable deb -jellyfin-web 20231024.17-unstable deb +jellyfin-server 20231025.1-unstable deb +jellyfin-web 20231025.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From e70f288edf1a0e719660594664defae694a47d5d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Oct 2023 08:13:16 +0000 Subject: [PATCH 1878/2257] 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 84a6cff..c36c313 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,8 +420,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231025.1-unstable deb -jellyfin-web 20231025.1-unstable deb +jellyfin-server 20231027.1-unstable deb +jellyfin-web 20231027.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 74310b36795aabf5c7e7f5043896ead45bd1ac83 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 27 Oct 2023 15:10:11 +0000 Subject: [PATCH 1879/2257] Bot Updating Package Versions --- package_versions.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c36c313..967bff8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -19,6 +19,8 @@ Emby.Dlna Emby.Naming 10.9.0 dotnet Emby.Photos 10.9.0 dotnet Emby.Server.Implementations 10.9.0 dotnet +ExCSS 4.1.4.0 dotnet +Fizzler 1.2.1.0 dotnet HarfBuzzSharp 7.3.0.0 dotnet Jellyfin.Api 1.0.0.0 dotnet Jellyfin.Drawing 10.9.0 dotnet @@ -204,9 +206,12 @@ Serilog.Sinks.Debug Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.0.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +ShimSkiaSharp 1.0.0.2 dotnet SkiaSharp 2.88.5.0 dotnet -SkiaSharp.Extended.Svg 1.60.0.0 dotnet SkiaSharp.HarfBuzz 2.88.5.0 dotnet +Svg.Custom 1.0.0.2 dotnet +Svg.Model 1.0.0.2 dotnet +Svg.Skia 1.0.0.2 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -420,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231027.1-unstable deb -jellyfin-web 20231027.1-unstable deb +jellyfin-server 20231027.11-unstable deb +jellyfin-web 20231027.5-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 02502a5b6be5713fa833ebbbf8ab62b7b48112e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Oct 2023 08:13:43 +0000 Subject: [PATCH 1880/2257] 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 967bff8..bd90f70 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231027.11-unstable deb -jellyfin-web 20231027.5-unstable deb +jellyfin-server 20231028.2-unstable deb +jellyfin-web 20231028.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 6080aaf1847c9532d46e4f12f04ee8c7d1acbe22 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Oct 2023 12:18:37 +0000 Subject: [PATCH 1881/2257] 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 bd90f70..344b295 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231028.2-unstable deb -jellyfin-web 20231028.10-unstable deb +jellyfin-server 20231030.3-unstable deb +jellyfin-web 20231028.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 2faba9f5a5d94994adde20c3b861656e3ab98257 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Oct 2023 22:11:28 +0000 Subject: [PATCH 1882/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 344b295..17ef4a9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231030.3-unstable deb +jellyfin-server 20231030.5-unstable deb jellyfin-web 20231028.14-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 2ee96aecf5252f16cc7497c83b5b12557797bd87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Oct 2023 12:42:43 +0000 Subject: [PATCH 1883/2257] 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 04e5e36..71daaf7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -510,7 +510,7 @@ libsmartcols1 libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb +libssl3 3.0.2-0ubuntu1.12 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -567,7 +567,7 @@ netcat netcat-openbsd 1.218-4ubuntu1 deb netstandard 6.0.922.41905 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.10 deb +openssl 3.0.2-0ubuntu1.12 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb From 92ee5d2268f0b27ea10d6cdd266b0074ed704e19 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Oct 2023 19:11:51 +0000 Subject: [PATCH 1884/2257] 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 17ef4a9..c74da24 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE 10.9.0 dotnet - 8.0.1 dotnet + 8.1.0 dotnet AsyncLock 3.2.1.0 dotnet BDInfo 0.7.6.2 dotnet BlurHashSharp 1.2.0.0 dotnet @@ -425,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231030.5-unstable deb -jellyfin-web 20231028.14-unstable deb +jellyfin-server 20231031.7-unstable deb +jellyfin-web 20231031.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From cda5340e10909e8b29baecc3c00f80ac20820182 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Nov 2023 11:09:29 +0000 Subject: [PATCH 1885/2257] 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 c74da24..a825c96 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ DiscUtils.Iso9660 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -EFCoreSecondLevelCacheInterceptor 3.9.5.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet EasyCaching.Core 1.9.1.0 dotnet Emby.Dlna 10.9.0 dotnet Emby.Naming 10.9.0 dotnet @@ -425,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231031.7-unstable deb -jellyfin-web 20231031.9-unstable deb +jellyfin-server 20231101.2-unstable deb +jellyfin-web 20231101.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From e1745cbdc7c7ff4dbacff0909f69c968b9fc14bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Nov 2023 21:11:53 +0000 Subject: [PATCH 1886/2257] 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 a825c96..8f7f3d7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231101.2-unstable deb -jellyfin-web 20231101.3-unstable deb +jellyfin-server 20231101.5-unstable deb +jellyfin-web 20231101.4-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 5d02e5f7ee5e67c4a39e37d5f8d35054f9780812 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Nov 2023 04:13:08 +0000 Subject: [PATCH 1887/2257] 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 8f7f3d7..d3c3a46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -41,7 +41,7 @@ MediaBrowser.Providers MediaBrowser.XbmcMetadata 10.9.0 dotnet MetaBrainz.Common 1.0.0 dotnet MetaBrainz.Common.Json 5.1.0 dotnet -MetaBrainz.MusicBrainz 5.0.0 dotnet +MetaBrainz.MusicBrainz 5.0.1 dotnet Microsoft.AspNetCore 7.0.1323.52007 dotnet Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet @@ -425,8 +425,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231101.5-unstable deb -jellyfin-web 20231101.4-unstable deb +jellyfin-server 20231101.6-unstable deb +jellyfin-web 20231102.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From d294bcbde50f0828c4920fed718b40556e2df3b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Nov 2023 13:13:43 +0000 Subject: [PATCH 1888/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d3c3a46..6a3f7c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231101.6-unstable deb +jellyfin-server 20231102.7-unstable deb jellyfin-web 20231102.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From eba9984aaa8dad5ee1fc1aca999e46c126d2d7fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Nov 2023 20:11:53 +0000 Subject: [PATCH 1889/2257] 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 6a3f7c3..3bcb9db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -398,6 +398,7 @@ bash bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb curl 7.81.0-1ubuntu1.14 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb @@ -425,8 +426,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231102.7-unstable deb -jellyfin-web 20231102.1-unstable deb +jellyfin-server 20231102.9-unstable deb +jellyfin-web 20231102.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 26aabee39f12bff416496dd2822163c0d929b1b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 3 Nov 2023 11:11:07 +0000 Subject: [PATCH 1890/2257] 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 3bcb9db..9450d8d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -426,8 +426,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231102.9-unstable deb -jellyfin-web 20231102.9-unstable deb +jellyfin-server 20231103.1-unstable deb +jellyfin-web 20231103.1-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 1ee227da9b2038a8e1253d97c13f8672f805d23a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 3 Nov 2023 18:12:59 +0000 Subject: [PATCH 1891/2257] 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 9450d8d..010692c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,8 +3,8 @@ NAME 8.1.0 dotnet AsyncLock 3.2.1.0 dotnet BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +BlurHashSharp 1.3.1.0 dotnet +BlurHashSharp.SkiaSharp 1.3.1.0 dotnet CacheManager.Core 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics 3.3.18 dotnet @@ -207,8 +207,8 @@ Serilog.Sinks.File Serilog.Sinks.Graylog 3.0.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 1.0.0.2 dotnet -SkiaSharp 2.88.5.0 dotnet -SkiaSharp.HarfBuzz 2.88.5.0 dotnet +SkiaSharp 2.88.6.0 dotnet +SkiaSharp.HarfBuzz 2.88.6.0 dotnet Svg.Custom 1.0.0.2 dotnet Svg.Model 1.0.0.2 dotnet Svg.Skia 1.0.0.2 dotnet @@ -426,8 +426,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231103.1-unstable deb -jellyfin-web 20231103.1-unstable deb +jellyfin-server 20231103.2-unstable deb +jellyfin-web 20231103.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 807279d6a0cbe65ea47b103349fb2ba3cbe51630 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Nov 2023 11:09:32 +0000 Subject: [PATCH 1892/2257] 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 010692c..5984b96 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -426,8 +426,8 @@ gzip hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231103.2-unstable deb -jellyfin-web 20231103.7-unstable deb +jellyfin-server 20231104.2-unstable deb +jellyfin-web 20231103.10-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 48a647e6aee5781a34ed5a727fa95c4791e8d364 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Nov 2023 18:12:49 +0000 Subject: [PATCH 1893/2257] Bot Updating Package Versions --- package_versions.txt | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 71daaf7..bb43c4a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE - 10.8.11 dotnet + 10.8.12 dotnet 6.0.0 dotnet BDInfo 0.7.6.2 dotnet BlurHashSharp 1.2.0.0 dotnet @@ -10,28 +10,28 @@ DiscUtils.Iso9660 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -DvdLib 10.8.11 dotnet -Emby.Dlna 10.8.11 dotnet -Emby.Drawing 10.8.11 dotnet -Emby.Naming 10.8.11 dotnet -Emby.Notifications 10.8.11 dotnet -Emby.Photos 10.8.11 dotnet -Emby.Server.Implementations 10.8.11 dotnet +DvdLib 10.8.12 dotnet +Emby.Dlna 10.8.12 dotnet +Emby.Drawing 10.8.12 dotnet +Emby.Naming 10.8.12 dotnet +Emby.Notifications 10.8.12 dotnet +Emby.Photos 10.8.12 dotnet +Emby.Server.Implementations 10.8.12 dotnet Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing.Skia 10.8.11 dotnet +Jellyfin.Drawing.Skia 10.8.12 dotnet Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.8.11 dotnet -Jellyfin.Server.Implementations 10.8.11 dotnet +Jellyfin.Server 10.8.12 dotnet +Jellyfin.Server.Implementations 10.8.12 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET .NET Standard 2.0 13.0.1.25517 dotnet -MediaBrowser.Common 10.8.11 dotnet -MediaBrowser.Controller 10.8.11 dotnet -MediaBrowser.LocalMetadata 10.8.11 dotnet -MediaBrowser.MediaEncoding 10.8.11 dotnet -MediaBrowser.Model 10.8.11 dotnet -MediaBrowser.Providers 10.8.11 dotnet -MediaBrowser.XbmcMetadata 10.8.11 dotnet +MediaBrowser.Common 10.8.12 dotnet +MediaBrowser.Controller 10.8.12 dotnet +MediaBrowser.LocalMetadata 10.8.12 dotnet +MediaBrowser.MediaEncoding 10.8.12 dotnet +MediaBrowser.Model 10.8.12 dotnet +MediaBrowser.Providers 10.8.12 dotnet +MediaBrowser.XbmcMetadata 10.8.12 dotnet Microsoft.AspNetCore 6.0.922.41926 dotnet Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet @@ -380,6 +380,7 @@ bash bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb curl 7.81.0-1ubuntu1.14 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb @@ -406,9 +407,9 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 10.8.11-1 deb -jellyfin-web 10.8.11-1 deb +jellyfin-ffmpeg5 5.1.3-7-jammy deb +jellyfin-server 10.8.12-1 deb +jellyfin-web 10.8.12-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 264e76a7b81517496cd1ad024aab87743823a7b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Nov 2023 21:11:18 +0000 Subject: [PATCH 1894/2257] 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 5984b96..319d86e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,9 +425,9 @@ grep gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-6-jammy deb -jellyfin-server 20231104.2-unstable deb -jellyfin-web 20231103.10-unstable deb +jellyfin-ffmpeg5 5.1.3-7-jammy deb +jellyfin-server 20231106.4-unstable deb +jellyfin-web 20231106.7-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From f7b894ba915c9487693da593be92d85adc23208e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Nov 2023 11:09:36 +0000 Subject: [PATCH 1895/2257] Bot Updating Package Versions --- package_versions.txt | 1210 +++++++++++++++++++++--------------------- 1 file changed, 604 insertions(+), 606 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 319d86e..c46c5c0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,606 +1,604 @@ -NAME VERSION TYPE - 10.9.0 dotnet - 8.1.0 dotnet -AsyncLock 3.2.1.0 dotnet -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.3.1.0 dotnet -BlurHashSharp.SkiaSharp 1.3.1.0 dotnet -CacheManager.Core 1.2.0.0 dotnet -CommandLine 2.9.1.0 dotnet -Diacritics 3.3.18 dotnet -DiscUtils (for .NET and .NET Core), core library that supports parts of DiscUtils 0.16.13.55129 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DotNet.Glob 1.0.0.0 dotnet -EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet -EasyCaching.Core 1.9.1.0 dotnet -Emby.Dlna 10.9.0 dotnet -Emby.Naming 10.9.0 dotnet -Emby.Photos 10.9.0 dotnet -Emby.Server.Implementations 10.9.0 dotnet -ExCSS 4.1.4.0 dotnet -Fizzler 1.2.1.0 dotnet -HarfBuzzSharp 7.3.0.0 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing 10.9.0 dotnet -Jellyfin.Drawing.Skia 10.9.0 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.9.0 dotnet -Jellyfin.Server.Implementations 10.9.0 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET .NET 6.0 13.0.3.27908 dotnet -LrcParser 2023.524.0.0 dotnet -MediaBrowser.Common 10.9.0 dotnet -MediaBrowser.Controller 10.9.0 dotnet -MediaBrowser.LocalMetadata 10.9.0 dotnet -MediaBrowser.MediaEncoding 10.9.0 dotnet -MediaBrowser.Model 10.9.0 dotnet -MediaBrowser.Providers 10.9.0 dotnet -MediaBrowser.XbmcMetadata 10.9.0 dotnet -MetaBrainz.Common 1.0.0 dotnet -MetaBrainz.Common.Json 5.1.0 dotnet -MetaBrainz.MusicBrainz 5.0.1 dotnet -Microsoft.AspNetCore 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1323.51816 dotnet -Microsoft.Data.Sqlite 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet -Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet -Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet -Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet -Microsoft.Extensions.Features 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet -Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet -Microsoft.Extensions.Hosting 7.0.323.6910 dotnet -Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Logging 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet -Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet -Microsoft.Extensions.Options 7.0.323.6910 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet -Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet -Microsoft.JSInterop 7.0.1323.52007 dotnet -Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1323.51816 dotnet -Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet -Microsoft.Win32.Primitives 7.0.1323.51816 dotnet -Microsoft.Win32.Registry 7.0.1323.51816 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -Mono.Nat 3.0.4 dotnet -NEbml.Core 0.11.0.0 dotnet -PlaylistsNET 1.4.0.0 dotnet -RSSDP 2019.1.20.3 dotnet -SQLitePCLRaw.batteries_v2 2.1.4.1835 dotnet -SQLitePCLRaw.core 2.1.4.1835 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.4.1835 dotnet -Serilog 2.12.0.0 dotnet -Serilog.AspNetCore 7.0.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 7.0.0.0 dotnet -Serilog.Extensions.Logging 7.0.0.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 7.0.1.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 4.1.0.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 3.0.0.0 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.2 dotnet -SkiaSharp 2.88.6.0 dotnet -SkiaSharp.HarfBuzz 2.88.6.0 dotnet -Svg.Custom 1.0.0.2 dotnet -Svg.Model 1.0.0.2 dotnet -Svg.Skia 1.0.0.2 dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1323.51816 dotnet -System.AppContext 7.0.1323.51816 dotnet -System.Buffers 7.0.1323.51816 dotnet -System.Collections 7.0.1323.51816 dotnet -System.Collections.Concurrent 7.0.1323.51816 dotnet -System.Collections.Immutable 7.0.1323.51816 dotnet -System.Collections.NonGeneric 7.0.1323.51816 dotnet -System.Collections.Specialized 7.0.1323.51816 dotnet -System.ComponentModel 7.0.1323.51816 dotnet -System.ComponentModel.Annotations 7.0.1323.51816 dotnet -System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet -System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet -System.ComponentModel.Primitives 7.0.1323.51816 dotnet -System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet -System.Configuration 7.0.1323.51816 dotnet -System.Console 7.0.1323.51816 dotnet -System.Core 7.0.1323.51816 dotnet -System.Data 7.0.1323.51816 dotnet -System.Data.Common 7.0.1323.51816 dotnet -System.Data.DataSetExtensions 7.0.1323.51816 dotnet -System.Diagnostics.Contracts 7.0.1323.51816 dotnet -System.Diagnostics.Debug 7.0.1323.51816 dotnet -System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet -System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet -System.Diagnostics.Process 7.0.1323.51816 dotnet -System.Diagnostics.StackTrace 7.0.1323.51816 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet -System.Diagnostics.Tools 7.0.1323.51816 dotnet -System.Diagnostics.TraceSource 7.0.1323.51816 dotnet -System.Diagnostics.Tracing 7.0.1323.51816 dotnet -System.Drawing 7.0.1323.51816 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1323.51816 dotnet -System.Dynamic.Runtime 7.0.1323.51816 dotnet -System.Formats.Asn1 7.0.1323.51816 dotnet -System.Formats.Tar 7.0.1323.51816 dotnet -System.Globalization 7.0.1323.51816 dotnet -System.Globalization.Calendars 7.0.1323.51816 dotnet -System.Globalization.Extensions 7.0.1323.51816 dotnet -System.IO 7.0.1323.51816 dotnet -System.IO.Compression 7.0.1323.51816 dotnet -System.IO.Compression.Brotli 7.0.1323.51816 dotnet -System.IO.Compression.FileSystem 7.0.1323.51816 dotnet -System.IO.Compression.ZipFile 7.0.1323.51816 dotnet -System.IO.FileSystem 7.0.1323.51816 dotnet -System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet -System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet -System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet -System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet -System.IO.IsolatedStorage 7.0.1323.51816 dotnet -System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet -System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1323.51816 dotnet -System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet -System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet -System.Linq 7.0.1323.51816 dotnet -System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1323.51816 dotnet -System.Linq.Parallel 7.0.1323.51816 dotnet -System.Linq.Queryable 7.0.1323.51816 dotnet -System.Memory 7.0.1323.51816 dotnet -System.Net 7.0.1323.51816 dotnet -System.Net.Http 7.0.1323.51816 dotnet -System.Net.Http.Json 7.0.1323.51816 dotnet -System.Net.HttpListener 7.0.1323.51816 dotnet -System.Net.Mail 7.0.1323.51816 dotnet -System.Net.NameResolution 7.0.1323.51816 dotnet -System.Net.NetworkInformation 7.0.1323.51816 dotnet -System.Net.Ping 7.0.1323.51816 dotnet -System.Net.Primitives 7.0.1323.51816 dotnet -System.Net.Quic 7.0.1323.51816 dotnet -System.Net.Requests 7.0.1323.51816 dotnet -System.Net.Security 7.0.1323.51816 dotnet -System.Net.ServicePoint 7.0.1323.51816 dotnet -System.Net.Sockets 7.0.1323.51816 dotnet -System.Net.WebClient 7.0.1323.51816 dotnet -System.Net.WebHeaderCollection 7.0.1323.51816 dotnet -System.Net.WebProxy 7.0.1323.51816 dotnet -System.Net.WebSockets 7.0.1323.51816 dotnet -System.Net.WebSockets.Client 7.0.1323.51816 dotnet -System.Numerics 7.0.1323.51816 dotnet -System.Numerics.Vectors 7.0.1323.51816 dotnet -System.ObjectModel 7.0.1323.51816 dotnet -System.Private.CoreLib 7.0.1323.51816 dotnet -System.Private.DataContractSerialization 7.0.1323.51816 dotnet -System.Private.Uri 7.0.1323.51816 dotnet -System.Private.Xml 7.0.1323.51816 dotnet -System.Private.Xml.Linq 7.0.1323.51816 dotnet -System.Reflection 7.0.1323.51816 dotnet -System.Reflection.DispatchProxy 7.0.1323.51816 dotnet -System.Reflection.Emit 7.0.1323.51816 dotnet -System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet -System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet -System.Reflection.Extensions 7.0.1323.51816 dotnet -System.Reflection.Metadata 7.0.1323.51816 dotnet -System.Reflection.Primitives 7.0.1323.51816 dotnet -System.Reflection.TypeExtensions 7.0.1323.51816 dotnet -System.Resources.Reader 7.0.1323.51816 dotnet -System.Resources.ResourceManager 7.0.1323.51816 dotnet -System.Resources.Writer 7.0.1323.51816 dotnet -System.Runtime 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet -System.Runtime.Extensions 7.0.1323.51816 dotnet -System.Runtime.Handles 7.0.1323.51816 dotnet -System.Runtime.InteropServices 7.0.1323.51816 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet -System.Runtime.Intrinsics 7.0.1323.51816 dotnet -System.Runtime.Loader 7.0.1323.51816 dotnet -System.Runtime.Numerics 7.0.1323.51816 dotnet -System.Runtime.Serialization 7.0.1323.51816 dotnet -System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet -System.Runtime.Serialization.Json 7.0.1323.51816 dotnet -System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet -System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet -System.Security 7.0.1323.51816 dotnet -System.Security.AccessControl 7.0.1323.51816 dotnet -System.Security.Claims 7.0.1323.51816 dotnet -System.Security.Cryptography 7.0.1323.51816 dotnet -System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet -System.Security.Cryptography.Cng 7.0.1323.51816 dotnet -System.Security.Cryptography.Csp 7.0.1323.51816 dotnet -System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet -System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet -System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet -System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet -System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1323.51816 dotnet -System.Security.Principal.Windows 7.0.1323.51816 dotnet -System.Security.SecureString 7.0.1323.51816 dotnet -System.ServiceModel.Web 7.0.1323.51816 dotnet -System.ServiceProcess 7.0.1323.51816 dotnet -System.Text.Encoding 7.0.1323.51816 dotnet -System.Text.Encoding.CodePages 7.0.1323.51816 dotnet -System.Text.Encoding.Extensions 7.0.1323.51816 dotnet -System.Text.Encodings.Web 7.0.1323.51816 dotnet -System.Text.Json 7.0.1323.51816 dotnet -System.Text.RegularExpressions 7.0.1323.51816 dotnet -System.Threading 7.0.1323.51816 dotnet -System.Threading.Channels 7.0.1323.51816 dotnet -System.Threading.Overlapped 7.0.1323.51816 dotnet -System.Threading.RateLimiting 7.0.1123.42427 dotnet -System.Threading.Tasks 7.0.1323.51816 dotnet -System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet -System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet -System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet -System.Threading.Thread 7.0.1323.51816 dotnet -System.Threading.ThreadPool 7.0.1323.51816 dotnet -System.Threading.Timer 7.0.1323.51816 dotnet -System.Transactions 7.0.1323.51816 dotnet -System.Transactions.Local 7.0.1323.51816 dotnet -System.ValueTuple 7.0.1323.51816 dotnet -System.Web 7.0.1323.51816 dotnet -System.Web.HttpUtility 7.0.1323.51816 dotnet -System.Windows 7.0.1323.51816 dotnet -System.Xml 7.0.1323.51816 dotnet -System.Xml.Linq 7.0.1323.51816 dotnet -System.Xml.ReaderWriter 7.0.1323.51816 dotnet -System.Xml.Serialization 7.0.1323.51816 dotnet -System.Xml.XDocument 7.0.1323.51816 dotnet -System.Xml.XPath 7.0.1323.51816 dotnet -System.Xml.XPath.XDocument 7.0.1323.51816 dotnet -System.Xml.XmlDocument 7.0.1323.51816 dotnet -System.Xml.XmlSerializer 7.0.1323.51816 dotnet -TMDb Library 2.0.0.0 dotnet -TagLibSharp 2.3.0.0 dotnet -UTF Unknown 2.0.664 dotnet -WindowsBase 7.0.1323.51816 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.10 deb -apt-utils 2.4.10 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.14 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231106.4-unstable deb -jellyfin-web 20231106.7-unstable deb -jq 1.6-2.1ubuntu3 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.10 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.14 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1build3 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.13.2 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.12 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.4 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb -mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1323.51816 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1323.51816 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.12 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheus-net.DotNetRuntime 4.4.0.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -zlib.net 1.0.6.0 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +AsyncLock 3.2.1.0 dotnet +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.3.1.0 dotnet +BlurHashSharp.SkiaSharp 1.3.1.0 dotnet +CacheManager.Core 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +Diacritics 3.3.18 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DiscUtilsfor.NETand.NETCorecorelibrarythatsupportspartsofDiscUtils 0.16.13.55129 dotnet +DotNet.Glob 1.0.0.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet +EasyCaching.Core 1.9.1.0 dotnet +Emby.Dlna 10.9.0 dotnet +Emby.Naming 10.9.0 dotnet +Emby.Photos 10.9.0 dotnet +Emby.Server.Implementations 10.9.0 dotnet +ExCSS 4.1.4.0 dotnet +Fizzler 1.2.1.0 dotnet +HarfBuzzSharp 7.3.0.0 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Drawing 10.9.0 dotnet +Jellyfin.Drawing.Skia 10.9.0 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Server 10.9.0 dotnet +Jellyfin.Server.Implementations 10.9.0 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET.NET6.0 13.0.3.27908 dotnet +LrcParser 2023.524.0.0 dotnet +MediaBrowser.Common 10.9.0 dotnet +MediaBrowser.Controller 10.9.0 dotnet +MediaBrowser.LocalMetadata 10.9.0 dotnet +MediaBrowser.MediaEncoding 10.9.0 dotnet +MediaBrowser.Model 10.9.0 dotnet +MediaBrowser.Providers 10.9.0 dotnet +MediaBrowser.XbmcMetadata 10.9.0 dotnet +MetaBrainz.Common 1.0.0 dotnet +MetaBrainz.Common.Json 5.1.0 dotnet +MetaBrainz.MusicBrainz 5.0.1 dotnet +Microsoft.AspNetCore 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 7.0.1323.51816 dotnet +Microsoft.Data.Sqlite 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet +Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet +Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet +Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet +Microsoft.Extensions.Features 7.0.1323.52007 dotnet +Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet +Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet +Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet +Microsoft.Extensions.Hosting 7.0.323.6910 dotnet +Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Http 7.0.22.51805 dotnet +Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Logging 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet +Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet +Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet +Microsoft.Extensions.Options 7.0.323.6910 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet +Microsoft.Extensions.Primitives 7.0.22.51805 dotnet +Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet +Microsoft.JSInterop 7.0.1323.52007 dotnet +Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 7.0.1323.51816 dotnet +Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet +Microsoft.Win32.Primitives 7.0.1323.51816 dotnet +Microsoft.Win32.Registry 7.0.1323.51816 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +Mono.Nat 3.0.4 dotnet +NEbml.Core 0.11.0.0 dotnet +PlaylistsNET 1.4.0.0 dotnet +RSSDP 2019.1.20.3 dotnet +SQLitePCLRaw.batteriesv2 2.1.4.1835 dotnet +SQLitePCLRaw.core 2.1.4.1835 dotnet +SQLitePCLRaw.provider.esqlite3 2.1.4.1835 dotnet +Serilog 2.12.0.0 dotnet +Serilog.AspNetCore 7.0.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 7.0.0.0 dotnet +Serilog.Extensions.Logging 7.0.0.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 7.0.1.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 4.1.0.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 3.0.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +ShimSkiaSharp 1.0.0.2 dotnet +SkiaSharp 2.88.6.0 dotnet +SkiaSharp.HarfBuzz 2.88.6.0 dotnet +Svg.Custom 1.0.0.2 dotnet +Svg.Model 1.0.0.2 dotnet +Svg.Skia 1.0.0.2 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 7.0.1323.51816 dotnet +System.AppContext 7.0.1323.51816 dotnet +System.Buffers 7.0.1323.51816 dotnet +System.Collections 7.0.1323.51816 dotnet +System.Collections.Concurrent 7.0.1323.51816 dotnet +System.Collections.Immutable 7.0.1323.51816 dotnet +System.Collections.NonGeneric 7.0.1323.51816 dotnet +System.Collections.Specialized 7.0.1323.51816 dotnet +System.ComponentModel 7.0.1323.51816 dotnet +System.ComponentModel.Annotations 7.0.1323.51816 dotnet +System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet +System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet +System.ComponentModel.Primitives 7.0.1323.51816 dotnet +System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet +System.Configuration 7.0.1323.51816 dotnet +System.Console 7.0.1323.51816 dotnet +System.Core 7.0.1323.51816 dotnet +System.Data 7.0.1323.51816 dotnet +System.Data.Common 7.0.1323.51816 dotnet +System.Data.DataSetExtensions 7.0.1323.51816 dotnet +System.Diagnostics.Contracts 7.0.1323.51816 dotnet +System.Diagnostics.Debug 7.0.1323.51816 dotnet +System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet +System.Diagnostics.EventLog 7.0.22.51805 dotnet +System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet +System.Diagnostics.Process 7.0.1323.51816 dotnet +System.Diagnostics.StackTrace 7.0.1323.51816 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet +System.Diagnostics.Tools 7.0.1323.51816 dotnet +System.Diagnostics.TraceSource 7.0.1323.51816 dotnet +System.Diagnostics.Tracing 7.0.1323.51816 dotnet +System.Drawing 7.0.1323.51816 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 7.0.1323.51816 dotnet +System.Dynamic.Runtime 7.0.1323.51816 dotnet +System.Formats.Asn1 7.0.1323.51816 dotnet +System.Formats.Tar 7.0.1323.51816 dotnet +System.Globalization 7.0.1323.51816 dotnet +System.Globalization.Calendars 7.0.1323.51816 dotnet +System.Globalization.Extensions 7.0.1323.51816 dotnet +System.IO 7.0.1323.51816 dotnet +System.IO.Compression 7.0.1323.51816 dotnet +System.IO.Compression.Brotli 7.0.1323.51816 dotnet +System.IO.Compression.FileSystem 7.0.1323.51816 dotnet +System.IO.Compression.ZipFile 7.0.1323.51816 dotnet +System.IO.FileSystem 7.0.1323.51816 dotnet +System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet +System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet +System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet +System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet +System.IO.IsolatedStorage 7.0.1323.51816 dotnet +System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet +System.IO.Pipelines 7.0.22.51805 dotnet +System.IO.Pipes 7.0.1323.51816 dotnet +System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet +System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet +System.Linq 7.0.1323.51816 dotnet +System.Linq.Async 6.0.1.35981 dotnet +System.Linq.Expressions 7.0.1323.51816 dotnet +System.Linq.Parallel 7.0.1323.51816 dotnet +System.Linq.Queryable 7.0.1323.51816 dotnet +System.Memory 7.0.1323.51816 dotnet +System.Net 7.0.1323.51816 dotnet +System.Net.Http 7.0.1323.51816 dotnet +System.Net.Http.Json 7.0.1323.51816 dotnet +System.Net.HttpListener 7.0.1323.51816 dotnet +System.Net.Mail 7.0.1323.51816 dotnet +System.Net.NameResolution 7.0.1323.51816 dotnet +System.Net.NetworkInformation 7.0.1323.51816 dotnet +System.Net.Ping 7.0.1323.51816 dotnet +System.Net.Primitives 7.0.1323.51816 dotnet +System.Net.Quic 7.0.1323.51816 dotnet +System.Net.Requests 7.0.1323.51816 dotnet +System.Net.Security 7.0.1323.51816 dotnet +System.Net.ServicePoint 7.0.1323.51816 dotnet +System.Net.Sockets 7.0.1323.51816 dotnet +System.Net.WebClient 7.0.1323.51816 dotnet +System.Net.WebHeaderCollection 7.0.1323.51816 dotnet +System.Net.WebProxy 7.0.1323.51816 dotnet +System.Net.WebSockets 7.0.1323.51816 dotnet +System.Net.WebSockets.Client 7.0.1323.51816 dotnet +System.Numerics 7.0.1323.51816 dotnet +System.Numerics.Vectors 7.0.1323.51816 dotnet +System.ObjectModel 7.0.1323.51816 dotnet +System.Private.CoreLib 7.0.1323.51816 dotnet +System.Private.DataContractSerialization 7.0.1323.51816 dotnet +System.Private.Uri 7.0.1323.51816 dotnet +System.Private.Xml 7.0.1323.51816 dotnet +System.Private.Xml.Linq 7.0.1323.51816 dotnet +System.Reflection 7.0.1323.51816 dotnet +System.Reflection.DispatchProxy 7.0.1323.51816 dotnet +System.Reflection.Emit 7.0.1323.51816 dotnet +System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet +System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet +System.Reflection.Extensions 7.0.1323.51816 dotnet +System.Reflection.Metadata 7.0.1323.51816 dotnet +System.Reflection.Primitives 7.0.1323.51816 dotnet +System.Reflection.TypeExtensions 7.0.1323.51816 dotnet +System.Resources.Reader 7.0.1323.51816 dotnet +System.Resources.ResourceManager 7.0.1323.51816 dotnet +System.Resources.Writer 7.0.1323.51816 dotnet +System.Runtime 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet +System.Runtime.Extensions 7.0.1323.51816 dotnet +System.Runtime.Handles 7.0.1323.51816 dotnet +System.Runtime.InteropServices 7.0.1323.51816 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet +System.Runtime.Intrinsics 7.0.1323.51816 dotnet +System.Runtime.Loader 7.0.1323.51816 dotnet +System.Runtime.Numerics 7.0.1323.51816 dotnet +System.Runtime.Serialization 7.0.1323.51816 dotnet +System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet +System.Runtime.Serialization.Json 7.0.1323.51816 dotnet +System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet +System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet +System.Security 7.0.1323.51816 dotnet +System.Security.AccessControl 7.0.1323.51816 dotnet +System.Security.Claims 7.0.1323.51816 dotnet +System.Security.Cryptography 7.0.1323.51816 dotnet +System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet +System.Security.Cryptography.Cng 7.0.1323.51816 dotnet +System.Security.Cryptography.Csp 7.0.1323.51816 dotnet +System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet +System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet +System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet +System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet +System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet +System.Security.Cryptography.Xml 7.0.222.60605 dotnet +System.Security.Principal 7.0.1323.51816 dotnet +System.Security.Principal.Windows 7.0.1323.51816 dotnet +System.Security.SecureString 7.0.1323.51816 dotnet +System.ServiceModel.Web 7.0.1323.51816 dotnet +System.ServiceProcess 7.0.1323.51816 dotnet +System.Text.Encoding 7.0.1323.51816 dotnet +System.Text.Encoding.CodePages 7.0.1323.51816 dotnet +System.Text.Encoding.Extensions 7.0.1323.51816 dotnet +System.Text.Encodings.Web 7.0.1323.51816 dotnet +System.Text.Json 7.0.1323.51816 dotnet +System.Text.RegularExpressions 7.0.1323.51816 dotnet +System.Threading 7.0.1323.51816 dotnet +System.Threading.Channels 7.0.1323.51816 dotnet +System.Threading.Overlapped 7.0.1323.51816 dotnet +System.Threading.RateLimiting 7.0.1123.42427 dotnet +System.Threading.Tasks 7.0.1323.51816 dotnet +System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet +System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet +System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet +System.Threading.Thread 7.0.1323.51816 dotnet +System.Threading.ThreadPool 7.0.1323.51816 dotnet +System.Threading.Timer 7.0.1323.51816 dotnet +System.Transactions 7.0.1323.51816 dotnet +System.Transactions.Local 7.0.1323.51816 dotnet +System.ValueTuple 7.0.1323.51816 dotnet +System.Web 7.0.1323.51816 dotnet +System.Web.HttpUtility 7.0.1323.51816 dotnet +System.Windows 7.0.1323.51816 dotnet +System.Xml 7.0.1323.51816 dotnet +System.Xml.Linq 7.0.1323.51816 dotnet +System.Xml.ReaderWriter 7.0.1323.51816 dotnet +System.Xml.Serialization 7.0.1323.51816 dotnet +System.Xml.XDocument 7.0.1323.51816 dotnet +System.Xml.XPath 7.0.1323.51816 dotnet +System.Xml.XPath.XDocument 7.0.1323.51816 dotnet +System.Xml.XmlDocument 7.0.1323.51816 dotnet +System.Xml.XmlSerializer 7.0.1323.51816 dotnet +TMDbLibrary 2.0.0.0 dotnet +TagLibSharp 2.3.0.0 dotnet +UTFUnknown 2.0.664 dotnet +WindowsBase 7.0.1323.51816 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.10 deb +apt-utils 2.4.10 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb +curl 7.81.0-1ubuntu1.14 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg5 5.1.3-7-jammy deb +jellyfin-server 20231108.3-unstable deb +jellyfin-web 20231107.8-unstable deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.10 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.14 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1build3 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.13.2 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.12 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2.2 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.4 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 7.0.1323.51816 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 7.0.1323.51816 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.12 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheusnet.DotNetRuntime 4.4.0.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +zlib.net 1.0.6.0 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From bb1da61d53aa316583851c1e22c6291c3904a1a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Nov 2023 18:14:09 +0000 Subject: [PATCH 1896/2257] 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 c46c5c0..dfd7ae3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,8 +1,8 @@ NAME VERSION TYPE AsyncLock 3.2.1.0 dotnet BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.3.1.0 dotnet -BlurHashSharp.SkiaSharp 1.3.1.0 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet CacheManager.Core 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics 3.3.18 dotnet @@ -205,8 +205,8 @@ Serilog.Sinks.File 5.0.0.0 Serilog.Sinks.Graylog 3.0.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 1.0.0.2 dotnet -SkiaSharp 2.88.6.0 dotnet -SkiaSharp.HarfBuzz 2.88.6.0 dotnet +SkiaSharp 2.88.5.0 dotnet +SkiaSharp.HarfBuzz 2.88.5.0 dotnet Svg.Custom 1.0.0.2 dotnet Svg.Model 1.0.0.2 dotnet Svg.Skia 1.0.0.2 dotnet @@ -424,8 +424,8 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231108.3-unstable deb -jellyfin-web 20231107.8-unstable deb +jellyfin-server 20231108.5-unstable deb +jellyfin-web 20231108.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 2242d020f2b41bc4dd415e74e6b3f56de9adc0a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Nov 2023 22:10:07 +0000 Subject: [PATCH 1897/2257] 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 dfd7ae3..da5780e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -191,7 +191,7 @@ RSSDP 2019.1.20.3 SQLitePCLRaw.batteriesv2 2.1.4.1835 dotnet SQLitePCLRaw.core 2.1.4.1835 dotnet SQLitePCLRaw.provider.esqlite3 2.1.4.1835 dotnet -Serilog 2.12.0.0 dotnet +Serilog 3.1.0.0 dotnet Serilog.AspNetCore 7.0.0.0 dotnet Serilog.Enrichers.Thread 3.1.0.0 dotnet Serilog.Extensions.Hosting 7.0.0.0 dotnet @@ -199,7 +199,7 @@ Serilog.Extensions.Logging 7.0.0.0 Serilog.Formatting.Compact 1.1.0.0 dotnet Serilog.Settings.Configuration 7.0.1.0 dotnet Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 4.1.0.0 dotnet +Serilog.Sinks.Console 5.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.0.0.0 dotnet @@ -424,8 +424,8 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231108.5-unstable deb -jellyfin-web 20231108.3-unstable deb +jellyfin-server 20231109.8-unstable deb +jellyfin-web 20231109.96-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 587779983b9c46e7c1f9679b67d2948a889f69ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Nov 2023 14:10:35 +0000 Subject: [PATCH 1898/2257] 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 da5780e..c3495ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,8 +424,8 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231109.8-unstable deb -jellyfin-web 20231109.96-unstable deb +jellyfin-server 20231110.3-unstable deb +jellyfin-web 20231110.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From a9502f1e55446bf37ec042fcaa303a0cde45b22e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Nov 2023 21:11:49 +0000 Subject: [PATCH 1899/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c3495ca..2495a1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,7 +424,7 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231110.3-unstable deb +jellyfin-server 20231110.10-unstable deb jellyfin-web 20231110.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 74325925f5040e90e881b70f52dbefb2e8bc1327 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Nov 2023 12:15:31 +0000 Subject: [PATCH 1900/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2495a1e..adad2e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,7 +424,7 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231110.10-unstable deb +jellyfin-server 20231112.1-unstable deb jellyfin-web 20231110.9-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From 339dbacea4fef1622372a07bf599c0f98400fd05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Nov 2023 19:10:21 +0000 Subject: [PATCH 1901/2257] 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 adad2e4..a539e53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,8 +424,8 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231112.1-unstable deb -jellyfin-web 20231110.9-unstable deb +jellyfin-server 20231112.4-unstable deb +jellyfin-web 20231112.12-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 451de80aced712fafa24b56df85685e6ba7900e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 Nov 2023 19:47:35 +0000 Subject: [PATCH 1902/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a539e53..59166f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,7 +424,7 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231112.4-unstable deb +jellyfin-server 20231113.6-unstable deb jellyfin-web 20231112.12-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From d2c10dcac056de0ac88a03db4a68dcd51da80abd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 12:43:14 +0000 Subject: [PATCH 1903/2257] Bot Updating Package Versions --- package_versions.txt | 1176 +++++++++++++++++++++--------------------- 1 file changed, 587 insertions(+), 589 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bb43c4a..900c23d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,589 +1,587 @@ -NAME VERSION TYPE - 10.8.12 dotnet - 6.0.0 dotnet -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet -CommandLine 2.9.1.0 dotnet -DiscUtils (for .NET and .NET Core), core library that supports parts of DiscUtils 0.16.13.55129 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DotNet.Glob 1.0.0.0 dotnet -DvdLib 10.8.12 dotnet -Emby.Dlna 10.8.12 dotnet -Emby.Drawing 10.8.12 dotnet -Emby.Naming 10.8.12 dotnet -Emby.Notifications 10.8.12 dotnet -Emby.Photos 10.8.12 dotnet -Emby.Server.Implementations 10.8.12 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing.Skia 10.8.12 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.8.12 dotnet -Jellyfin.Server.Implementations 10.8.12 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET .NET Standard 2.0 13.0.1.25517 dotnet -MediaBrowser.Common 10.8.12 dotnet -MediaBrowser.Controller 10.8.12 dotnet -MediaBrowser.LocalMetadata 10.8.12 dotnet -MediaBrowser.MediaEncoding 10.8.12 dotnet -MediaBrowser.Model 10.8.12 dotnet -MediaBrowser.Providers 10.8.12 dotnet -MediaBrowser.XbmcMetadata 10.8.12 dotnet -Microsoft.AspNetCore 6.0.922.41926 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet -Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.Session 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 6.0.922.41905 dotnet -Microsoft.Data.Sqlite 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet -Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet -Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet -Microsoft.Extensions.Localization 6.0.922.41926 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet -Microsoft.JSInterop 6.0.922.41926 dotnet -Microsoft.Net.Http.Headers 6.0.922.41926 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.922.41905 dotnet -Microsoft.VisualBasic.Core 11.100.922.41905 dotnet -Microsoft.Win32.Primitives 6.0.922.41905 dotnet -Microsoft.Win32.Registry 6.0.922.41905 dotnet -Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet -Mono.Nat 3.0.3 dotnet -NEbml.Core 0.11.0.0 dotnet -PlaylistsNET 1.2.1.0 dotnet -PriorityQueue 5.0.0.0 dotnet -RSSDP 2019.1.20.3 dotnet -SQLitePCL.pretty 1.0.0 dotnet -SQLitePCLRaw.batteries_v2 2.1.0.1603 dotnet -SQLitePCLRaw.core 2.1.0.1603 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.0.1603 dotnet -Serilog 2.10.0.0 dotnet -Serilog.AspNetCore 4.1.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 4.1.2.0 dotnet -Serilog.Extensions.Logging 3.0.1.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 3.3.0.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 4.0.1.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 2.3.0.0 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SharpCompress 0.32.2 dotnet -SkiaSharp 2.88.2.0 dotnet -SkiaSharp.Extended.Svg 1.60.0.0 dotnet -Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 6.0.922.41905 dotnet -System.AppContext 6.0.922.41905 dotnet -System.Buffers 6.0.922.41905 dotnet -System.Collections 6.0.922.41905 dotnet -System.Collections.Concurrent 6.0.922.41905 dotnet -System.Collections.Immutable 6.0.922.41905 dotnet -System.Collections.NonGeneric 6.0.922.41905 dotnet -System.Collections.Specialized 6.0.922.41905 dotnet -System.ComponentModel 6.0.922.41905 dotnet -System.ComponentModel.Annotations 6.0.922.41905 dotnet -System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet -System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet -System.ComponentModel.Primitives 6.0.922.41905 dotnet -System.ComponentModel.TypeConverter 6.0.922.41905 dotnet -System.Configuration 6.0.922.41905 dotnet -System.Console 6.0.922.41905 dotnet -System.Core 6.0.922.41905 dotnet -System.Data 6.0.922.41905 dotnet -System.Data.Common 6.0.922.41905 dotnet -System.Data.DataSetExtensions 6.0.922.41905 dotnet -System.Diagnostics.Contracts 6.0.922.41905 dotnet -System.Diagnostics.Debug 6.0.922.41905 dotnet -System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet -System.Diagnostics.Process 6.0.922.41905 dotnet -System.Diagnostics.StackTrace 6.0.922.41905 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet -System.Diagnostics.Tools 6.0.922.41905 dotnet -System.Diagnostics.TraceSource 6.0.922.41905 dotnet -System.Diagnostics.Tracing 6.0.922.41905 dotnet -System.Drawing 6.0.922.41905 dotnet -System.Drawing.Common 5.0.421.11614 dotnet -System.Drawing.Primitives 6.0.922.41905 dotnet -System.Dynamic.Runtime 6.0.922.41905 dotnet -System.Formats.Asn1 6.0.922.41905 dotnet -System.Globalization 6.0.922.41905 dotnet -System.Globalization.Calendars 6.0.922.41905 dotnet -System.Globalization.Extensions 6.0.922.41905 dotnet -System.IO 6.0.922.41905 dotnet -System.IO.Compression 6.0.922.41905 dotnet -System.IO.Compression.Brotli 6.0.922.41905 dotnet -System.IO.Compression.FileSystem 6.0.922.41905 dotnet -System.IO.Compression.ZipFile 6.0.922.41905 dotnet -System.IO.FileSystem 6.0.922.41905 dotnet -System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet -System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet -System.IO.FileSystem.Primitives 6.0.922.41905 dotnet -System.IO.FileSystem.Watcher 6.0.922.41905 dotnet -System.IO.IsolatedStorage 6.0.922.41905 dotnet -System.IO.MemoryMappedFiles 6.0.922.41905 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.922.41905 dotnet -System.IO.Pipes.AccessControl 6.0.922.41905 dotnet -System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet -System.Linq 6.0.922.41905 dotnet -System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 6.0.922.41905 dotnet -System.Linq.Parallel 6.0.922.41905 dotnet -System.Linq.Queryable 6.0.922.41905 dotnet -System.Memory 6.0.922.41905 dotnet -System.Net 6.0.922.41905 dotnet -System.Net.Http 6.0.922.41905 dotnet -System.Net.Http.Json 6.0.922.41905 dotnet -System.Net.HttpListener 6.0.922.41905 dotnet -System.Net.Mail 6.0.922.41905 dotnet -System.Net.NameResolution 6.0.922.41905 dotnet -System.Net.NetworkInformation 6.0.922.41905 dotnet -System.Net.Ping 6.0.922.41905 dotnet -System.Net.Primitives 6.0.922.41905 dotnet -System.Net.Quic 6.0.922.41905 dotnet -System.Net.Requests 6.0.922.41905 dotnet -System.Net.Security 6.0.922.41905 dotnet -System.Net.ServicePoint 6.0.922.41905 dotnet -System.Net.Sockets 6.0.922.41905 dotnet -System.Net.WebClient 6.0.922.41905 dotnet -System.Net.WebHeaderCollection 6.0.922.41905 dotnet -System.Net.WebProxy 6.0.922.41905 dotnet -System.Net.WebSockets 6.0.922.41905 dotnet -System.Net.WebSockets.Client 6.0.922.41905 dotnet -System.Numerics 6.0.922.41905 dotnet -System.Numerics.Vectors 6.0.922.41905 dotnet -System.ObjectModel 6.0.922.41905 dotnet -System.Private.CoreLib 6.0.922.41905 dotnet -System.Private.DataContractSerialization 6.0.922.41905 dotnet -System.Private.Uri 6.0.922.41905 dotnet -System.Private.Xml 6.0.922.41905 dotnet -System.Private.Xml.Linq 6.0.922.41905 dotnet -System.Reflection 6.0.922.41905 dotnet -System.Reflection.DispatchProxy 6.0.922.41905 dotnet -System.Reflection.Emit 6.0.922.41905 dotnet -System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet -System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet -System.Reflection.Extensions 6.0.922.41905 dotnet -System.Reflection.Metadata 6.0.922.41905 dotnet -System.Reflection.Primitives 6.0.922.41905 dotnet -System.Reflection.TypeExtensions 6.0.922.41905 dotnet -System.Resources.Reader 6.0.922.41905 dotnet -System.Resources.ResourceManager 6.0.922.41905 dotnet -System.Resources.Writer 6.0.922.41905 dotnet -System.Runtime 6.0.922.41905 dotnet -System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet -System.Runtime.Extensions 6.0.922.41905 dotnet -System.Runtime.Handles 6.0.922.41905 dotnet -System.Runtime.InteropServices 6.0.922.41905 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet -System.Runtime.Intrinsics 6.0.922.41905 dotnet -System.Runtime.Loader 6.0.922.41905 dotnet -System.Runtime.Numerics 6.0.922.41905 dotnet -System.Runtime.Serialization 6.0.922.41905 dotnet -System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet -System.Runtime.Serialization.Json 6.0.922.41905 dotnet -System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet -System.Runtime.Serialization.Xml 6.0.922.41905 dotnet -System.Security 6.0.922.41905 dotnet -System.Security.AccessControl 6.0.922.41905 dotnet -System.Security.Claims 6.0.922.41905 dotnet -System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet -System.Security.Cryptography.Cng 6.0.922.41905 dotnet -System.Security.Cryptography.Csp 6.0.922.41905 dotnet -System.Security.Cryptography.Encoding 6.0.922.41905 dotnet -System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet -System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet -System.Security.Cryptography.Primitives 6.0.922.41905 dotnet -System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Principal 6.0.922.41905 dotnet -System.Security.Principal.Windows 6.0.922.41905 dotnet -System.Security.SecureString 6.0.922.41905 dotnet -System.ServiceModel.Web 6.0.922.41905 dotnet -System.ServiceProcess 6.0.922.41905 dotnet -System.Text.Encoding 6.0.922.41905 dotnet -System.Text.Encoding.CodePages 6.0.922.41905 dotnet -System.Text.Encoding.Extensions 6.0.922.41905 dotnet -System.Text.Encodings.Web 6.0.922.41905 dotnet -System.Text.Json 6.0.922.41905 dotnet -System.Text.RegularExpressions 6.0.922.41905 dotnet -System.Threading 6.0.922.41905 dotnet -System.Threading.Channels 6.0.922.41905 dotnet -System.Threading.Overlapped 6.0.922.41905 dotnet -System.Threading.Tasks 6.0.922.41905 dotnet -System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet -System.Threading.Tasks.Extensions 6.0.922.41905 dotnet -System.Threading.Tasks.Parallel 6.0.922.41905 dotnet -System.Threading.Thread 6.0.922.41905 dotnet -System.Threading.ThreadPool 6.0.922.41905 dotnet -System.Threading.Timer 6.0.922.41905 dotnet -System.Transactions 6.0.922.41905 dotnet -System.Transactions.Local 6.0.922.41905 dotnet -System.ValueTuple 6.0.922.41905 dotnet -System.Web 6.0.922.41905 dotnet -System.Web.HttpUtility 6.0.922.41905 dotnet -System.Windows 6.0.922.41905 dotnet -System.Xml 6.0.922.41905 dotnet -System.Xml.Linq 6.0.922.41905 dotnet -System.Xml.ReaderWriter 6.0.922.41905 dotnet -System.Xml.Serialization 6.0.922.41905 dotnet -System.Xml.XDocument 6.0.922.41905 dotnet -System.Xml.XPath 6.0.922.41905 dotnet -System.Xml.XPath.XDocument 6.0.922.41905 dotnet -System.Xml.XmlDocument 6.0.922.41905 dotnet -System.Xml.XmlSerializer 6.0.922.41905 dotnet -TMDb Library 1.9.2.0 dotnet -TagLibSharp 2.3.0.0 dotnet -UTF Unknown 2.0.664 dotnet -WindowsBase 6.0.922.41905 dotnet -ZLIB.NET 1.0.5.0 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.10 deb -apt-utils 2.4.10 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.14 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 10.8.12-1 deb -jellyfin-web 10.8.12-1 deb -jq 1.6-2.1ubuntu3 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.10 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.14 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1build3 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.5.3 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.12 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.4 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb -mount 2.37.2-4ubuntu3 deb -mscorlib 6.0.922.41905 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -netstandard 6.0.922.41905 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.12 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheus-net.DotNetRuntime 4.2.4.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -xmlstarlet 1.6.1-2.1 deb -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DiscUtilsfor.NETand.NETCorecorelibrarythatsupportspartsofDiscUtils 0.16.13.55129 dotnet +DotNet.Glob 1.0.0.0 dotnet +DvdLib 10.8.12 dotnet +Emby.Dlna 10.8.12 dotnet +Emby.Drawing 10.8.12 dotnet +Emby.Naming 10.8.12 dotnet +Emby.Notifications 10.8.12 dotnet +Emby.Photos 10.8.12 dotnet +Emby.Server.Implementations 10.8.12 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Drawing.Skia 10.8.12 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Server 10.8.12 dotnet +Jellyfin.Server.Implementations 10.8.12 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET.NETStandard2.0 13.0.1.25517 dotnet +MediaBrowser.Common 10.8.12 dotnet +MediaBrowser.Controller 10.8.12 dotnet +MediaBrowser.LocalMetadata 10.8.12 dotnet +MediaBrowser.MediaEncoding 10.8.12 dotnet +MediaBrowser.Model 10.8.12 dotnet +MediaBrowser.Providers 10.8.12 dotnet +MediaBrowser.XbmcMetadata 10.8.12 dotnet +Microsoft.AspNetCore 6.0.922.41926 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet +Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.Session 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 6.0.922.41905 dotnet +Microsoft.Data.Sqlite 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet +Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet +Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet +Microsoft.Extensions.Localization 6.0.922.41926 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet +Microsoft.JSInterop 6.0.922.41926 dotnet +Microsoft.Net.Http.Headers 6.0.922.41926 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.922.41905 dotnet +Microsoft.VisualBasic.Core 11.100.922.41905 dotnet +Microsoft.Win32.Primitives 6.0.922.41905 dotnet +Microsoft.Win32.Registry 6.0.922.41905 dotnet +Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet +Mono.Nat 3.0.3 dotnet +NEbml.Core 0.11.0.0 dotnet +PlaylistsNET 1.2.1.0 dotnet +PriorityQueue 5.0.0.0 dotnet +RSSDP 2019.1.20.3 dotnet +SQLitePCL.pretty 1.0.0 dotnet +SQLitePCLRaw.batteriesv2 2.1.0.1603 dotnet +SQLitePCLRaw.core 2.1.0.1603 dotnet +SQLitePCLRaw.provider.esqlite3 2.1.0.1603 dotnet +Serilog 2.10.0.0 dotnet +Serilog.AspNetCore 4.1.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 4.1.2.0 dotnet +Serilog.Extensions.Logging 3.0.1.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 3.3.0.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 4.0.1.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 2.3.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +SharpCompress 0.32.2 dotnet +SkiaSharp 2.88.2.0 dotnet +SkiaSharp.Extended.Svg 1.60.0.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 6.0.922.41905 dotnet +System.AppContext 6.0.922.41905 dotnet +System.Buffers 6.0.922.41905 dotnet +System.Collections 6.0.922.41905 dotnet +System.Collections.Concurrent 6.0.922.41905 dotnet +System.Collections.Immutable 6.0.922.41905 dotnet +System.Collections.NonGeneric 6.0.922.41905 dotnet +System.Collections.Specialized 6.0.922.41905 dotnet +System.ComponentModel 6.0.922.41905 dotnet +System.ComponentModel.Annotations 6.0.922.41905 dotnet +System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet +System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet +System.ComponentModel.Primitives 6.0.922.41905 dotnet +System.ComponentModel.TypeConverter 6.0.922.41905 dotnet +System.Configuration 6.0.922.41905 dotnet +System.Console 6.0.922.41905 dotnet +System.Core 6.0.922.41905 dotnet +System.Data 6.0.922.41905 dotnet +System.Data.Common 6.0.922.41905 dotnet +System.Data.DataSetExtensions 6.0.922.41905 dotnet +System.Diagnostics.Contracts 6.0.922.41905 dotnet +System.Diagnostics.Debug 6.0.922.41905 dotnet +System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet +System.Diagnostics.Process 6.0.922.41905 dotnet +System.Diagnostics.StackTrace 6.0.922.41905 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet +System.Diagnostics.Tools 6.0.922.41905 dotnet +System.Diagnostics.TraceSource 6.0.922.41905 dotnet +System.Diagnostics.Tracing 6.0.922.41905 dotnet +System.Drawing 6.0.922.41905 dotnet +System.Drawing.Common 5.0.421.11614 dotnet +System.Drawing.Primitives 6.0.922.41905 dotnet +System.Dynamic.Runtime 6.0.922.41905 dotnet +System.Formats.Asn1 6.0.922.41905 dotnet +System.Globalization 6.0.922.41905 dotnet +System.Globalization.Calendars 6.0.922.41905 dotnet +System.Globalization.Extensions 6.0.922.41905 dotnet +System.IO 6.0.922.41905 dotnet +System.IO.Compression 6.0.922.41905 dotnet +System.IO.Compression.Brotli 6.0.922.41905 dotnet +System.IO.Compression.FileSystem 6.0.922.41905 dotnet +System.IO.Compression.ZipFile 6.0.922.41905 dotnet +System.IO.FileSystem 6.0.922.41905 dotnet +System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet +System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet +System.IO.FileSystem.Primitives 6.0.922.41905 dotnet +System.IO.FileSystem.Watcher 6.0.922.41905 dotnet +System.IO.IsolatedStorage 6.0.922.41905 dotnet +System.IO.MemoryMappedFiles 6.0.922.41905 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.922.41905 dotnet +System.IO.Pipes.AccessControl 6.0.922.41905 dotnet +System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet +System.Linq 6.0.922.41905 dotnet +System.Linq.Async 6.0.1.35981 dotnet +System.Linq.Expressions 6.0.922.41905 dotnet +System.Linq.Parallel 6.0.922.41905 dotnet +System.Linq.Queryable 6.0.922.41905 dotnet +System.Memory 6.0.922.41905 dotnet +System.Net 6.0.922.41905 dotnet +System.Net.Http 6.0.922.41905 dotnet +System.Net.Http.Json 6.0.922.41905 dotnet +System.Net.HttpListener 6.0.922.41905 dotnet +System.Net.Mail 6.0.922.41905 dotnet +System.Net.NameResolution 6.0.922.41905 dotnet +System.Net.NetworkInformation 6.0.922.41905 dotnet +System.Net.Ping 6.0.922.41905 dotnet +System.Net.Primitives 6.0.922.41905 dotnet +System.Net.Quic 6.0.922.41905 dotnet +System.Net.Requests 6.0.922.41905 dotnet +System.Net.Security 6.0.922.41905 dotnet +System.Net.ServicePoint 6.0.922.41905 dotnet +System.Net.Sockets 6.0.922.41905 dotnet +System.Net.WebClient 6.0.922.41905 dotnet +System.Net.WebHeaderCollection 6.0.922.41905 dotnet +System.Net.WebProxy 6.0.922.41905 dotnet +System.Net.WebSockets 6.0.922.41905 dotnet +System.Net.WebSockets.Client 6.0.922.41905 dotnet +System.Numerics 6.0.922.41905 dotnet +System.Numerics.Vectors 6.0.922.41905 dotnet +System.ObjectModel 6.0.922.41905 dotnet +System.Private.CoreLib 6.0.922.41905 dotnet +System.Private.DataContractSerialization 6.0.922.41905 dotnet +System.Private.Uri 6.0.922.41905 dotnet +System.Private.Xml 6.0.922.41905 dotnet +System.Private.Xml.Linq 6.0.922.41905 dotnet +System.Reflection 6.0.922.41905 dotnet +System.Reflection.DispatchProxy 6.0.922.41905 dotnet +System.Reflection.Emit 6.0.922.41905 dotnet +System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet +System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet +System.Reflection.Extensions 6.0.922.41905 dotnet +System.Reflection.Metadata 6.0.922.41905 dotnet +System.Reflection.Primitives 6.0.922.41905 dotnet +System.Reflection.TypeExtensions 6.0.922.41905 dotnet +System.Resources.Reader 6.0.922.41905 dotnet +System.Resources.ResourceManager 6.0.922.41905 dotnet +System.Resources.Writer 6.0.922.41905 dotnet +System.Runtime 6.0.922.41905 dotnet +System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet +System.Runtime.Extensions 6.0.922.41905 dotnet +System.Runtime.Handles 6.0.922.41905 dotnet +System.Runtime.InteropServices 6.0.922.41905 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet +System.Runtime.Intrinsics 6.0.922.41905 dotnet +System.Runtime.Loader 6.0.922.41905 dotnet +System.Runtime.Numerics 6.0.922.41905 dotnet +System.Runtime.Serialization 6.0.922.41905 dotnet +System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet +System.Runtime.Serialization.Json 6.0.922.41905 dotnet +System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet +System.Runtime.Serialization.Xml 6.0.922.41905 dotnet +System.Security 6.0.922.41905 dotnet +System.Security.AccessControl 6.0.922.41905 dotnet +System.Security.Claims 6.0.922.41905 dotnet +System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet +System.Security.Cryptography.Cng 6.0.922.41905 dotnet +System.Security.Cryptography.Csp 6.0.922.41905 dotnet +System.Security.Cryptography.Encoding 6.0.922.41905 dotnet +System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet +System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet +System.Security.Cryptography.Primitives 6.0.922.41905 dotnet +System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Principal 6.0.922.41905 dotnet +System.Security.Principal.Windows 6.0.922.41905 dotnet +System.Security.SecureString 6.0.922.41905 dotnet +System.ServiceModel.Web 6.0.922.41905 dotnet +System.ServiceProcess 6.0.922.41905 dotnet +System.Text.Encoding 6.0.922.41905 dotnet +System.Text.Encoding.CodePages 6.0.922.41905 dotnet +System.Text.Encoding.Extensions 6.0.922.41905 dotnet +System.Text.Encodings.Web 6.0.922.41905 dotnet +System.Text.Json 6.0.922.41905 dotnet +System.Text.RegularExpressions 6.0.922.41905 dotnet +System.Threading 6.0.922.41905 dotnet +System.Threading.Channels 6.0.922.41905 dotnet +System.Threading.Overlapped 6.0.922.41905 dotnet +System.Threading.Tasks 6.0.922.41905 dotnet +System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet +System.Threading.Tasks.Extensions 6.0.922.41905 dotnet +System.Threading.Tasks.Parallel 6.0.922.41905 dotnet +System.Threading.Thread 6.0.922.41905 dotnet +System.Threading.ThreadPool 6.0.922.41905 dotnet +System.Threading.Timer 6.0.922.41905 dotnet +System.Transactions 6.0.922.41905 dotnet +System.Transactions.Local 6.0.922.41905 dotnet +System.ValueTuple 6.0.922.41905 dotnet +System.Web 6.0.922.41905 dotnet +System.Web.HttpUtility 6.0.922.41905 dotnet +System.Windows 6.0.922.41905 dotnet +System.Xml 6.0.922.41905 dotnet +System.Xml.Linq 6.0.922.41905 dotnet +System.Xml.ReaderWriter 6.0.922.41905 dotnet +System.Xml.Serialization 6.0.922.41905 dotnet +System.Xml.XDocument 6.0.922.41905 dotnet +System.Xml.XPath 6.0.922.41905 dotnet +System.Xml.XPath.XDocument 6.0.922.41905 dotnet +System.Xml.XmlDocument 6.0.922.41905 dotnet +System.Xml.XmlSerializer 6.0.922.41905 dotnet +TMDbLibrary 1.9.2.0 dotnet +TagLibSharp 2.3.0.0 dotnet +UTFUnknown 2.0.664 dotnet +WindowsBase 6.0.922.41905 dotnet +ZLIB.NET 1.0.5.0 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.10 deb +apt-utils 2.4.10 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb +curl 7.81.0-1ubuntu1.14 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg5 5.1.3-7-jammy deb +jellyfin-server 10.8.12-1 deb +jellyfin-web 10.8.12-1 deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.10 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.14 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1build3 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.5.3 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.1 deb +libssl3 3.0.2-0ubuntu1.12 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2.2 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.4 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 6.0.922.41905 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 6.0.922.41905 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.12 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheusnet.DotNetRuntime 4.2.4.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +xmlstarlet 1.6.1-2.1 deb +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 882f835b4d138a86775e6816bf8ba95ba5ecc0a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 12:44:29 +0000 Subject: [PATCH 1904/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 59166f7..9e454ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb jellyfin-server 20231113.6-unstable deb -jellyfin-web 20231112.12-unstable deb +jellyfin-web 20231114.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 6cc5c60e3938c147e91449b3f816319810e4f0a2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Nov 2023 21:08:50 +0000 Subject: [PATCH 1905/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9e454ea..ca110a6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,7 +424,7 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231113.6-unstable deb +jellyfin-server 20231114.12-unstable deb jellyfin-web 20231114.2-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb From c600a9bfc1ffd5974754eccb9317545c34824407 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Nov 2023 04:13:50 +0000 Subject: [PATCH 1906/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ca110a6..0aa521c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb jellyfin-server 20231114.12-unstable deb -jellyfin-web 20231114.2-unstable deb +jellyfin-web 20231115.11-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From b51a651a938f257969e453750ce7a48a84f750db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Nov 2023 04:16:59 +0000 Subject: [PATCH 1907/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0aa521c..679bea1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb jellyfin-server 20231114.12-unstable deb -jellyfin-web 20231115.11-unstable deb +jellyfin-web 20231115.16-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From 274e973fdce597b9db93ecaf0f82c0c9395d6fd9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Nov 2023 16:14:33 +0000 Subject: [PATCH 1908/2257] 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 679bea1..cbc42be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -424,8 +424,8 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb -jellyfin-server 20231114.12-unstable deb -jellyfin-web 20231115.16-unstable deb +jellyfin-server 20231115.15-unstable deb +jellyfin-web 20231115.22-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.10 deb From fcaec151ad832857e8d68f3414b39190732ae050 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 12:44:29 +0000 Subject: [PATCH 1909/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3f67f1..3962f3f 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/jellyfin:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From da02cee2d0f90e19899335628ddeb2fa36ef3424 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 12:45:05 +0000 Subject: [PATCH 1910/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf34adb..7d7db64 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/jellyfin:nightly` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From 327e8c2671e3746b143a6a3c8f596be27d2b4f1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 12:47:35 +0000 Subject: [PATCH 1911/2257] 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 900c23d..13305ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -368,8 +368,8 @@ UTFUnknown 2.0.664 WindowsBase 6.0.922.41905 dotnet ZLIB.NET 1.0.5.0 dotnet adduser 3.118ubuntu5 deb -apt 2.4.10 deb -apt-utils 2.4.10 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb @@ -410,7 +410,7 @@ jellyfin-server 10.8.12-1 jellyfin-web 10.8.12-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.10 deb +libapt-pkg6.0 2.4.11 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb From 03c3148e0012b91cac1256521323fe01ff290e3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 12:50:06 +0000 Subject: [PATCH 1912/2257] 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 cbc42be..e800b5a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -386,8 +386,8 @@ TagLibSharp 2.3.0.0 UTFUnknown 2.0.664 dotnet WindowsBase 7.0.1323.51816 dotnet adduser 3.118ubuntu5 deb -apt 2.4.10 deb -apt-utils 2.4.10 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.3 deb base-passwd 3.5.52build1 deb @@ -425,10 +425,10 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.3-7-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231115.22-unstable deb +jellyfin-web 20231120.3-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.10 deb +libapt-pkg6.0 2.4.11 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb From c91f0bd5622419ba5356526985ff84423ef039f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Nov 2023 12:44:58 +0000 Subject: [PATCH 1913/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 13305ae..4e72d3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -405,7 +405,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-7-jammy deb +jellyfin-ffmpeg5 5.1.4-1-jammy deb jellyfin-server 10.8.12-1 deb jellyfin-web 10.8.12-1 deb jq 1.6-2.1ubuntu3 deb From e5c517fcc2d55c797cd7e1e87c7d24c6969a06e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Nov 2023 12:46:10 +0000 Subject: [PATCH 1914/2257] 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 e800b5a..00ddf8c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -423,9 +423,9 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.3-7-jammy deb +jellyfin-ffmpeg5 5.1.4-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231120.3-unstable deb +jellyfin-web 20231127.6-unstable deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.11 deb From ee64f0a310b6bca6da24dfc5dd31df33822c8ca7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 Nov 2023 04:13:50 +0000 Subject: [PATCH 1915/2257] 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 4e72d3d..008291e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,28 +8,28 @@ DiscUtils.Streams 0.16.13.5512 DiscUtils.Udf 0.16.13.55129 dotnet DiscUtilsfor.NETand.NETCorecorelibrarythatsupportspartsofDiscUtils 0.16.13.55129 dotnet DotNet.Glob 1.0.0.0 dotnet -DvdLib 10.8.12 dotnet -Emby.Dlna 10.8.12 dotnet -Emby.Drawing 10.8.12 dotnet -Emby.Naming 10.8.12 dotnet -Emby.Notifications 10.8.12 dotnet -Emby.Photos 10.8.12 dotnet -Emby.Server.Implementations 10.8.12 dotnet +DvdLib 10.8.13 dotnet +Emby.Dlna 10.8.13 dotnet +Emby.Drawing 10.8.13 dotnet +Emby.Naming 10.8.13 dotnet +Emby.Notifications 10.8.13 dotnet +Emby.Photos 10.8.13 dotnet +Emby.Server.Implementations 10.8.13 dotnet Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing.Skia 10.8.12 dotnet +Jellyfin.Drawing.Skia 10.8.13 dotnet Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.8.12 dotnet -Jellyfin.Server.Implementations 10.8.12 dotnet +Jellyfin.Server 10.8.13 dotnet +Jellyfin.Server.Implementations 10.8.13 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET.NETStandard2.0 13.0.1.25517 dotnet -MediaBrowser.Common 10.8.12 dotnet -MediaBrowser.Controller 10.8.12 dotnet -MediaBrowser.LocalMetadata 10.8.12 dotnet -MediaBrowser.MediaEncoding 10.8.12 dotnet -MediaBrowser.Model 10.8.12 dotnet -MediaBrowser.Providers 10.8.12 dotnet -MediaBrowser.XbmcMetadata 10.8.12 dotnet +MediaBrowser.Common 10.8.13 dotnet +MediaBrowser.Controller 10.8.13 dotnet +MediaBrowser.LocalMetadata 10.8.13 dotnet +MediaBrowser.MediaEncoding 10.8.13 dotnet +MediaBrowser.Model 10.8.13 dotnet +MediaBrowser.Providers 10.8.13 dotnet +MediaBrowser.XbmcMetadata 10.8.13 dotnet Microsoft.AspNetCore 6.0.922.41926 dotnet Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet @@ -406,8 +406,8 @@ gzip 1.10-4ubuntu hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg5 5.1.4-1-jammy deb -jellyfin-server 10.8.12-1 deb -jellyfin-web 10.8.12-1 deb +jellyfin-server 10.8.13-1 deb +jellyfin-web 10.8.13-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.11 deb @@ -474,7 +474,7 @@ libmpg123-0 1.29.3-1buil libncurses6 6.3-2ubuntu0.1 deb libncursesw6 6.3-2ubuntu0.1 deb libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1build3 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnuma1 2.0.14-3ubuntu2 deb From 61c33576998e577172b5f5fd3e8cda6b78d3930d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Dec 2023 01:54:32 +0000 Subject: [PATCH 1916/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 008291e..2402330 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -405,7 +405,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.4-1-jammy deb +jellyfin-ffmpeg5 5.1.4-2-jammy deb jellyfin-server 10.8.13-1 deb jellyfin-web 10.8.13-1 deb jq 1.6-2.1ubuntu3 deb From 8a388abc2207911c8d3c2dce122fa85cb97a8838 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 3 Dec 2023 17:09:23 -0500 Subject: [PATCH 1917/2257] switch to ffmpeg6, clean up repo and packages --- Dockerfile | 12 ++++-------- Dockerfile.aarch64 | 14 +++++--------- readme-vars.yml | 1 + 3 files changed, 10 insertions(+), 17 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02f0453..860f2e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,9 +15,9 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + curl -fSsL https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ @@ -25,11 +25,7 @@ RUN \ apt-get install -y --no-install-recommends \ at \ jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg5 \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libssl3 \ + jellyfin-ffmpeg6 \ mesa-va-drivers && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8e37418..de3a3af 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -15,9 +15,9 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ + echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ @@ -25,14 +25,10 @@ RUN \ apt-get install -y --no-install-recommends \ at \ jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg5 \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ + jellyfin-ffmpeg6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ - libraspberrypi0 \ - libssl3 && \ + libraspberrypi0 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/readme-vars.yml b/readme-vars.yml index c7bc4da..881997e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -90,6 +90,7 @@ app_setup_block: | ``` # changelog changelogs: + - {date: "03.12.23:", desc: "Switch nightly to ffmpeg6."} - {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - {date: "07.12.22:", desc: "Rebase nightly to Jammy, migrate to s6v3."} - {date: "05.01.22:", desc: "Specify Intel iHD driver versions to avoid mismatched libva errors."} From cc32e3e6c44022f39f991c66e4ea5236175d9b43 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 3 Dec 2023 17:15:21 -0500 Subject: [PATCH 1918/2257] clean up repos and packages --- Dockerfile | 11 +++-------- Dockerfile.aarch64 | 11 +++-------- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9c99320..9882fe4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,20 +15,15 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=amd64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg5 \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ - libssl3 \ + jellyfin=${JELLYFIN_RELEASE} \ mesa-va-drivers \ xmlstarlet && \ echo "**** cleanup ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 9d823f5..01b923a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -15,23 +15,18 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ - curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | apt-key add - && \ - echo 'deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ + echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg5 \ - jellyfin-web \ - libfontconfig1 \ - libfreetype6 \ + jellyfin=${JELLYFIN_RELEASE} \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ - libssl3 \ xmlstarlet && \ echo "**** cleanup ****" && \ rm -rf \ From 77487aa0324fdf0ab150bdab4863ca7fc8fc62f7 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 3 Dec 2023 17:23:53 -0500 Subject: [PATCH 1919/2257] install recommended to get web --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 860f2e3..0e6c46e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ - apt-get install -y --no-install-recommends \ + apt-get install -y \ at \ jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg6 \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index de3a3af..6c66d8c 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -22,7 +22,7 @@ RUN \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ - apt-get install -y --no-install-recommends \ + apt-get install -y \ at \ jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg6 \ From 54350d47848c6a7374fec624254fdfa90328f1ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Dec 2023 15:36:46 +0000 Subject: [PATCH 1920/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7d7db64..28f9b54 100644 --- a/README.md +++ b/README.md @@ -366,6 +366,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **03.12.23:** - Switch nightly to ffmpeg6. * **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase nightly to Jammy, migrate to s6v3. * **05.01.22:** - Specify Intel iHD driver versions to avoid mismatched libva errors. From d98846b29f7fcf74f1b729ae760bc7c580669fd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Dec 2023 15:40:18 +0000 Subject: [PATCH 1921/2257] Bot Updating Package Versions --- package_versions.txt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 00ddf8c..b27564a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -423,10 +423,11 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg5 5.1.4-1-jammy deb +jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231127.6-unstable deb +jellyfin-web 20231203.7-unstable deb jq 1.6-2.1ubuntu3 deb +libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.11 deb libass9 1:0.15.2-1 deb @@ -434,6 +435,7 @@ libassuan0 2.5.5-1build libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb +libbdplus0 0.2.0-1 deb libblkid1 2.37.2-4ubuntu3 deb libbluray2 1:1.3.1-1 deb libbrotli1 1.0.9-2build6 deb @@ -465,6 +467,7 @@ libfribidi0 1.0.8-2ubunt libgcc-s1 12.1.0-2ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu2.2 deb +libglib2.0-data 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.2 deb libgpg-error0 1.43-3 deb @@ -492,7 +495,7 @@ libmpg123-0 1.29.3-1buil libncurses6 6.3-2ubuntu0.1 deb libncursesw6 6.3-2ubuntu0.1 deb libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1build3 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnuma1 2.0.14-3ubuntu2 deb @@ -527,7 +530,7 @@ libsmartcols1 2.37.2-4ubun libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.12 deb +libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb @@ -593,6 +596,7 @@ publicsuffix 20211207.102 readline-common 8.1.2-1 deb sed 4.8-1ubuntu2 deb sensible-utils 0.0.17 deb +shared-mime-info 2.1-2 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb tzdata 2023c-0ubuntu0.22.04.2 deb @@ -600,5 +604,6 @@ ubuntu-keyring 2021.03.26 ucf 3.0043 deb usrmerge 25ubuntu2 deb util-linux 2.37.2-4ubuntu3 deb +xdg-user-dirs 0.17-2ubuntu4 deb zlib.net 1.0.6.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From f0b9632b0657f71cde87f55b249b3ffc49230bb7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Dec 2023 15:46:40 +0000 Subject: [PATCH 1922/2257] 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 2402330..3a930ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -405,6 +405,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb +jellyfin 10.8.13-1 deb jellyfin-ffmpeg5 5.1.4-2-jammy deb jellyfin-server 10.8.13-1 deb jellyfin-web 10.8.13-1 deb @@ -509,7 +510,7 @@ libsmartcols1 2.37.2-4ubun libsqlite3-0 3.37.2-2ubuntu0.1 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.12 deb +libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb libtasn1-6 4.18.0-4build1 deb From 155c71198987337eee503d6fdd82b122fee71691 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Dec 2023 12:46:36 +0000 Subject: [PATCH 1923/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b27564a..605ad7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231203.7-unstable deb +jellyfin-web 20231204.1-unstable deb jq 1.6-2.1ubuntu3 deb libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb From 5da9181fa257b8fbc68cf1d25e1cce9cc21b4c0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Dec 2023 12:45:21 +0000 Subject: [PATCH 1924/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 605ad7a..73aea90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231204.1-unstable deb +jellyfin-web 20231212.4-unstable deb jq 1.6-2.1ubuntu3 deb libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb From 16ee6acc4f37170f6676053104622252c5f6eeec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Dec 2023 12:43:49 +0000 Subject: [PATCH 1925/2257] 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 73aea90..7a85895 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -397,7 +397,7 @@ bsdutils 1:2.37.2-4ub ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.14 deb +curl 7.81.0-1ubuntu1.15 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231212.4-unstable deb +jellyfin-web 20231219.2-unstable deb jq 1.6-2.1ubuntu3 deb libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb @@ -448,7 +448,7 @@ libcap-ng0 0.7.9-2.2bui libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.14 deb +libcurl4 7.81.0-1ubuntu1.15 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -572,7 +572,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.4 deb +locales 2.35-0ubuntu3.5 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From d9082b5beaf704d91507c30880be90a27f0c5b8e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Dec 2023 12:44:35 +0000 Subject: [PATCH 1926/2257] 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 3a930ef..7829881 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -379,7 +379,7 @@ bsdutils 1:2.37.2-4ub ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1 deb cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.14 deb +curl 7.81.0-1ubuntu1.15 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -429,7 +429,7 @@ libcap-ng0 0.7.9-2.2bui libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.14 deb +libcurl4 7.81.0-1ubuntu1.15 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -553,7 +553,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.4 deb +locales 2.35-0ubuntu3.5 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From 39f93cad9c55b26ac1d212ea1a08c81ff44c6d14 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Dec 2023 12:48:56 +0000 Subject: [PATCH 1927/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7a85895..8a7caf3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231219.2-unstable deb +jellyfin-web 20231219.3-unstable deb jq 1.6-2.1ubuntu3 deb libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb From 56e94b27335fcf9448f3dbf5fc0354576f11baea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Dec 2023 12:41:34 +0000 Subject: [PATCH 1928/2257] Bot Updating Package Versions --- package_versions.txt | 1166 +++++++++++++++++++++--------------------- 1 file changed, 578 insertions(+), 588 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7829881..8245f98 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,588 +1,578 @@ -NAME VERSION TYPE -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet -CommandLine 2.9.1.0 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DiscUtilsfor.NETand.NETCorecorelibrarythatsupportspartsofDiscUtils 0.16.13.55129 dotnet -DotNet.Glob 1.0.0.0 dotnet -DvdLib 10.8.13 dotnet -Emby.Dlna 10.8.13 dotnet -Emby.Drawing 10.8.13 dotnet -Emby.Naming 10.8.13 dotnet -Emby.Notifications 10.8.13 dotnet -Emby.Photos 10.8.13 dotnet -Emby.Server.Implementations 10.8.13 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing.Skia 10.8.13 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.8.13 dotnet -Jellyfin.Server.Implementations 10.8.13 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET.NETStandard2.0 13.0.1.25517 dotnet -MediaBrowser.Common 10.8.13 dotnet -MediaBrowser.Controller 10.8.13 dotnet -MediaBrowser.LocalMetadata 10.8.13 dotnet -MediaBrowser.MediaEncoding 10.8.13 dotnet -MediaBrowser.Model 10.8.13 dotnet -MediaBrowser.Providers 10.8.13 dotnet -MediaBrowser.XbmcMetadata 10.8.13 dotnet -Microsoft.AspNetCore 6.0.922.41926 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet -Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.Session 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 6.0.922.41905 dotnet -Microsoft.Data.Sqlite 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet -Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet -Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet -Microsoft.Extensions.Localization 6.0.922.41926 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet -Microsoft.JSInterop 6.0.922.41926 dotnet -Microsoft.Net.Http.Headers 6.0.922.41926 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.922.41905 dotnet -Microsoft.VisualBasic.Core 11.100.922.41905 dotnet -Microsoft.Win32.Primitives 6.0.922.41905 dotnet -Microsoft.Win32.Registry 6.0.922.41905 dotnet -Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet -Mono.Nat 3.0.3 dotnet -NEbml.Core 0.11.0.0 dotnet -PlaylistsNET 1.2.1.0 dotnet -PriorityQueue 5.0.0.0 dotnet -RSSDP 2019.1.20.3 dotnet -SQLitePCL.pretty 1.0.0 dotnet -SQLitePCLRaw.batteriesv2 2.1.0.1603 dotnet -SQLitePCLRaw.core 2.1.0.1603 dotnet -SQLitePCLRaw.provider.esqlite3 2.1.0.1603 dotnet -Serilog 2.10.0.0 dotnet -Serilog.AspNetCore 4.1.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 4.1.2.0 dotnet -Serilog.Extensions.Logging 3.0.1.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 3.3.0.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 4.0.1.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 2.3.0.0 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SharpCompress 0.32.2 dotnet -SkiaSharp 2.88.2.0 dotnet -SkiaSharp.Extended.Svg 1.60.0.0 dotnet -Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 6.0.922.41905 dotnet -System.AppContext 6.0.922.41905 dotnet -System.Buffers 6.0.922.41905 dotnet -System.Collections 6.0.922.41905 dotnet -System.Collections.Concurrent 6.0.922.41905 dotnet -System.Collections.Immutable 6.0.922.41905 dotnet -System.Collections.NonGeneric 6.0.922.41905 dotnet -System.Collections.Specialized 6.0.922.41905 dotnet -System.ComponentModel 6.0.922.41905 dotnet -System.ComponentModel.Annotations 6.0.922.41905 dotnet -System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet -System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet -System.ComponentModel.Primitives 6.0.922.41905 dotnet -System.ComponentModel.TypeConverter 6.0.922.41905 dotnet -System.Configuration 6.0.922.41905 dotnet -System.Console 6.0.922.41905 dotnet -System.Core 6.0.922.41905 dotnet -System.Data 6.0.922.41905 dotnet -System.Data.Common 6.0.922.41905 dotnet -System.Data.DataSetExtensions 6.0.922.41905 dotnet -System.Diagnostics.Contracts 6.0.922.41905 dotnet -System.Diagnostics.Debug 6.0.922.41905 dotnet -System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet -System.Diagnostics.Process 6.0.922.41905 dotnet -System.Diagnostics.StackTrace 6.0.922.41905 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet -System.Diagnostics.Tools 6.0.922.41905 dotnet -System.Diagnostics.TraceSource 6.0.922.41905 dotnet -System.Diagnostics.Tracing 6.0.922.41905 dotnet -System.Drawing 6.0.922.41905 dotnet -System.Drawing.Common 5.0.421.11614 dotnet -System.Drawing.Primitives 6.0.922.41905 dotnet -System.Dynamic.Runtime 6.0.922.41905 dotnet -System.Formats.Asn1 6.0.922.41905 dotnet -System.Globalization 6.0.922.41905 dotnet -System.Globalization.Calendars 6.0.922.41905 dotnet -System.Globalization.Extensions 6.0.922.41905 dotnet -System.IO 6.0.922.41905 dotnet -System.IO.Compression 6.0.922.41905 dotnet -System.IO.Compression.Brotli 6.0.922.41905 dotnet -System.IO.Compression.FileSystem 6.0.922.41905 dotnet -System.IO.Compression.ZipFile 6.0.922.41905 dotnet -System.IO.FileSystem 6.0.922.41905 dotnet -System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet -System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet -System.IO.FileSystem.Primitives 6.0.922.41905 dotnet -System.IO.FileSystem.Watcher 6.0.922.41905 dotnet -System.IO.IsolatedStorage 6.0.922.41905 dotnet -System.IO.MemoryMappedFiles 6.0.922.41905 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.922.41905 dotnet -System.IO.Pipes.AccessControl 6.0.922.41905 dotnet -System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet -System.Linq 6.0.922.41905 dotnet -System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 6.0.922.41905 dotnet -System.Linq.Parallel 6.0.922.41905 dotnet -System.Linq.Queryable 6.0.922.41905 dotnet -System.Memory 6.0.922.41905 dotnet -System.Net 6.0.922.41905 dotnet -System.Net.Http 6.0.922.41905 dotnet -System.Net.Http.Json 6.0.922.41905 dotnet -System.Net.HttpListener 6.0.922.41905 dotnet -System.Net.Mail 6.0.922.41905 dotnet -System.Net.NameResolution 6.0.922.41905 dotnet -System.Net.NetworkInformation 6.0.922.41905 dotnet -System.Net.Ping 6.0.922.41905 dotnet -System.Net.Primitives 6.0.922.41905 dotnet -System.Net.Quic 6.0.922.41905 dotnet -System.Net.Requests 6.0.922.41905 dotnet -System.Net.Security 6.0.922.41905 dotnet -System.Net.ServicePoint 6.0.922.41905 dotnet -System.Net.Sockets 6.0.922.41905 dotnet -System.Net.WebClient 6.0.922.41905 dotnet -System.Net.WebHeaderCollection 6.0.922.41905 dotnet -System.Net.WebProxy 6.0.922.41905 dotnet -System.Net.WebSockets 6.0.922.41905 dotnet -System.Net.WebSockets.Client 6.0.922.41905 dotnet -System.Numerics 6.0.922.41905 dotnet -System.Numerics.Vectors 6.0.922.41905 dotnet -System.ObjectModel 6.0.922.41905 dotnet -System.Private.CoreLib 6.0.922.41905 dotnet -System.Private.DataContractSerialization 6.0.922.41905 dotnet -System.Private.Uri 6.0.922.41905 dotnet -System.Private.Xml 6.0.922.41905 dotnet -System.Private.Xml.Linq 6.0.922.41905 dotnet -System.Reflection 6.0.922.41905 dotnet -System.Reflection.DispatchProxy 6.0.922.41905 dotnet -System.Reflection.Emit 6.0.922.41905 dotnet -System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet -System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet -System.Reflection.Extensions 6.0.922.41905 dotnet -System.Reflection.Metadata 6.0.922.41905 dotnet -System.Reflection.Primitives 6.0.922.41905 dotnet -System.Reflection.TypeExtensions 6.0.922.41905 dotnet -System.Resources.Reader 6.0.922.41905 dotnet -System.Resources.ResourceManager 6.0.922.41905 dotnet -System.Resources.Writer 6.0.922.41905 dotnet -System.Runtime 6.0.922.41905 dotnet -System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet -System.Runtime.Extensions 6.0.922.41905 dotnet -System.Runtime.Handles 6.0.922.41905 dotnet -System.Runtime.InteropServices 6.0.922.41905 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet -System.Runtime.Intrinsics 6.0.922.41905 dotnet -System.Runtime.Loader 6.0.922.41905 dotnet -System.Runtime.Numerics 6.0.922.41905 dotnet -System.Runtime.Serialization 6.0.922.41905 dotnet -System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet -System.Runtime.Serialization.Json 6.0.922.41905 dotnet -System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet -System.Runtime.Serialization.Xml 6.0.922.41905 dotnet -System.Security 6.0.922.41905 dotnet -System.Security.AccessControl 6.0.922.41905 dotnet -System.Security.Claims 6.0.922.41905 dotnet -System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet -System.Security.Cryptography.Cng 6.0.922.41905 dotnet -System.Security.Cryptography.Csp 6.0.922.41905 dotnet -System.Security.Cryptography.Encoding 6.0.922.41905 dotnet -System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet -System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet -System.Security.Cryptography.Primitives 6.0.922.41905 dotnet -System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Principal 6.0.922.41905 dotnet -System.Security.Principal.Windows 6.0.922.41905 dotnet -System.Security.SecureString 6.0.922.41905 dotnet -System.ServiceModel.Web 6.0.922.41905 dotnet -System.ServiceProcess 6.0.922.41905 dotnet -System.Text.Encoding 6.0.922.41905 dotnet -System.Text.Encoding.CodePages 6.0.922.41905 dotnet -System.Text.Encoding.Extensions 6.0.922.41905 dotnet -System.Text.Encodings.Web 6.0.922.41905 dotnet -System.Text.Json 6.0.922.41905 dotnet -System.Text.RegularExpressions 6.0.922.41905 dotnet -System.Threading 6.0.922.41905 dotnet -System.Threading.Channels 6.0.922.41905 dotnet -System.Threading.Overlapped 6.0.922.41905 dotnet -System.Threading.Tasks 6.0.922.41905 dotnet -System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet -System.Threading.Tasks.Extensions 6.0.922.41905 dotnet -System.Threading.Tasks.Parallel 6.0.922.41905 dotnet -System.Threading.Thread 6.0.922.41905 dotnet -System.Threading.ThreadPool 6.0.922.41905 dotnet -System.Threading.Timer 6.0.922.41905 dotnet -System.Transactions 6.0.922.41905 dotnet -System.Transactions.Local 6.0.922.41905 dotnet -System.ValueTuple 6.0.922.41905 dotnet -System.Web 6.0.922.41905 dotnet -System.Web.HttpUtility 6.0.922.41905 dotnet -System.Windows 6.0.922.41905 dotnet -System.Xml 6.0.922.41905 dotnet -System.Xml.Linq 6.0.922.41905 dotnet -System.Xml.ReaderWriter 6.0.922.41905 dotnet -System.Xml.Serialization 6.0.922.41905 dotnet -System.Xml.XDocument 6.0.922.41905 dotnet -System.Xml.XPath 6.0.922.41905 dotnet -System.Xml.XPath.XDocument 6.0.922.41905 dotnet -System.Xml.XmlDocument 6.0.922.41905 dotnet -System.Xml.XmlSerializer 6.0.922.41905 dotnet -TMDbLibrary 1.9.2.0 dotnet -TagLibSharp 2.3.0.0 dotnet -UTFUnknown 2.0.664 dotnet -WindowsBase 6.0.922.41905 dotnet -ZLIB.NET 1.0.5.0 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.11 deb -apt-utils 2.4.11 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.15 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin 10.8.13-1 deb -jellyfin-ffmpeg5 5.1.4-2-jammy deb -jellyfin-server 10.8.13-1 deb -jellyfin-web 10.8.13-1 deb -jq 1.6-2.1ubuntu3 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.5.3 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.5 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb -mount 2.37.2-4ubuntu3 deb -mscorlib 6.0.922.41905 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -netstandard 6.0.922.41905 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.12 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheusnet.DotNetRuntime 4.2.4.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -xmlstarlet 1.6.1-2.1 deb -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +DiscUtils.Core 0.16.13.55129 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet +Highly Optimized Priority Queue 5.0.0.0 dotnet +Jellyfin Server 10.8.13 dotnet +Jellyfin Server 2019.1.20.3 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Data.dll 10.8.13 dotnet +Jellyfin.Extensions.dll 10.8.13 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Networking.dll 10.8.13 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET 13.0.1.25517 dotnet +Microsoft.AspNetCore 6.0.922.41926 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet +Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.Session 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 6.0.922.41905 dotnet +Microsoft.Data.Sqlite 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet +Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet +Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet +Microsoft.Extensions.Localization 6.0.922.41926 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet +Microsoft.JSInterop 6.0.922.41926 dotnet +Microsoft.Net.Http.Headers 6.0.922.41926 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.922.41905 dotnet +Microsoft.VisualBasic.Core 11.100.922.41905 dotnet +Microsoft.Win32.Primitives 6.0.922.41905 dotnet +Microsoft.Win32.Registry 6.0.922.41905 dotnet +Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet +Mono.Nat 3.0.3-master+4f1a615 dotnet +NEbml.Core 0.11.0.0 dotnet +PlaylistsNET 1.2.1.0 dotnet +Prometheus.AspNetCore.dll 6.0.0 dotnet +Prometheus.NetCore.dll 6.0.0 dotnet +Prometheus.NetStandard.dll 6.0.0 dotnet +SQLitePCL.pretty 1.0.0 dotnet +SQLitePCLRaw.batteries_v2 2.1.0.1603 dotnet +SQLitePCLRaw.core 2.1.0.1603 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.0.1603 dotnet +Serilog 2.10.0.0 dotnet +Serilog.AspNetCore 4.1.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 4.1.2.0 dotnet +Serilog.Extensions.Logging 3.0.1.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 3.3.0.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 4.0.1.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 2.3.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +SharpCompress 0.32.2+3009e6dcfd183760fbdb675249b7a65a2894618b dotnet +SkiaSharp 2.88.2.0-193b587552cb0ed39372a049d7e6c692db98c267 dotnet +SkiaSharp.Extended.Svg (netstandard2.0) 1.60.0.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 6.0.922.41905 dotnet +System.AppContext 6.0.922.41905 dotnet +System.Buffers 6.0.922.41905 dotnet +System.Collections 6.0.922.41905 dotnet +System.Collections.Concurrent 6.0.922.41905 dotnet +System.Collections.Immutable 6.0.922.41905 dotnet +System.Collections.NonGeneric 6.0.922.41905 dotnet +System.Collections.Specialized 6.0.922.41905 dotnet +System.ComponentModel 6.0.922.41905 dotnet +System.ComponentModel.Annotations 6.0.922.41905 dotnet +System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet +System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet +System.ComponentModel.Primitives 6.0.922.41905 dotnet +System.ComponentModel.TypeConverter 6.0.922.41905 dotnet +System.Configuration 6.0.922.41905 dotnet +System.Console 6.0.922.41905 dotnet +System.Core 6.0.922.41905 dotnet +System.Data 6.0.922.41905 dotnet +System.Data.Common 6.0.922.41905 dotnet +System.Data.DataSetExtensions 6.0.922.41905 dotnet +System.Diagnostics.Contracts 6.0.922.41905 dotnet +System.Diagnostics.Debug 6.0.922.41905 dotnet +System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet +System.Diagnostics.Process 6.0.922.41905 dotnet +System.Diagnostics.StackTrace 6.0.922.41905 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet +System.Diagnostics.Tools 6.0.922.41905 dotnet +System.Diagnostics.TraceSource 6.0.922.41905 dotnet +System.Diagnostics.Tracing 6.0.922.41905 dotnet +System.Drawing 6.0.922.41905 dotnet +System.Drawing.Common 5.0.421.11614 dotnet +System.Drawing.Primitives 6.0.922.41905 dotnet +System.Dynamic.Runtime 6.0.922.41905 dotnet +System.Formats.Asn1 6.0.922.41905 dotnet +System.Globalization 6.0.922.41905 dotnet +System.Globalization.Calendars 6.0.922.41905 dotnet +System.Globalization.Extensions 6.0.922.41905 dotnet +System.IO 6.0.922.41905 dotnet +System.IO.Compression 6.0.922.41905 dotnet +System.IO.Compression.Brotli 6.0.922.41905 dotnet +System.IO.Compression.FileSystem 6.0.922.41905 dotnet +System.IO.Compression.ZipFile 6.0.922.41905 dotnet +System.IO.FileSystem 6.0.922.41905 dotnet +System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet +System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet +System.IO.FileSystem.Primitives 6.0.922.41905 dotnet +System.IO.FileSystem.Watcher 6.0.922.41905 dotnet +System.IO.IsolatedStorage 6.0.922.41905 dotnet +System.IO.MemoryMappedFiles 6.0.922.41905 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.922.41905 dotnet +System.IO.Pipes.AccessControl 6.0.922.41905 dotnet +System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet +System.Linq 6.0.922.41905 dotnet +System.Linq.Async (net6.0) 6.0.1.35981 dotnet +System.Linq.Expressions 6.0.922.41905 dotnet +System.Linq.Parallel 6.0.922.41905 dotnet +System.Linq.Queryable 6.0.922.41905 dotnet +System.Memory 6.0.922.41905 dotnet +System.Net 6.0.922.41905 dotnet +System.Net.Http 6.0.922.41905 dotnet +System.Net.Http.Json 6.0.922.41905 dotnet +System.Net.HttpListener 6.0.922.41905 dotnet +System.Net.Mail 6.0.922.41905 dotnet +System.Net.NameResolution 6.0.922.41905 dotnet +System.Net.NetworkInformation 6.0.922.41905 dotnet +System.Net.Ping 6.0.922.41905 dotnet +System.Net.Primitives 6.0.922.41905 dotnet +System.Net.Quic 6.0.922.41905 dotnet +System.Net.Requests 6.0.922.41905 dotnet +System.Net.Security 6.0.922.41905 dotnet +System.Net.ServicePoint 6.0.922.41905 dotnet +System.Net.Sockets 6.0.922.41905 dotnet +System.Net.WebClient 6.0.922.41905 dotnet +System.Net.WebHeaderCollection 6.0.922.41905 dotnet +System.Net.WebProxy 6.0.922.41905 dotnet +System.Net.WebSockets 6.0.922.41905 dotnet +System.Net.WebSockets.Client 6.0.922.41905 dotnet +System.Numerics 6.0.922.41905 dotnet +System.Numerics.Vectors 6.0.922.41905 dotnet +System.ObjectModel 6.0.922.41905 dotnet +System.Private.CoreLib 6.0.922.41905 dotnet +System.Private.DataContractSerialization 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet +System.Private.Uri 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet +System.Private.Xml 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet +System.Private.Xml.Linq 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet +System.Reflection 6.0.922.41905 dotnet +System.Reflection.DispatchProxy 6.0.922.41905 dotnet +System.Reflection.Emit 6.0.922.41905 dotnet +System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet +System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet +System.Reflection.Extensions 6.0.922.41905 dotnet +System.Reflection.Metadata 6.0.922.41905 dotnet +System.Reflection.Primitives 6.0.922.41905 dotnet +System.Reflection.TypeExtensions 6.0.922.41905 dotnet +System.Resources.Reader 6.0.922.41905 dotnet +System.Resources.ResourceManager 6.0.922.41905 dotnet +System.Resources.Writer 6.0.922.41905 dotnet +System.Runtime 6.0.922.41905 dotnet +System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet +System.Runtime.Extensions 6.0.922.41905 dotnet +System.Runtime.Handles 6.0.922.41905 dotnet +System.Runtime.InteropServices 6.0.922.41905 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet +System.Runtime.Intrinsics 6.0.922.41905 dotnet +System.Runtime.Loader 6.0.922.41905 dotnet +System.Runtime.Numerics 6.0.922.41905 dotnet +System.Runtime.Serialization 6.0.922.41905 dotnet +System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet +System.Runtime.Serialization.Json 6.0.922.41905 dotnet +System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet +System.Runtime.Serialization.Xml 6.0.922.41905 dotnet +System.Security 6.0.922.41905 dotnet +System.Security.AccessControl 6.0.922.41905 dotnet +System.Security.Claims 6.0.922.41905 dotnet +System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet +System.Security.Cryptography.Cng 6.0.922.41905 dotnet +System.Security.Cryptography.Csp 6.0.922.41905 dotnet +System.Security.Cryptography.Encoding 6.0.922.41905 dotnet +System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet +System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet +System.Security.Cryptography.Primitives 6.0.922.41905 dotnet +System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Principal 6.0.922.41905 dotnet +System.Security.Principal.Windows 6.0.922.41905 dotnet +System.Security.SecureString 6.0.922.41905 dotnet +System.ServiceModel.Web 6.0.922.41905 dotnet +System.ServiceProcess 6.0.922.41905 dotnet +System.Text.Encoding 6.0.922.41905 dotnet +System.Text.Encoding.CodePages 6.0.922.41905 dotnet +System.Text.Encoding.Extensions 6.0.922.41905 dotnet +System.Text.Encodings.Web 6.0.922.41905 dotnet +System.Text.Json 6.0.922.41905 dotnet +System.Text.RegularExpressions 6.0.922.41905 dotnet +System.Threading 6.0.922.41905 dotnet +System.Threading.Channels 6.0.922.41905 dotnet +System.Threading.Overlapped 6.0.922.41905 dotnet +System.Threading.Tasks 6.0.922.41905 dotnet +System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet +System.Threading.Tasks.Extensions 6.0.922.41905 dotnet +System.Threading.Tasks.Parallel 6.0.922.41905 dotnet +System.Threading.Thread 6.0.922.41905 dotnet +System.Threading.ThreadPool 6.0.922.41905 dotnet +System.Threading.Timer 6.0.922.41905 dotnet +System.Transactions 6.0.922.41905 dotnet +System.Transactions.Local 6.0.922.41905 dotnet +System.ValueTuple 6.0.922.41905 dotnet +System.Web 6.0.922.41905 dotnet +System.Web.HttpUtility 6.0.922.41905 dotnet +System.Windows 6.0.922.41905 dotnet +System.Xml 6.0.922.41905 dotnet +System.Xml.Linq 6.0.922.41905 dotnet +System.Xml.ReaderWriter 6.0.922.41905 dotnet +System.Xml.Serialization 6.0.922.41905 dotnet +System.Xml.XDocument 6.0.922.41905 dotnet +System.Xml.XPath 6.0.922.41905 dotnet +System.Xml.XPath.XDocument 6.0.922.41905 dotnet +System.Xml.XmlDocument 6.0.922.41905 dotnet +System.Xml.XmlSerializer 6.0.922.41905 dotnet +TMDbLib 1.9.2.0 dotnet +TagLib# 2.3.0.0 dotnet +UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet +WindowsBase 6.0.922.41905 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb +curl 7.81.0-1ubuntu1.15 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin 10.8.13-1 deb +jellyfin-ffmpeg5 5.1.4-2-jammy deb +jellyfin-server 10.8.13-1 deb +jellyfin-web 10.8.13-1 deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.5.3 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.2 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2.2 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.5 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 6.0.922.41905 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 6.0.922.41905 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.12 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net.DotNetRuntime 4.2.4.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +xmlstarlet 1.6.1-2.1 deb +zlib.net 1.0.5.0 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 7829ce33d03cf373591f5f6232cdfda3e884c8b1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Dec 2023 12:42:25 +0000 Subject: [PATCH 1929/2257] Bot Updating Package Versions --- package_versions.txt | 1209 +++++++++++++++++++++--------------------- 1 file changed, 600 insertions(+), 609 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8a7caf3..eb4c05e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,609 +1,600 @@ -NAME VERSION TYPE -AsyncLock 3.2.1.0 dotnet -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet -CacheManager.Core 1.2.0.0 dotnet -CommandLine 2.9.1.0 dotnet -Diacritics 3.3.18 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DiscUtilsfor.NETand.NETCorecorelibrarythatsupportspartsofDiscUtils 0.16.13.55129 dotnet -DotNet.Glob 1.0.0.0 dotnet -EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet -EasyCaching.Core 1.9.1.0 dotnet -Emby.Dlna 10.9.0 dotnet -Emby.Naming 10.9.0 dotnet -Emby.Photos 10.9.0 dotnet -Emby.Server.Implementations 10.9.0 dotnet -ExCSS 4.1.4.0 dotnet -Fizzler 1.2.1.0 dotnet -HarfBuzzSharp 7.3.0.0 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Drawing 10.9.0 dotnet -Jellyfin.Drawing.Skia 10.9.0 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Server 10.9.0 dotnet -Jellyfin.Server.Implementations 10.9.0 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET.NET6.0 13.0.3.27908 dotnet -LrcParser 2023.524.0.0 dotnet -MediaBrowser.Common 10.9.0 dotnet -MediaBrowser.Controller 10.9.0 dotnet -MediaBrowser.LocalMetadata 10.9.0 dotnet -MediaBrowser.MediaEncoding 10.9.0 dotnet -MediaBrowser.Model 10.9.0 dotnet -MediaBrowser.Providers 10.9.0 dotnet -MediaBrowser.XbmcMetadata 10.9.0 dotnet -MetaBrainz.Common 1.0.0 dotnet -MetaBrainz.Common.Json 5.1.0 dotnet -MetaBrainz.MusicBrainz 5.0.1 dotnet -Microsoft.AspNetCore 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1323.51816 dotnet -Microsoft.Data.Sqlite 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet -Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet -Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet -Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet -Microsoft.Extensions.Features 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet -Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet -Microsoft.Extensions.Hosting 7.0.323.6910 dotnet -Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Logging 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet -Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet -Microsoft.Extensions.Options 7.0.323.6910 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet -Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet -Microsoft.JSInterop 7.0.1323.52007 dotnet -Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1323.51816 dotnet -Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet -Microsoft.Win32.Primitives 7.0.1323.51816 dotnet -Microsoft.Win32.Registry 7.0.1323.51816 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -Mono.Nat 3.0.4 dotnet -NEbml.Core 0.11.0.0 dotnet -PlaylistsNET 1.4.0.0 dotnet -RSSDP 2019.1.20.3 dotnet -SQLitePCLRaw.batteriesv2 2.1.4.1835 dotnet -SQLitePCLRaw.core 2.1.4.1835 dotnet -SQLitePCLRaw.provider.esqlite3 2.1.4.1835 dotnet -Serilog 3.1.0.0 dotnet -Serilog.AspNetCore 7.0.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 7.0.0.0 dotnet -Serilog.Extensions.Logging 7.0.0.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 7.0.1.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 5.0.0.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 3.0.0.0 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.2 dotnet -SkiaSharp 2.88.5.0 dotnet -SkiaSharp.HarfBuzz 2.88.5.0 dotnet -Svg.Custom 1.0.0.2 dotnet -Svg.Model 1.0.0.2 dotnet -Svg.Skia 1.0.0.2 dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1323.51816 dotnet -System.AppContext 7.0.1323.51816 dotnet -System.Buffers 7.0.1323.51816 dotnet -System.Collections 7.0.1323.51816 dotnet -System.Collections.Concurrent 7.0.1323.51816 dotnet -System.Collections.Immutable 7.0.1323.51816 dotnet -System.Collections.NonGeneric 7.0.1323.51816 dotnet -System.Collections.Specialized 7.0.1323.51816 dotnet -System.ComponentModel 7.0.1323.51816 dotnet -System.ComponentModel.Annotations 7.0.1323.51816 dotnet -System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet -System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet -System.ComponentModel.Primitives 7.0.1323.51816 dotnet -System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet -System.Configuration 7.0.1323.51816 dotnet -System.Console 7.0.1323.51816 dotnet -System.Core 7.0.1323.51816 dotnet -System.Data 7.0.1323.51816 dotnet -System.Data.Common 7.0.1323.51816 dotnet -System.Data.DataSetExtensions 7.0.1323.51816 dotnet -System.Diagnostics.Contracts 7.0.1323.51816 dotnet -System.Diagnostics.Debug 7.0.1323.51816 dotnet -System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet -System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet -System.Diagnostics.Process 7.0.1323.51816 dotnet -System.Diagnostics.StackTrace 7.0.1323.51816 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet -System.Diagnostics.Tools 7.0.1323.51816 dotnet -System.Diagnostics.TraceSource 7.0.1323.51816 dotnet -System.Diagnostics.Tracing 7.0.1323.51816 dotnet -System.Drawing 7.0.1323.51816 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1323.51816 dotnet -System.Dynamic.Runtime 7.0.1323.51816 dotnet -System.Formats.Asn1 7.0.1323.51816 dotnet -System.Formats.Tar 7.0.1323.51816 dotnet -System.Globalization 7.0.1323.51816 dotnet -System.Globalization.Calendars 7.0.1323.51816 dotnet -System.Globalization.Extensions 7.0.1323.51816 dotnet -System.IO 7.0.1323.51816 dotnet -System.IO.Compression 7.0.1323.51816 dotnet -System.IO.Compression.Brotli 7.0.1323.51816 dotnet -System.IO.Compression.FileSystem 7.0.1323.51816 dotnet -System.IO.Compression.ZipFile 7.0.1323.51816 dotnet -System.IO.FileSystem 7.0.1323.51816 dotnet -System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet -System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet -System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet -System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet -System.IO.IsolatedStorage 7.0.1323.51816 dotnet -System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet -System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1323.51816 dotnet -System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet -System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet -System.Linq 7.0.1323.51816 dotnet -System.Linq.Async 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1323.51816 dotnet -System.Linq.Parallel 7.0.1323.51816 dotnet -System.Linq.Queryable 7.0.1323.51816 dotnet -System.Memory 7.0.1323.51816 dotnet -System.Net 7.0.1323.51816 dotnet -System.Net.Http 7.0.1323.51816 dotnet -System.Net.Http.Json 7.0.1323.51816 dotnet -System.Net.HttpListener 7.0.1323.51816 dotnet -System.Net.Mail 7.0.1323.51816 dotnet -System.Net.NameResolution 7.0.1323.51816 dotnet -System.Net.NetworkInformation 7.0.1323.51816 dotnet -System.Net.Ping 7.0.1323.51816 dotnet -System.Net.Primitives 7.0.1323.51816 dotnet -System.Net.Quic 7.0.1323.51816 dotnet -System.Net.Requests 7.0.1323.51816 dotnet -System.Net.Security 7.0.1323.51816 dotnet -System.Net.ServicePoint 7.0.1323.51816 dotnet -System.Net.Sockets 7.0.1323.51816 dotnet -System.Net.WebClient 7.0.1323.51816 dotnet -System.Net.WebHeaderCollection 7.0.1323.51816 dotnet -System.Net.WebProxy 7.0.1323.51816 dotnet -System.Net.WebSockets 7.0.1323.51816 dotnet -System.Net.WebSockets.Client 7.0.1323.51816 dotnet -System.Numerics 7.0.1323.51816 dotnet -System.Numerics.Vectors 7.0.1323.51816 dotnet -System.ObjectModel 7.0.1323.51816 dotnet -System.Private.CoreLib 7.0.1323.51816 dotnet -System.Private.DataContractSerialization 7.0.1323.51816 dotnet -System.Private.Uri 7.0.1323.51816 dotnet -System.Private.Xml 7.0.1323.51816 dotnet -System.Private.Xml.Linq 7.0.1323.51816 dotnet -System.Reflection 7.0.1323.51816 dotnet -System.Reflection.DispatchProxy 7.0.1323.51816 dotnet -System.Reflection.Emit 7.0.1323.51816 dotnet -System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet -System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet -System.Reflection.Extensions 7.0.1323.51816 dotnet -System.Reflection.Metadata 7.0.1323.51816 dotnet -System.Reflection.Primitives 7.0.1323.51816 dotnet -System.Reflection.TypeExtensions 7.0.1323.51816 dotnet -System.Resources.Reader 7.0.1323.51816 dotnet -System.Resources.ResourceManager 7.0.1323.51816 dotnet -System.Resources.Writer 7.0.1323.51816 dotnet -System.Runtime 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet -System.Runtime.Extensions 7.0.1323.51816 dotnet -System.Runtime.Handles 7.0.1323.51816 dotnet -System.Runtime.InteropServices 7.0.1323.51816 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet -System.Runtime.Intrinsics 7.0.1323.51816 dotnet -System.Runtime.Loader 7.0.1323.51816 dotnet -System.Runtime.Numerics 7.0.1323.51816 dotnet -System.Runtime.Serialization 7.0.1323.51816 dotnet -System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet -System.Runtime.Serialization.Json 7.0.1323.51816 dotnet -System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet -System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet -System.Security 7.0.1323.51816 dotnet -System.Security.AccessControl 7.0.1323.51816 dotnet -System.Security.Claims 7.0.1323.51816 dotnet -System.Security.Cryptography 7.0.1323.51816 dotnet -System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet -System.Security.Cryptography.Cng 7.0.1323.51816 dotnet -System.Security.Cryptography.Csp 7.0.1323.51816 dotnet -System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet -System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet -System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet -System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet -System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1323.51816 dotnet -System.Security.Principal.Windows 7.0.1323.51816 dotnet -System.Security.SecureString 7.0.1323.51816 dotnet -System.ServiceModel.Web 7.0.1323.51816 dotnet -System.ServiceProcess 7.0.1323.51816 dotnet -System.Text.Encoding 7.0.1323.51816 dotnet -System.Text.Encoding.CodePages 7.0.1323.51816 dotnet -System.Text.Encoding.Extensions 7.0.1323.51816 dotnet -System.Text.Encodings.Web 7.0.1323.51816 dotnet -System.Text.Json 7.0.1323.51816 dotnet -System.Text.RegularExpressions 7.0.1323.51816 dotnet -System.Threading 7.0.1323.51816 dotnet -System.Threading.Channels 7.0.1323.51816 dotnet -System.Threading.Overlapped 7.0.1323.51816 dotnet -System.Threading.RateLimiting 7.0.1123.42427 dotnet -System.Threading.Tasks 7.0.1323.51816 dotnet -System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet -System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet -System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet -System.Threading.Thread 7.0.1323.51816 dotnet -System.Threading.ThreadPool 7.0.1323.51816 dotnet -System.Threading.Timer 7.0.1323.51816 dotnet -System.Transactions 7.0.1323.51816 dotnet -System.Transactions.Local 7.0.1323.51816 dotnet -System.ValueTuple 7.0.1323.51816 dotnet -System.Web 7.0.1323.51816 dotnet -System.Web.HttpUtility 7.0.1323.51816 dotnet -System.Windows 7.0.1323.51816 dotnet -System.Xml 7.0.1323.51816 dotnet -System.Xml.Linq 7.0.1323.51816 dotnet -System.Xml.ReaderWriter 7.0.1323.51816 dotnet -System.Xml.Serialization 7.0.1323.51816 dotnet -System.Xml.XDocument 7.0.1323.51816 dotnet -System.Xml.XPath 7.0.1323.51816 dotnet -System.Xml.XPath.XDocument 7.0.1323.51816 dotnet -System.Xml.XmlDocument 7.0.1323.51816 dotnet -System.Xml.XmlSerializer 7.0.1323.51816 dotnet -TMDbLibrary 2.0.0.0 dotnet -TagLibSharp 2.3.0.0 dotnet -UTFUnknown 2.0.664 dotnet -WindowsBase 7.0.1323.51816 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.11 deb -apt-utils 2.4.11 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.15 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-1-jammy deb -jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231219.3-unstable deb -jq 1.6-2.1ubuntu3 deb -libaacs0 0.11.1-1 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libbdplus0 0.2.0-1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libglib2.0-data 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.13.2 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.1 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.5 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb -mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1323.51816 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1323.51816 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.12 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheusnet.DotNetRuntime 4.4.0.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -shared-mime-info 2.1-2 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -xdg-user-dirs 0.17-2ubuntu4 deb -zlib.net 1.0.6.0 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CacheManager.NET 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +Diacritics.NET 3.3.18 dotnet +DiscUtils.Core 0.16.13.55129 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet +EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet +EasyCaching.Core 1.9.1.0 dotnet +ExCSS 4.1.4.0 dotnet +Fizzler 1.2.1.0 dotnet +HarfBuzzSharp 7.3.0.0-e2c5c86249621857107c779af0f79b4d06613766 dotnet +Jellyfin Server 10.9.0 dotnet +Jellyfin Server 2019.1.20.3 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Data.dll 10.9.0 dotnet +Jellyfin.Extensions.dll 10.9.0 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Networking.dll 10.9.0 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET 13.0.3.27908 dotnet +MetaBrainz.Common 1.0.0 dotnet +MetaBrainz.Common.Json 5.1.0 dotnet +MetaBrainz.MusicBrainz 5.0.1 dotnet +Microsoft.AspNetCore 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 7.0.1323.51816 dotnet +Microsoft.Data.Sqlite 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet +Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet +Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet +Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet +Microsoft.Extensions.Features 7.0.1323.52007 dotnet +Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet +Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet +Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet +Microsoft.Extensions.Hosting 7.0.323.6910 dotnet +Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Http 7.0.22.51805 dotnet +Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Logging 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet +Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet +Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet +Microsoft.Extensions.Options 7.0.323.6910 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet +Microsoft.Extensions.Primitives 7.0.22.51805 dotnet +Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet +Microsoft.JSInterop 7.0.1323.52007 dotnet +Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 7.0.1323.51816 dotnet +Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet +Microsoft.Win32.Primitives 7.0.1323.51816 dotnet +Microsoft.Win32.Registry 7.0.1323.51816 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +Mono.Nat 3.0.4-master+48ef888 dotnet +NEbml.Core 0.11.0.0 dotnet +NeoSmart.AsyncLock 3.2.1.0 dotnet +PlaylistsNET 1.4.0.0 dotnet +Prometheus.AspNetCore.dll 8.1.0 dotnet +Prometheus.NetStandard.dll 8.1.0 dotnet +SQLitePCLRaw.batteries_v2 2.1.4.1835 dotnet +SQLitePCLRaw.core 2.1.4.1835 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.4.1835 dotnet +Serilog 3.1.0.0 dotnet +Serilog.AspNetCore 7.0.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 7.0.0.0 dotnet +Serilog.Extensions.Logging 7.0.0.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 7.0.1.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 5.0.0.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 3.0.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +ShimSkiaSharp 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +SkiaSharp 2.88.5.0-ea9fb439a8ff74130bce2d82d1aefff9b4523e2f dotnet +SkiaSharp.HarfBuzz 2.88.5.0-ea9fb439a8ff74130bce2d82d1aefff9b4523e2f dotnet +Svg.Custom 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +Svg.Model 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +Svg.Skia 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 7.0.1323.51816 dotnet +System.AppContext 7.0.1323.51816 dotnet +System.Buffers 7.0.1323.51816 dotnet +System.Collections 7.0.1323.51816 dotnet +System.Collections.Concurrent 7.0.1323.51816 dotnet +System.Collections.Immutable 7.0.1323.51816 dotnet +System.Collections.NonGeneric 7.0.1323.51816 dotnet +System.Collections.Specialized 7.0.1323.51816 dotnet +System.ComponentModel 7.0.1323.51816 dotnet +System.ComponentModel.Annotations 7.0.1323.51816 dotnet +System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet +System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet +System.ComponentModel.Primitives 7.0.1323.51816 dotnet +System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet +System.Configuration 7.0.1323.51816 dotnet +System.Console 7.0.1323.51816 dotnet +System.Core 7.0.1323.51816 dotnet +System.Data 7.0.1323.51816 dotnet +System.Data.Common 7.0.1323.51816 dotnet +System.Data.DataSetExtensions 7.0.1323.51816 dotnet +System.Diagnostics.Contracts 7.0.1323.51816 dotnet +System.Diagnostics.Debug 7.0.1323.51816 dotnet +System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet +System.Diagnostics.EventLog 7.0.22.51805 dotnet +System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet +System.Diagnostics.Process 7.0.1323.51816 dotnet +System.Diagnostics.StackTrace 7.0.1323.51816 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet +System.Diagnostics.Tools 7.0.1323.51816 dotnet +System.Diagnostics.TraceSource 7.0.1323.51816 dotnet +System.Diagnostics.Tracing 7.0.1323.51816 dotnet +System.Drawing 7.0.1323.51816 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 7.0.1323.51816 dotnet +System.Dynamic.Runtime 7.0.1323.51816 dotnet +System.Formats.Asn1 7.0.1323.51816 dotnet +System.Formats.Tar 7.0.1323.51816 dotnet +System.Globalization 7.0.1323.51816 dotnet +System.Globalization.Calendars 7.0.1323.51816 dotnet +System.Globalization.Extensions 7.0.1323.51816 dotnet +System.IO 7.0.1323.51816 dotnet +System.IO.Compression 7.0.1323.51816 dotnet +System.IO.Compression.Brotli 7.0.1323.51816 dotnet +System.IO.Compression.FileSystem 7.0.1323.51816 dotnet +System.IO.Compression.ZipFile 7.0.1323.51816 dotnet +System.IO.FileSystem 7.0.1323.51816 dotnet +System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet +System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet +System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet +System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet +System.IO.IsolatedStorage 7.0.1323.51816 dotnet +System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet +System.IO.Pipelines 7.0.22.51805 dotnet +System.IO.Pipes 7.0.1323.51816 dotnet +System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet +System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet +System.Linq 7.0.1323.51816 dotnet +System.Linq.Async (net6.0) 6.0.1.35981 dotnet +System.Linq.Expressions 7.0.1323.51816 dotnet +System.Linq.Parallel 7.0.1323.51816 dotnet +System.Linq.Queryable 7.0.1323.51816 dotnet +System.Memory 7.0.1323.51816 dotnet +System.Net 7.0.1323.51816 dotnet +System.Net.Http 7.0.1323.51816 dotnet +System.Net.Http.Json 7.0.1323.51816 dotnet +System.Net.HttpListener 7.0.1323.51816 dotnet +System.Net.Mail 7.0.1323.51816 dotnet +System.Net.NameResolution 7.0.1323.51816 dotnet +System.Net.NetworkInformation 7.0.1323.51816 dotnet +System.Net.Ping 7.0.1323.51816 dotnet +System.Net.Primitives 7.0.1323.51816 dotnet +System.Net.Quic 7.0.1323.51816 dotnet +System.Net.Requests 7.0.1323.51816 dotnet +System.Net.Security 7.0.1323.51816 dotnet +System.Net.ServicePoint 7.0.1323.51816 dotnet +System.Net.Sockets 7.0.1323.51816 dotnet +System.Net.WebClient 7.0.1323.51816 dotnet +System.Net.WebHeaderCollection 7.0.1323.51816 dotnet +System.Net.WebProxy 7.0.1323.51816 dotnet +System.Net.WebSockets 7.0.1323.51816 dotnet +System.Net.WebSockets.Client 7.0.1323.51816 dotnet +System.Numerics 7.0.1323.51816 dotnet +System.Numerics.Vectors 7.0.1323.51816 dotnet +System.ObjectModel 7.0.1323.51816 dotnet +System.Private.CoreLib 7.0.1323.51816 dotnet +System.Private.DataContractSerialization 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet +System.Private.Uri 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet +System.Private.Xml 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet +System.Private.Xml.Linq 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet +System.Reflection 7.0.1323.51816 dotnet +System.Reflection.DispatchProxy 7.0.1323.51816 dotnet +System.Reflection.Emit 7.0.1323.51816 dotnet +System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet +System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet +System.Reflection.Extensions 7.0.1323.51816 dotnet +System.Reflection.Metadata 7.0.1323.51816 dotnet +System.Reflection.Primitives 7.0.1323.51816 dotnet +System.Reflection.TypeExtensions 7.0.1323.51816 dotnet +System.Resources.Reader 7.0.1323.51816 dotnet +System.Resources.ResourceManager 7.0.1323.51816 dotnet +System.Resources.Writer 7.0.1323.51816 dotnet +System.Runtime 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet +System.Runtime.Extensions 7.0.1323.51816 dotnet +System.Runtime.Handles 7.0.1323.51816 dotnet +System.Runtime.InteropServices 7.0.1323.51816 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet +System.Runtime.Intrinsics 7.0.1323.51816 dotnet +System.Runtime.Loader 7.0.1323.51816 dotnet +System.Runtime.Numerics 7.0.1323.51816 dotnet +System.Runtime.Serialization 7.0.1323.51816 dotnet +System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet +System.Runtime.Serialization.Json 7.0.1323.51816 dotnet +System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet +System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet +System.Security 7.0.1323.51816 dotnet +System.Security.AccessControl 7.0.1323.51816 dotnet +System.Security.Claims 7.0.1323.51816 dotnet +System.Security.Cryptography 7.0.1323.51816 dotnet +System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet +System.Security.Cryptography.Cng 7.0.1323.51816 dotnet +System.Security.Cryptography.Csp 7.0.1323.51816 dotnet +System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet +System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet +System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet +System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet +System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet +System.Security.Cryptography.Xml 7.0.222.60605 dotnet +System.Security.Principal 7.0.1323.51816 dotnet +System.Security.Principal.Windows 7.0.1323.51816 dotnet +System.Security.SecureString 7.0.1323.51816 dotnet +System.ServiceModel.Web 7.0.1323.51816 dotnet +System.ServiceProcess 7.0.1323.51816 dotnet +System.Text.Encoding 7.0.1323.51816 dotnet +System.Text.Encoding.CodePages 7.0.1323.51816 dotnet +System.Text.Encoding.Extensions 7.0.1323.51816 dotnet +System.Text.Encodings.Web 7.0.1323.51816 dotnet +System.Text.Json 7.0.1323.51816 dotnet +System.Text.RegularExpressions 7.0.1323.51816 dotnet +System.Threading 7.0.1323.51816 dotnet +System.Threading.Channels 7.0.1323.51816 dotnet +System.Threading.Overlapped 7.0.1323.51816 dotnet +System.Threading.RateLimiting 7.0.1123.42427 dotnet +System.Threading.Tasks 7.0.1323.51816 dotnet +System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet +System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet +System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet +System.Threading.Thread 7.0.1323.51816 dotnet +System.Threading.ThreadPool 7.0.1323.51816 dotnet +System.Threading.Timer 7.0.1323.51816 dotnet +System.Transactions 7.0.1323.51816 dotnet +System.Transactions.Local 7.0.1323.51816 dotnet +System.ValueTuple 7.0.1323.51816 dotnet +System.Web 7.0.1323.51816 dotnet +System.Web.HttpUtility 7.0.1323.51816 dotnet +System.Windows 7.0.1323.51816 dotnet +System.Xml 7.0.1323.51816 dotnet +System.Xml.Linq 7.0.1323.51816 dotnet +System.Xml.ReaderWriter 7.0.1323.51816 dotnet +System.Xml.Serialization 7.0.1323.51816 dotnet +System.Xml.XDocument 7.0.1323.51816 dotnet +System.Xml.XPath 7.0.1323.51816 dotnet +System.Xml.XPath.XDocument 7.0.1323.51816 dotnet +System.Xml.XmlDocument 7.0.1323.51816 dotnet +System.Xml.XmlSerializer 7.0.1323.51816 dotnet +TMDbLib 2.0.0.0 dotnet +TagLib# 2.3.0.0 dotnet +UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet +WindowsBase 7.0.1323.51816 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb +curl 7.81.0-1ubuntu1.15 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg6 6.0.1-1-jammy deb +jellyfin-server 20231115.15-unstable deb +jellyfin-web 20231226.1-unstable deb +jq 1.6-2.1ubuntu3 deb +karaoke --dev 2023.524.0.0 dotnet +libaacs0 0.11.1-1 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libbdplus0 0.2.0-1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libglib2.0-data 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.13.2 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.1 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.2 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2.2 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.5 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 7.0.1323.51816 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 7.0.1323.51816 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.12 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net.DotNetRuntime 4.4.0.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +shared-mime-info 2.1-2 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023c-0ubuntu0.22.04.2 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +xdg-user-dirs 0.17-2ubuntu4 deb +zlib.net 1.0.6.0 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 3d6ee5c7d74a97521b4e2180e2a718c803efc021 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 2 Jan 2024 12:42:51 +0000 Subject: [PATCH 1930/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eb4c05e..f08f379 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -415,7 +415,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20231226.1-unstable deb +jellyfin-web 20240102.2-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From ddb030fc5ff8f0f6101c2058f1697ea3249a57a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 12:47:28 +0000 Subject: [PATCH 1931/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f08f379..f378770 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -415,7 +415,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240102.2-unstable deb +jellyfin-web 20240108.5-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 2e044de5430abce8433800c69558ee8acc5f3055 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 12:43:33 +0000 Subject: [PATCH 1932/2257] Bot Updating Templated Files --- Jenkinsfile | 295 +++++++++++++++++++++++++++------------------------- 1 file changed, 152 insertions(+), 143 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9450f70..5eac616 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -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=master -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 master - 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 master - 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 master - 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=master -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 master + 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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 master + 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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 master + 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master 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 524cb7c530afc60efbb91aeef400bfcca2cb2c6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 12:44:38 +0000 Subject: [PATCH 1933/2257] Bot Updating Templated Files --- Jenkinsfile | 295 +++++++++++++++++++++++++++------------------------- 1 file changed, 152 insertions(+), 143 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c31f822..b7e80db 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -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 627934c1aacd21168037b7daf32214f751bd0763 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 12:47:00 +0000 Subject: [PATCH 1934/2257] Bot Updating Templated Files --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 28f9b54..a09f14a 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,6 @@ To help you get started creating a container from this image you can either use ```yaml --- -version: "2.1" services: jellyfin: image: lscr.io/linuxserver/jellyfin:nightly @@ -259,7 +258,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: @@ -324,21 +323,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 jellyfin - ``` - -* 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 feffdc1a45782e2b4586d52aeabf726c64a52ea1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 12:48:06 +0000 Subject: [PATCH 1935/2257] Bot Updating Templated Files --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 3962f3f..b025aff 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,6 @@ To help you get started creating a container from this image you can either use ```yaml --- -version: "2.1" services: jellyfin: image: lscr.io/linuxserver/jellyfin:latest @@ -266,7 +265,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: @@ -331,21 +330,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 jellyfin - ``` - -* 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 ce85662050ef657e1a44d8a2bf01e27f37839b54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 12:50:46 +0000 Subject: [PATCH 1936/2257] 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 f378770..b1e18d9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -415,7 +415,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240108.5-unstable deb +jellyfin-web 20240112.8-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -518,7 +518,7 @@ libsemanage-common 3.3-1build2 libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.2 deb libssl3 3.0.2-0ubuntu1.10 deb From d2ca6c23dcc15725f2ed5616f125dabe493d7e1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jan 2024 12:51:46 +0000 Subject: [PATCH 1937/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8245f98..ae7f892 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -496,7 +496,7 @@ libsemanage-common 3.3-1build2 libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.1 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.2 deb libssl3 3.0.2-0ubuntu1.10 deb From f70f1831a8bb3a4e6085e0b11794b56dbf737154 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Jan 2024 12:46:10 +0000 Subject: [PATCH 1938/2257] 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 ae7f892..142d731 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -542,7 +542,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.5 deb +locales 2.35-0ubuntu3.6 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb @@ -568,7 +568,7 @@ sed 4.8-1ubuntu2 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb +tzdata 2023d-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From a9963560d9805897dac609a64ab25afe3fb4494d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Jan 2024 12:47:58 +0000 Subject: [PATCH 1939/2257] 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 b1e18d9..607d8ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -415,7 +415,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-1-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240112.8-unstable deb +jellyfin-web 20240122.2-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -563,7 +563,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.5 deb +locales 2.35-0ubuntu3.6 deb login 1:4.8.1-2ubuntu2.1 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb @@ -590,7 +590,7 @@ sensible-utils 0.0.17 shared-mime-info 2.1-2 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023c-0ubuntu0.22.04.2 deb +tzdata 2023d-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 083be7e99c442aade5718176da50dc8fb4af44a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jan 2024 12:39:49 +0000 Subject: [PATCH 1940/2257] 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 142d731..1a5b86e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -395,7 +395,7 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin 10.8.13-1 deb -jellyfin-ffmpeg5 5.1.4-2-jammy deb +jellyfin-ffmpeg5 5.1.4-3-jammy deb jellyfin-server 10.8.13-1 deb jellyfin-web 10.8.13-1 deb jq 1.6-2.1ubuntu3 deb @@ -498,7 +498,7 @@ libsepol2 3.3-1build1 libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.2 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb From bfa79dbc508121a440dde8a371c6c4ed7d2f5164 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jan 2024 12:42:21 +0000 Subject: [PATCH 1941/2257] 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 607d8ae..4625905 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -413,9 +413,9 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-1-jammy deb +jellyfin-ffmpeg6 6.0.1-2-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240122.2-unstable deb +jellyfin-web 20240126.4-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -520,7 +520,7 @@ libsepol2 3.3-1build1 libsmartcols1 2.37.2-4ubuntu3 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.2 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb libssl3 3.0.2-0ubuntu1.10 deb libstdc++6 12.1.0-2ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.9 deb From 4458573d3e6bfa2f4028d71e9da1b59f6197e5fe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Feb 2024 12:42:50 +0000 Subject: [PATCH 1942/2257] 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 4625905..299b4d7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -474,8 +474,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -577,7 +577,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 7.0.1323.51816 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.12 deb +openssl 3.0.2-0ubuntu1.13 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb From 71bbb460bf18c1ba53bcc3110c4d24fd2be533ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Feb 2024 13:43:48 +0000 Subject: [PATCH 1943/2257] 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 1a5b86e..5471427 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -452,8 +452,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -556,7 +556,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 6.0.922.41905 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.12 deb +openssl 3.0.2-0ubuntu1.13 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb From 7bb0cf1bc9353bb2e923b046dd00aafb035372e9 Mon Sep 17 00:00:00 2001 From: Roxedus <me@roxedus.dev> Date: Mon, 12 Feb 2024 18:41:53 +0100 Subject: [PATCH 1944/2257] Switch to readme_hwaccel Closes #226, #228 --- readme-vars.yml | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index b1248fb..67d5ea9 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -69,28 +69,17 @@ app_setup_block: | More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). - ## Hardware Acceleration + ## Hardware Acceleration Enhancements + + This list out the enhancements we have explicit made for hardware acceleration in this image. ### Intel - Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: - - `--device=/dev/dri:/dev/dri` - - We will automatically ensure the abc user inside of the container has the proper permissions to access this device. - To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the OpenCL-Intel mod from here: https://mods.linuxserver.io/?mod=jellyfin - ### Nvidia - - Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: - - https://github.com/NVIDIA/nvidia-docker - - We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - + ### OpenMAX (Raspberry Pi) Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: @@ -110,9 +99,12 @@ app_setup_block: | --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` + +readme_hwaccel: true unraid_template_sync: false # changelog changelogs: + - {date: "12.02.24:", desc: "Use universal hardware acceleration blurb"} - {date: "12.09.23:", desc: "Take ownership of plugin directories."} - {date: "04.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - {date: "07.12.22:", desc: "Rebase master to Jammy, migrate to s6v3."} From 41951259d273ba1a222780c39b3a6715ffc4822e Mon Sep 17 00:00:00 2001 From: Roxedus <me@roxedus.dev> Date: Mon, 12 Feb 2024 19:25:11 +0100 Subject: [PATCH 1945/2257] Sync readme --- README.md | 47 +++++++++++++++++++++++++++++++---------------- readme-vars.yml | 8 ++++---- 2 files changed, 35 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index b025aff..b777a3c 100644 --- a/README.md +++ b/README.md @@ -72,29 +72,18 @@ Webui can be found at `http://<your-ip>:8096` More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). -## Hardware Acceleration +### Hardware Acceleration Enhancements + +This list out the enhancements we have explicit made for hardware acceleration in this image. ### Intel -Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: - -`--device=/dev/dri:/dev/dri` - -We will automatically ensure the abc user inside of the container has the proper permissions to access this device. - To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the OpenCL-Intel mod from here: https://mods.linuxserver.io/?mod=jellyfin -### Nvidia -Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: - -https://github.com/NVIDIA/nvidia-docker - -We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - -### OpenMAX (Raspberry Pi) +#### OpenMAX (Raspberry Pi) Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: @@ -104,7 +93,7 @@ Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount the -v /opt/vc/lib:/opt/vc/lib ``` -### V4L2 (Raspberry Pi) +#### V4L2 (Raspberry Pi) Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: @@ -114,6 +103,31 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` +### Hardware Acceleration + +Many desktop application will need access to a GPU to function properly and even some Desktop Environments have compisitor effects that will not function without a GPU. This is not a hard requirement and all base images will function without a video device mounted into the container. + +#### Intel/ATI/AMD + +To leverage hardware acceleration you will need to mount /dev/dri video device inside of the container. + +```text +--device=/dev/dri:/dev/dri +``` + +We will automatically ensure the abc user inside of the container has the proper permissions to access this device. + +#### Nvidia + +Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: +https://github.com/NVIDIA/nvidia-docker + +We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the container. + +#### Arm Devices + +Best effort is made to install tools to allow mounting in /dev/dri on Arm devices. In most cases if /dev/dri exists on the host it should just work. If running a Raspberry Pi 4 be sure to enable `dtoverlay=vc4-fkms-v3d` in your usercfg.txt. + ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. @@ -357,6 +371,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **12.02.24:** - Use universal hardware acceleration blurb * **12.09.23:** - Take ownership of plugin directories. * **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase master to Jammy, migrate to s6v3. diff --git a/readme-vars.yml b/readme-vars.yml index 67d5ea9..4316cd6 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -69,7 +69,7 @@ app_setup_block: | More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). - ## Hardware Acceleration Enhancements + ### Hardware Acceleration Enhancements This list out the enhancements we have explicit made for hardware acceleration in this image. @@ -79,8 +79,8 @@ app_setup_block: | https://mods.linuxserver.io/?mod=jellyfin - - ### OpenMAX (Raspberry Pi) + + #### OpenMAX (Raspberry Pi) Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: @@ -90,7 +90,7 @@ app_setup_block: | -v /opt/vc/lib:/opt/vc/lib ``` - ### V4L2 (Raspberry Pi) + #### V4L2 (Raspberry Pi) Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: From bff495cd630fb3a76f7dd94af02b146b350c30ff Mon Sep 17 00:00:00 2001 From: Roxedus <me@roxedus.dev> Date: Tue, 13 Feb 2024 10:09:52 +0100 Subject: [PATCH 1946/2257] Update wording --- README.md | 2 +- readme-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b777a3c..1541d6f 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ More information can be found on the official documentation [here](https://jelly ### Hardware Acceleration Enhancements -This list out the enhancements we have explicit made for hardware acceleration in this image. +This section lists the enhancements we have made for hardware acceleration in this image specifically. ### Intel diff --git a/readme-vars.yml b/readme-vars.yml index 4316cd6..6cf57ab 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -71,7 +71,7 @@ app_setup_block: | ### Hardware Acceleration Enhancements - This list out the enhancements we have explicit made for hardware acceleration in this image. + This section lists the enhancements we have made for hardware acceleration in this image specifically. ### Intel From 91ee7c58300bc7180dee64b6ed903c07a671a5b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Feb 2024 12:39:26 +0000 Subject: [PATCH 1947/2257] 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 5471427..7929ce5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -160,7 +160,7 @@ Microsoft.VisualBasic.Core 11.100.922.41 Microsoft.Win32.Primitives 6.0.922.41905 dotnet Microsoft.Win32.Registry 6.0.922.41905 dotnet Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet -Mono.Nat 3.0.3-master+4f1a615 dotnet +Mono.Nat 3.0.3 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.2.1.0 dotnet Prometheus.AspNetCore.dll 6.0.0 dotnet @@ -184,7 +184,7 @@ Serilog.Sinks.File 5.0.0.0 Serilog.Sinks.Graylog 2.3.0.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet SharpCompress 0.32.2+3009e6dcfd183760fbdb675249b7a65a2894618b dotnet -SkiaSharp 2.88.2.0-193b587552cb0ed39372a049d7e6c692db98c267 dotnet +SkiaSharp 2.88.2.0 dotnet SkiaSharp.Extended.Svg (netstandard2.0) 1.60.0.0 dotnet Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet @@ -274,10 +274,10 @@ System.Numerics 6.0.922.41905 System.Numerics.Vectors 6.0.922.41905 dotnet System.ObjectModel 6.0.922.41905 dotnet System.Private.CoreLib 6.0.922.41905 dotnet -System.Private.DataContractSerialization 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet -System.Private.Uri 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet -System.Private.Xml 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet -System.Private.Xml.Linq 6.0.9-servicing.22419.5+163a63591cf9e9b682063cf3995948c2b885a042 dotnet +System.Private.DataContractSerialization 6.0.922.41905 dotnet +System.Private.Uri 6.0.922.41905 dotnet +System.Private.Xml 6.0.922.41905 dotnet +System.Private.Xml.Linq 6.0.922.41905 dotnet System.Reflection 6.0.922.41905 dotnet System.Reflection.DispatchProxy 6.0.922.41905 dotnet System.Reflection.Emit 6.0.922.41905 dotnet @@ -556,7 +556,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 6.0.922.41905 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.13 deb +openssl 3.0.2-0ubuntu1.14 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb From fc986fe69d946ecd0eb29536d8f3af9cc4c7291c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Feb 2024 12:39:57 +0000 Subject: [PATCH 1948/2257] 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 299b4d7..b6ead1b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ EFCoreSecondLevelCacheInterceptor 4.0.0.0 EasyCaching.Core 1.9.1.0 dotnet ExCSS 4.1.4.0 dotnet Fizzler 1.2.1.0 dotnet -HarfBuzzSharp 7.3.0.0-e2c5c86249621857107c779af0f79b4d06613766 dotnet +HarfBuzzSharp 7.3.0.0 dotnet Jellyfin Server 10.9.0 dotnet Jellyfin Server 2019.1.20.3 dotnet Jellyfin.Api 1.0.0.0 dotnet @@ -172,7 +172,7 @@ Microsoft.VisualBasic.Core 12.0.1323.518 Microsoft.Win32.Primitives 7.0.1323.51816 dotnet Microsoft.Win32.Registry 7.0.1323.51816 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -Mono.Nat 3.0.4-master+48ef888 dotnet +Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet NeoSmart.AsyncLock 3.2.1.0 dotnet PlaylistsNET 1.4.0.0 dotnet @@ -192,11 +192,11 @@ Serilog.Sinks.Async 1.5.0.0 Serilog.Sinks.Console 5.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 3.0.0.0 dotnet +Serilog.Sinks.Graylog 3.1.0 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -SkiaSharp 2.88.5.0-ea9fb439a8ff74130bce2d82d1aefff9b4523e2f dotnet -SkiaSharp.HarfBuzz 2.88.5.0-ea9fb439a8ff74130bce2d82d1aefff9b4523e2f dotnet +SkiaSharp 2.88.5.0 dotnet +SkiaSharp.HarfBuzz 2.88.5.0 dotnet Svg.Custom 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet Svg.Model 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet Svg.Skia 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet @@ -289,10 +289,10 @@ System.Numerics 7.0.1323.5181 System.Numerics.Vectors 7.0.1323.51816 dotnet System.ObjectModel 7.0.1323.51816 dotnet System.Private.CoreLib 7.0.1323.51816 dotnet -System.Private.DataContractSerialization 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet -System.Private.Uri 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet -System.Private.Xml 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet -System.Private.Xml.Linq 7.0.13-servicing.23518.16+3f73a2f186e08c905aba441ea5545295ca261730 dotnet +System.Private.DataContractSerialization 7.0.1323.51816 dotnet +System.Private.Uri 7.0.1323.51816 dotnet +System.Private.Xml 7.0.1323.51816 dotnet +System.Private.Xml.Linq 7.0.1323.51816 dotnet System.Reflection 7.0.1323.51816 dotnet System.Reflection.DispatchProxy 7.0.1323.51816 dotnet System.Reflection.Emit 7.0.1323.51816 dotnet @@ -413,9 +413,9 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-2-jammy deb +jellyfin-ffmpeg6 6.0.1-3-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240126.4-unstable deb +jellyfin-web 20240212.4-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -577,7 +577,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 7.0.1323.51816 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.13 deb +openssl 3.0.2-0ubuntu1.14 deb passwd 1:4.8.1-2ubuntu2.1 deb perl-base 5.34.0-3ubuntu1.2 deb pinentry-curses 1.1.1-1build2 deb From c9f43b6ae0bc79bbb0f0b20dbdcb3d82f3b5cda2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Feb 2024 12:39:47 +0000 Subject: [PATCH 1949/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7929ce5..d011bf3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -547,7 +547,7 @@ login 1:4.8.1-2ubun logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb +mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3 deb mscorlib 6.0.922.41905 dotnet ncurses-base 6.3-2ubuntu0.1 deb From 0987761fb2223d56b3bb3bcc6db5408f4cfb0f79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Feb 2024 12:40:51 +0000 Subject: [PATCH 1950/2257] 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 b6ead1b..c1b5da6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -415,7 +415,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-3-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240212.4-unstable deb +jellyfin-web 20240214.1-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -568,7 +568,7 @@ login 1:4.8.1-2ubun logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.0.4-0ubuntu1~22.04.1 deb +mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3 deb mscorlib 7.0.1323.51816 dotnet ncurses-base 6.3-2ubuntu0.1 deb From 8bcfc779910ab0106730765bc7dc3ddcd4e35673 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 12:38:37 +0000 Subject: [PATCH 1951/2257] Bot Updating Templated Files --- Jenkinsfile | 297 +++++++++++++++++++++++++--------------------------- 1 file changed, 143 insertions(+), 154 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5eac616..aa314e8 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=master -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 master - 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 master - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master - 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=master -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 master + 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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 master + 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 master - 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 master - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master - 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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 master 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 master - 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 master - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master - 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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 73cd3d602371100fb182719b2f743e633a82ddf1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 12:39:43 +0000 Subject: [PATCH 1952/2257] Bot Updating Templated Files --- Jenkinsfile | 297 +++++++++++++++++++++++++--------------------------- 1 file changed, 143 insertions(+), 154 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b7e80db..18b955c 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 7896519126eb839043e0e0c9e1fc06107b7fb446 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 12:42:00 +0000 Subject: [PATCH 1953/2257] 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 +- README.md | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index ce3d19a..78211d7 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 jellyfin" label: Container logs placeholder: | - Output of `docker logs linuxserver.io` + Output of `docker logs jellyfin` render: bash validations: required: true diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 859ef4a..3654ebd 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -7,7 +7,7 @@ jobs: external-trigger-master: 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/master' diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 2fce549..056bc04 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 aad7f31..1d260b8 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -7,7 +7,7 @@ jobs: package-trigger-master: 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/master' diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index a0f854d..3a72c0a 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' diff --git a/README.md b/README.md index 1541d6f..e80ddec 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev ### Hardware Acceleration -Many desktop application will need access to a GPU to function properly and even some Desktop Environments have compisitor effects that will not function without a GPU. This is not a hard requirement and all base images will function without a video device mounted into the container. +Many desktop applications need access to a GPU to function properly and even some Desktop Environments have compositor effects that will not function without a GPU. However this is not a hard requirement and all base images will function without a video device mounted into the container. #### Intel/ATI/AMD @@ -120,9 +120,9 @@ We will automatically ensure the abc user inside of the container has the proper #### Nvidia Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: -https://github.com/NVIDIA/nvidia-docker +https://github.com/NVIDIA/nvidia-container-toolkit -We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the container. +We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-container-toolkit is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the container. #### Arm Devices From d3ed3361f99bc123a8ec68216313892d8a439cc9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 12:42:53 +0000 Subject: [PATCH 1954/2257] 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..78211d7 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 jellyfin" label: Container logs placeholder: | - Output of `docker logs linuxserver.io` + Output of `docker logs jellyfin` render: bash validations: required: true diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index ea15264..97fcb0e 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 2fce549..056bc04 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 74495b3..f96d76a 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 a0f854d..3a72c0a 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 5b682272ece2d72958e206439fcb6993335db914 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 12:46:27 +0000 Subject: [PATCH 1955/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d011bf3..4f8667b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -534,7 +534,7 @@ libxcb-xfixes0 1.14-3ubuntu3 libxcb1 1.14-3ubuntu3 deb libxdmcp6 1:1.1.3-0ubuntu5 deb libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxml2 2.9.13+dfsg-1ubuntu0.4 deb libxrender1 1:0.9.10-1build4 deb libxshmfence1 1.3-1build4 deb libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb From bb0647cf93d78c419d73dafc5b20db7d6fbd7642 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 27 Feb 2024 12:47:27 +0000 Subject: [PATCH 1956/2257] 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 c1b5da6..164d529 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -415,7 +415,7 @@ hostname 3.23ubuntu2 init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-3-jammy deb jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240214.1-unstable deb +jellyfin-web 20240226.1-unstable deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -556,7 +556,7 @@ libxcb-xfixes0 1.14-3ubuntu3 libxcb1 1.14-3ubuntu3 deb libxdmcp6 1:1.1.3-0ubuntu5 deb libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.3 deb +libxml2 2.9.13+dfsg-1ubuntu0.4 deb libxrender1 1:0.9.10-1build4 deb libxshmfence1 1.3-1build4 deb libxxhash0 0.8.1-1 deb From 651079bafd23289898532af6535aaa734a11dc6b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Mar 2024 12:42:17 +0000 Subject: [PATCH 1957/2257] Bot Updating Package Versions --- package_versions.txt | 1156 +++++++++++++++++++++--------------------- 1 file changed, 578 insertions(+), 578 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4f8667b..cde6520 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,578 +1,578 @@ -NAME VERSION TYPE -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet -CommandLine 2.9.1.0 dotnet -DiscUtils.Core 0.16.13.55129 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -Highly Optimized Priority Queue 5.0.0.0 dotnet -Jellyfin Server 10.8.13 dotnet -Jellyfin Server 2019.1.20.3 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Data.dll 10.8.13 dotnet -Jellyfin.Extensions.dll 10.8.13 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Networking.dll 10.8.13 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET 13.0.1.25517 dotnet -Microsoft.AspNetCore 6.0.922.41926 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet -Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.Session 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 6.0.922.41905 dotnet -Microsoft.Data.Sqlite 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet -Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet -Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet -Microsoft.Extensions.Localization 6.0.922.41926 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet -Microsoft.JSInterop 6.0.922.41926 dotnet -Microsoft.Net.Http.Headers 6.0.922.41926 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.922.41905 dotnet -Microsoft.VisualBasic.Core 11.100.922.41905 dotnet -Microsoft.Win32.Primitives 6.0.922.41905 dotnet -Microsoft.Win32.Registry 6.0.922.41905 dotnet -Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet -Mono.Nat 3.0.3 dotnet -NEbml.Core 0.11.0.0 dotnet -PlaylistsNET 1.2.1.0 dotnet -Prometheus.AspNetCore.dll 6.0.0 dotnet -Prometheus.NetCore.dll 6.0.0 dotnet -Prometheus.NetStandard.dll 6.0.0 dotnet -SQLitePCL.pretty 1.0.0 dotnet -SQLitePCLRaw.batteries_v2 2.1.0.1603 dotnet -SQLitePCLRaw.core 2.1.0.1603 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.0.1603 dotnet -Serilog 2.10.0.0 dotnet -Serilog.AspNetCore 4.1.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 4.1.2.0 dotnet -Serilog.Extensions.Logging 3.0.1.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 3.3.0.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 4.0.1.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 2.3.0.0 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SharpCompress 0.32.2+3009e6dcfd183760fbdb675249b7a65a2894618b dotnet -SkiaSharp 2.88.2.0 dotnet -SkiaSharp.Extended.Svg (netstandard2.0) 1.60.0.0 dotnet -Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 6.0.922.41905 dotnet -System.AppContext 6.0.922.41905 dotnet -System.Buffers 6.0.922.41905 dotnet -System.Collections 6.0.922.41905 dotnet -System.Collections.Concurrent 6.0.922.41905 dotnet -System.Collections.Immutable 6.0.922.41905 dotnet -System.Collections.NonGeneric 6.0.922.41905 dotnet -System.Collections.Specialized 6.0.922.41905 dotnet -System.ComponentModel 6.0.922.41905 dotnet -System.ComponentModel.Annotations 6.0.922.41905 dotnet -System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet -System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet -System.ComponentModel.Primitives 6.0.922.41905 dotnet -System.ComponentModel.TypeConverter 6.0.922.41905 dotnet -System.Configuration 6.0.922.41905 dotnet -System.Console 6.0.922.41905 dotnet -System.Core 6.0.922.41905 dotnet -System.Data 6.0.922.41905 dotnet -System.Data.Common 6.0.922.41905 dotnet -System.Data.DataSetExtensions 6.0.922.41905 dotnet -System.Diagnostics.Contracts 6.0.922.41905 dotnet -System.Diagnostics.Debug 6.0.922.41905 dotnet -System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet -System.Diagnostics.Process 6.0.922.41905 dotnet -System.Diagnostics.StackTrace 6.0.922.41905 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet -System.Diagnostics.Tools 6.0.922.41905 dotnet -System.Diagnostics.TraceSource 6.0.922.41905 dotnet -System.Diagnostics.Tracing 6.0.922.41905 dotnet -System.Drawing 6.0.922.41905 dotnet -System.Drawing.Common 5.0.421.11614 dotnet -System.Drawing.Primitives 6.0.922.41905 dotnet -System.Dynamic.Runtime 6.0.922.41905 dotnet -System.Formats.Asn1 6.0.922.41905 dotnet -System.Globalization 6.0.922.41905 dotnet -System.Globalization.Calendars 6.0.922.41905 dotnet -System.Globalization.Extensions 6.0.922.41905 dotnet -System.IO 6.0.922.41905 dotnet -System.IO.Compression 6.0.922.41905 dotnet -System.IO.Compression.Brotli 6.0.922.41905 dotnet -System.IO.Compression.FileSystem 6.0.922.41905 dotnet -System.IO.Compression.ZipFile 6.0.922.41905 dotnet -System.IO.FileSystem 6.0.922.41905 dotnet -System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet -System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet -System.IO.FileSystem.Primitives 6.0.922.41905 dotnet -System.IO.FileSystem.Watcher 6.0.922.41905 dotnet -System.IO.IsolatedStorage 6.0.922.41905 dotnet -System.IO.MemoryMappedFiles 6.0.922.41905 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.922.41905 dotnet -System.IO.Pipes.AccessControl 6.0.922.41905 dotnet -System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet -System.Linq 6.0.922.41905 dotnet -System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 6.0.922.41905 dotnet -System.Linq.Parallel 6.0.922.41905 dotnet -System.Linq.Queryable 6.0.922.41905 dotnet -System.Memory 6.0.922.41905 dotnet -System.Net 6.0.922.41905 dotnet -System.Net.Http 6.0.922.41905 dotnet -System.Net.Http.Json 6.0.922.41905 dotnet -System.Net.HttpListener 6.0.922.41905 dotnet -System.Net.Mail 6.0.922.41905 dotnet -System.Net.NameResolution 6.0.922.41905 dotnet -System.Net.NetworkInformation 6.0.922.41905 dotnet -System.Net.Ping 6.0.922.41905 dotnet -System.Net.Primitives 6.0.922.41905 dotnet -System.Net.Quic 6.0.922.41905 dotnet -System.Net.Requests 6.0.922.41905 dotnet -System.Net.Security 6.0.922.41905 dotnet -System.Net.ServicePoint 6.0.922.41905 dotnet -System.Net.Sockets 6.0.922.41905 dotnet -System.Net.WebClient 6.0.922.41905 dotnet -System.Net.WebHeaderCollection 6.0.922.41905 dotnet -System.Net.WebProxy 6.0.922.41905 dotnet -System.Net.WebSockets 6.0.922.41905 dotnet -System.Net.WebSockets.Client 6.0.922.41905 dotnet -System.Numerics 6.0.922.41905 dotnet -System.Numerics.Vectors 6.0.922.41905 dotnet -System.ObjectModel 6.0.922.41905 dotnet -System.Private.CoreLib 6.0.922.41905 dotnet -System.Private.DataContractSerialization 6.0.922.41905 dotnet -System.Private.Uri 6.0.922.41905 dotnet -System.Private.Xml 6.0.922.41905 dotnet -System.Private.Xml.Linq 6.0.922.41905 dotnet -System.Reflection 6.0.922.41905 dotnet -System.Reflection.DispatchProxy 6.0.922.41905 dotnet -System.Reflection.Emit 6.0.922.41905 dotnet -System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet -System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet -System.Reflection.Extensions 6.0.922.41905 dotnet -System.Reflection.Metadata 6.0.922.41905 dotnet -System.Reflection.Primitives 6.0.922.41905 dotnet -System.Reflection.TypeExtensions 6.0.922.41905 dotnet -System.Resources.Reader 6.0.922.41905 dotnet -System.Resources.ResourceManager 6.0.922.41905 dotnet -System.Resources.Writer 6.0.922.41905 dotnet -System.Runtime 6.0.922.41905 dotnet -System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet -System.Runtime.Extensions 6.0.922.41905 dotnet -System.Runtime.Handles 6.0.922.41905 dotnet -System.Runtime.InteropServices 6.0.922.41905 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet -System.Runtime.Intrinsics 6.0.922.41905 dotnet -System.Runtime.Loader 6.0.922.41905 dotnet -System.Runtime.Numerics 6.0.922.41905 dotnet -System.Runtime.Serialization 6.0.922.41905 dotnet -System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet -System.Runtime.Serialization.Json 6.0.922.41905 dotnet -System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet -System.Runtime.Serialization.Xml 6.0.922.41905 dotnet -System.Security 6.0.922.41905 dotnet -System.Security.AccessControl 6.0.922.41905 dotnet -System.Security.Claims 6.0.922.41905 dotnet -System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet -System.Security.Cryptography.Cng 6.0.922.41905 dotnet -System.Security.Cryptography.Csp 6.0.922.41905 dotnet -System.Security.Cryptography.Encoding 6.0.922.41905 dotnet -System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet -System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet -System.Security.Cryptography.Primitives 6.0.922.41905 dotnet -System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Principal 6.0.922.41905 dotnet -System.Security.Principal.Windows 6.0.922.41905 dotnet -System.Security.SecureString 6.0.922.41905 dotnet -System.ServiceModel.Web 6.0.922.41905 dotnet -System.ServiceProcess 6.0.922.41905 dotnet -System.Text.Encoding 6.0.922.41905 dotnet -System.Text.Encoding.CodePages 6.0.922.41905 dotnet -System.Text.Encoding.Extensions 6.0.922.41905 dotnet -System.Text.Encodings.Web 6.0.922.41905 dotnet -System.Text.Json 6.0.922.41905 dotnet -System.Text.RegularExpressions 6.0.922.41905 dotnet -System.Threading 6.0.922.41905 dotnet -System.Threading.Channels 6.0.922.41905 dotnet -System.Threading.Overlapped 6.0.922.41905 dotnet -System.Threading.Tasks 6.0.922.41905 dotnet -System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet -System.Threading.Tasks.Extensions 6.0.922.41905 dotnet -System.Threading.Tasks.Parallel 6.0.922.41905 dotnet -System.Threading.Thread 6.0.922.41905 dotnet -System.Threading.ThreadPool 6.0.922.41905 dotnet -System.Threading.Timer 6.0.922.41905 dotnet -System.Transactions 6.0.922.41905 dotnet -System.Transactions.Local 6.0.922.41905 dotnet -System.ValueTuple 6.0.922.41905 dotnet -System.Web 6.0.922.41905 dotnet -System.Web.HttpUtility 6.0.922.41905 dotnet -System.Windows 6.0.922.41905 dotnet -System.Xml 6.0.922.41905 dotnet -System.Xml.Linq 6.0.922.41905 dotnet -System.Xml.ReaderWriter 6.0.922.41905 dotnet -System.Xml.Serialization 6.0.922.41905 dotnet -System.Xml.XDocument 6.0.922.41905 dotnet -System.Xml.XPath 6.0.922.41905 dotnet -System.Xml.XPath.XDocument 6.0.922.41905 dotnet -System.Xml.XmlDocument 6.0.922.41905 dotnet -System.Xml.XmlSerializer 6.0.922.41905 dotnet -TMDbLib 1.9.2.0 dotnet -TagLib# 2.3.0.0 dotnet -UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 6.0.922.41905 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.11 deb -apt-utils 2.4.11 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.15 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin 10.8.13-1 deb -jellyfin-ffmpeg5 5.1.4-3-jammy deb -jellyfin-server 10.8.13-1 deb -jellyfin-web 10.8.13-1 deb -jq 1.6-2.1ubuntu3 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.5.3 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.4 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.6 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3 deb -mscorlib 6.0.922.41905 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -netstandard 6.0.922.41905 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.14 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheus-net.DotNetRuntime 4.2.4.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023d-0ubuntu0.22.04 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -xmlstarlet 1.6.1-2.1 deb -zlib.net 1.0.5.0 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +DiscUtils.Core 0.16.13.55129 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet +Highly Optimized Priority Queue 5.0.0.0 dotnet +Jellyfin Server 10.8.13 dotnet (+16 duplicates) +Jellyfin Server 2019.1.20.3 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Data.dll 10.8.13 dotnet +Jellyfin.Extensions.dll 10.8.13 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Networking.dll 10.8.13 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET 13.0.1.25517 dotnet +Microsoft.AspNetCore 6.0.922.41926 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet +Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet +Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet +Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet +Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.Session 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 6.0.922.41905 dotnet +Microsoft.Data.Sqlite 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet +Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet +Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet +Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet +Microsoft.Extensions.Localization 6.0.922.41926 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet +Microsoft.JSInterop 6.0.922.41926 dotnet +Microsoft.Net.Http.Headers 6.0.922.41926 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.922.41905 dotnet +Microsoft.VisualBasic.Core 11.100.922.41905 dotnet +Microsoft.Win32.Primitives 6.0.922.41905 dotnet +Microsoft.Win32.Registry 6.0.922.41905 dotnet +Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet +Mono.Nat 3.0.3 dotnet +NEbml.Core 0.11.0.0 dotnet +PlaylistsNET 1.2.1.0 dotnet +Prometheus.AspNetCore.dll 6.0.0 dotnet +Prometheus.NetCore.dll 6.0.0 dotnet +Prometheus.NetStandard.dll 6.0.0 dotnet +SQLitePCL.pretty 1.0.0 dotnet +SQLitePCLRaw.batteries_v2 2.1.0.1603 dotnet +SQLitePCLRaw.core 2.1.0.1603 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.0.1603 dotnet +Serilog 2.10.0.0 dotnet +Serilog.AspNetCore 4.1.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 4.1.2.0 dotnet +Serilog.Extensions.Logging 3.0.1.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 3.3.0.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 4.0.1.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 2.3.0.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +SharpCompress 0.32.2+3009e6dcfd183760fbdb675249b7a65a2894618b dotnet +SkiaSharp 2.88.2.0 dotnet +SkiaSharp.Extended.Svg (netstandard2.0) 1.60.0.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 6.0.922.41905 dotnet +System.AppContext 6.0.922.41905 dotnet +System.Buffers 6.0.922.41905 dotnet +System.Collections 6.0.922.41905 dotnet +System.Collections.Concurrent 6.0.922.41905 dotnet +System.Collections.Immutable 6.0.922.41905 dotnet +System.Collections.NonGeneric 6.0.922.41905 dotnet +System.Collections.Specialized 6.0.922.41905 dotnet +System.ComponentModel 6.0.922.41905 dotnet +System.ComponentModel.Annotations 6.0.922.41905 dotnet +System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet +System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet +System.ComponentModel.Primitives 6.0.922.41905 dotnet +System.ComponentModel.TypeConverter 6.0.922.41905 dotnet +System.Configuration 6.0.922.41905 dotnet +System.Console 6.0.922.41905 dotnet +System.Core 6.0.922.41905 dotnet +System.Data 6.0.922.41905 dotnet +System.Data.Common 6.0.922.41905 dotnet +System.Data.DataSetExtensions 6.0.922.41905 dotnet +System.Diagnostics.Contracts 6.0.922.41905 dotnet +System.Diagnostics.Debug 6.0.922.41905 dotnet +System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet +System.Diagnostics.Process 6.0.922.41905 dotnet +System.Diagnostics.StackTrace 6.0.922.41905 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet +System.Diagnostics.Tools 6.0.922.41905 dotnet +System.Diagnostics.TraceSource 6.0.922.41905 dotnet +System.Diagnostics.Tracing 6.0.922.41905 dotnet +System.Drawing 6.0.922.41905 dotnet +System.Drawing.Common 5.0.421.11614 dotnet +System.Drawing.Primitives 6.0.922.41905 dotnet +System.Dynamic.Runtime 6.0.922.41905 dotnet +System.Formats.Asn1 6.0.922.41905 dotnet +System.Globalization 6.0.922.41905 dotnet +System.Globalization.Calendars 6.0.922.41905 dotnet +System.Globalization.Extensions 6.0.922.41905 dotnet +System.IO 6.0.922.41905 dotnet +System.IO.Compression 6.0.922.41905 dotnet +System.IO.Compression.Brotli 6.0.922.41905 dotnet +System.IO.Compression.FileSystem 6.0.922.41905 dotnet +System.IO.Compression.ZipFile 6.0.922.41905 dotnet +System.IO.FileSystem 6.0.922.41905 dotnet +System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet +System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet +System.IO.FileSystem.Primitives 6.0.922.41905 dotnet +System.IO.FileSystem.Watcher 6.0.922.41905 dotnet +System.IO.IsolatedStorage 6.0.922.41905 dotnet +System.IO.MemoryMappedFiles 6.0.922.41905 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.922.41905 dotnet +System.IO.Pipes.AccessControl 6.0.922.41905 dotnet +System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet +System.Linq 6.0.922.41905 dotnet +System.Linq.Async (net6.0) 6.0.1.35981 dotnet +System.Linq.Expressions 6.0.922.41905 dotnet +System.Linq.Parallel 6.0.922.41905 dotnet +System.Linq.Queryable 6.0.922.41905 dotnet +System.Memory 6.0.922.41905 dotnet +System.Net 6.0.922.41905 dotnet +System.Net.Http 6.0.922.41905 dotnet +System.Net.Http.Json 6.0.922.41905 dotnet +System.Net.HttpListener 6.0.922.41905 dotnet +System.Net.Mail 6.0.922.41905 dotnet +System.Net.NameResolution 6.0.922.41905 dotnet +System.Net.NetworkInformation 6.0.922.41905 dotnet +System.Net.Ping 6.0.922.41905 dotnet +System.Net.Primitives 6.0.922.41905 dotnet +System.Net.Quic 6.0.922.41905 dotnet +System.Net.Requests 6.0.922.41905 dotnet +System.Net.Security 6.0.922.41905 dotnet +System.Net.ServicePoint 6.0.922.41905 dotnet +System.Net.Sockets 6.0.922.41905 dotnet +System.Net.WebClient 6.0.922.41905 dotnet +System.Net.WebHeaderCollection 6.0.922.41905 dotnet +System.Net.WebProxy 6.0.922.41905 dotnet +System.Net.WebSockets 6.0.922.41905 dotnet +System.Net.WebSockets.Client 6.0.922.41905 dotnet +System.Numerics 6.0.922.41905 dotnet +System.Numerics.Vectors 6.0.922.41905 dotnet +System.ObjectModel 6.0.922.41905 dotnet +System.Private.CoreLib 6.0.922.41905 dotnet +System.Private.DataContractSerialization 6.0.922.41905 dotnet +System.Private.Uri 6.0.922.41905 dotnet +System.Private.Xml 6.0.922.41905 dotnet +System.Private.Xml.Linq 6.0.922.41905 dotnet +System.Reflection 6.0.922.41905 dotnet +System.Reflection.DispatchProxy 6.0.922.41905 dotnet +System.Reflection.Emit 6.0.922.41905 dotnet +System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet +System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet +System.Reflection.Extensions 6.0.922.41905 dotnet +System.Reflection.Metadata 6.0.922.41905 dotnet +System.Reflection.Primitives 6.0.922.41905 dotnet +System.Reflection.TypeExtensions 6.0.922.41905 dotnet +System.Resources.Reader 6.0.922.41905 dotnet +System.Resources.ResourceManager 6.0.922.41905 dotnet +System.Resources.Writer 6.0.922.41905 dotnet +System.Runtime 6.0.922.41905 dotnet +System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet +System.Runtime.Extensions 6.0.922.41905 dotnet +System.Runtime.Handles 6.0.922.41905 dotnet +System.Runtime.InteropServices 6.0.922.41905 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet +System.Runtime.Intrinsics 6.0.922.41905 dotnet +System.Runtime.Loader 6.0.922.41905 dotnet +System.Runtime.Numerics 6.0.922.41905 dotnet +System.Runtime.Serialization 6.0.922.41905 dotnet +System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet +System.Runtime.Serialization.Json 6.0.922.41905 dotnet +System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet +System.Runtime.Serialization.Xml 6.0.922.41905 dotnet +System.Security 6.0.922.41905 dotnet +System.Security.AccessControl 6.0.922.41905 dotnet +System.Security.Claims 6.0.922.41905 dotnet +System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet +System.Security.Cryptography.Cng 6.0.922.41905 dotnet +System.Security.Cryptography.Csp 6.0.922.41905 dotnet +System.Security.Cryptography.Encoding 6.0.922.41905 dotnet +System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet +System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet +System.Security.Cryptography.Primitives 6.0.922.41905 dotnet +System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Principal 6.0.922.41905 dotnet +System.Security.Principal.Windows 6.0.922.41905 dotnet +System.Security.SecureString 6.0.922.41905 dotnet +System.ServiceModel.Web 6.0.922.41905 dotnet +System.ServiceProcess 6.0.922.41905 dotnet +System.Text.Encoding 6.0.922.41905 dotnet +System.Text.Encoding.CodePages 6.0.922.41905 dotnet +System.Text.Encoding.Extensions 6.0.922.41905 dotnet +System.Text.Encodings.Web 6.0.922.41905 dotnet +System.Text.Json 6.0.922.41905 dotnet +System.Text.RegularExpressions 6.0.922.41905 dotnet +System.Threading 6.0.922.41905 dotnet +System.Threading.Channels 6.0.922.41905 dotnet +System.Threading.Overlapped 6.0.922.41905 dotnet +System.Threading.Tasks 6.0.922.41905 dotnet +System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet +System.Threading.Tasks.Extensions 6.0.922.41905 dotnet +System.Threading.Tasks.Parallel 6.0.922.41905 dotnet +System.Threading.Thread 6.0.922.41905 dotnet +System.Threading.ThreadPool 6.0.922.41905 dotnet +System.Threading.Timer 6.0.922.41905 dotnet +System.Transactions 6.0.922.41905 dotnet +System.Transactions.Local 6.0.922.41905 dotnet +System.ValueTuple 6.0.922.41905 dotnet +System.Web 6.0.922.41905 dotnet +System.Web.HttpUtility 6.0.922.41905 dotnet +System.Windows 6.0.922.41905 dotnet +System.Xml 6.0.922.41905 dotnet +System.Xml.Linq 6.0.922.41905 dotnet +System.Xml.ReaderWriter 6.0.922.41905 dotnet +System.Xml.Serialization 6.0.922.41905 dotnet +System.Xml.XDocument 6.0.922.41905 dotnet +System.Xml.XPath 6.0.922.41905 dotnet +System.Xml.XPath.XDocument 6.0.922.41905 dotnet +System.Xml.XmlDocument 6.0.922.41905 dotnet +System.Xml.XmlSerializer 6.0.922.41905 dotnet +TMDbLib 1.9.2.0 dotnet +TagLib# 2.3.0.0 dotnet +UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet +WindowsBase 6.0.922.41905 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb +curl 7.81.0-1ubuntu1.15 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin 10.8.13-1 deb +jellyfin-ffmpeg5 5.1.4-3-jammy deb +jellyfin-server 10.8.13-1 deb +jellyfin-web 10.8.13-1 deb +jq 1.6-2.1ubuntu3 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.5.3 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2.2 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.4 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.6 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 6.0.922.41905 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 6.0.922.41905 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.15 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net.DotNetRuntime 4.2.4.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023d-0ubuntu0.22.04 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +xmlstarlet 1.6.1-2.1 deb +zlib.net 1.0.5.0 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 7214752ba2b990042f610610fc7ae4a4d83750b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Mar 2024 12:42:46 +0000 Subject: [PATCH 1958/2257] Bot Updating Package Versions --- package_versions.txt | 1200 +++++++++++++++++++++--------------------- 1 file changed, 600 insertions(+), 600 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 164d529..f092149 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,600 +1,600 @@ -NAME VERSION TYPE -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet -CacheManager.NET 1.2.0.0 dotnet -CommandLine 2.9.1.0 dotnet -Diacritics.NET 3.3.18 dotnet -DiscUtils.Core 0.16.13.55129 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet -EasyCaching.Core 1.9.1.0 dotnet -ExCSS 4.1.4.0 dotnet -Fizzler 1.2.1.0 dotnet -HarfBuzzSharp 7.3.0.0 dotnet -Jellyfin Server 10.9.0 dotnet -Jellyfin Server 2019.1.20.3 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Data.dll 10.9.0 dotnet -Jellyfin.Extensions.dll 10.9.0 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Networking.dll 10.9.0 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET 13.0.3.27908 dotnet -MetaBrainz.Common 1.0.0 dotnet -MetaBrainz.Common.Json 5.1.0 dotnet -MetaBrainz.MusicBrainz 5.0.1 dotnet -Microsoft.AspNetCore 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1323.51816 dotnet -Microsoft.Data.Sqlite 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet -Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet -Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet -Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet -Microsoft.Extensions.Features 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet -Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet -Microsoft.Extensions.Hosting 7.0.323.6910 dotnet -Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Logging 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet -Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet -Microsoft.Extensions.Options 7.0.323.6910 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet -Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet -Microsoft.JSInterop 7.0.1323.52007 dotnet -Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1323.51816 dotnet -Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet -Microsoft.Win32.Primitives 7.0.1323.51816 dotnet -Microsoft.Win32.Registry 7.0.1323.51816 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -Mono.Nat 3.0.4 dotnet -NEbml.Core 0.11.0.0 dotnet -NeoSmart.AsyncLock 3.2.1.0 dotnet -PlaylistsNET 1.4.0.0 dotnet -Prometheus.AspNetCore.dll 8.1.0 dotnet -Prometheus.NetStandard.dll 8.1.0 dotnet -SQLitePCLRaw.batteries_v2 2.1.4.1835 dotnet -SQLitePCLRaw.core 2.1.4.1835 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.4.1835 dotnet -Serilog 3.1.0.0 dotnet -Serilog.AspNetCore 7.0.0.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 7.0.0.0 dotnet -Serilog.Extensions.Logging 7.0.0.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 7.0.1.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 5.0.0.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 3.1.0 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -SkiaSharp 2.88.5.0 dotnet -SkiaSharp.HarfBuzz 2.88.5.0 dotnet -Svg.Custom 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -Svg.Model 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -Svg.Skia 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1323.51816 dotnet -System.AppContext 7.0.1323.51816 dotnet -System.Buffers 7.0.1323.51816 dotnet -System.Collections 7.0.1323.51816 dotnet -System.Collections.Concurrent 7.0.1323.51816 dotnet -System.Collections.Immutable 7.0.1323.51816 dotnet -System.Collections.NonGeneric 7.0.1323.51816 dotnet -System.Collections.Specialized 7.0.1323.51816 dotnet -System.ComponentModel 7.0.1323.51816 dotnet -System.ComponentModel.Annotations 7.0.1323.51816 dotnet -System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet -System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet -System.ComponentModel.Primitives 7.0.1323.51816 dotnet -System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet -System.Configuration 7.0.1323.51816 dotnet -System.Console 7.0.1323.51816 dotnet -System.Core 7.0.1323.51816 dotnet -System.Data 7.0.1323.51816 dotnet -System.Data.Common 7.0.1323.51816 dotnet -System.Data.DataSetExtensions 7.0.1323.51816 dotnet -System.Diagnostics.Contracts 7.0.1323.51816 dotnet -System.Diagnostics.Debug 7.0.1323.51816 dotnet -System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet -System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet -System.Diagnostics.Process 7.0.1323.51816 dotnet -System.Diagnostics.StackTrace 7.0.1323.51816 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet -System.Diagnostics.Tools 7.0.1323.51816 dotnet -System.Diagnostics.TraceSource 7.0.1323.51816 dotnet -System.Diagnostics.Tracing 7.0.1323.51816 dotnet -System.Drawing 7.0.1323.51816 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1323.51816 dotnet -System.Dynamic.Runtime 7.0.1323.51816 dotnet -System.Formats.Asn1 7.0.1323.51816 dotnet -System.Formats.Tar 7.0.1323.51816 dotnet -System.Globalization 7.0.1323.51816 dotnet -System.Globalization.Calendars 7.0.1323.51816 dotnet -System.Globalization.Extensions 7.0.1323.51816 dotnet -System.IO 7.0.1323.51816 dotnet -System.IO.Compression 7.0.1323.51816 dotnet -System.IO.Compression.Brotli 7.0.1323.51816 dotnet -System.IO.Compression.FileSystem 7.0.1323.51816 dotnet -System.IO.Compression.ZipFile 7.0.1323.51816 dotnet -System.IO.FileSystem 7.0.1323.51816 dotnet -System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet -System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet -System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet -System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet -System.IO.IsolatedStorage 7.0.1323.51816 dotnet -System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet -System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1323.51816 dotnet -System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet -System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet -System.Linq 7.0.1323.51816 dotnet -System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1323.51816 dotnet -System.Linq.Parallel 7.0.1323.51816 dotnet -System.Linq.Queryable 7.0.1323.51816 dotnet -System.Memory 7.0.1323.51816 dotnet -System.Net 7.0.1323.51816 dotnet -System.Net.Http 7.0.1323.51816 dotnet -System.Net.Http.Json 7.0.1323.51816 dotnet -System.Net.HttpListener 7.0.1323.51816 dotnet -System.Net.Mail 7.0.1323.51816 dotnet -System.Net.NameResolution 7.0.1323.51816 dotnet -System.Net.NetworkInformation 7.0.1323.51816 dotnet -System.Net.Ping 7.0.1323.51816 dotnet -System.Net.Primitives 7.0.1323.51816 dotnet -System.Net.Quic 7.0.1323.51816 dotnet -System.Net.Requests 7.0.1323.51816 dotnet -System.Net.Security 7.0.1323.51816 dotnet -System.Net.ServicePoint 7.0.1323.51816 dotnet -System.Net.Sockets 7.0.1323.51816 dotnet -System.Net.WebClient 7.0.1323.51816 dotnet -System.Net.WebHeaderCollection 7.0.1323.51816 dotnet -System.Net.WebProxy 7.0.1323.51816 dotnet -System.Net.WebSockets 7.0.1323.51816 dotnet -System.Net.WebSockets.Client 7.0.1323.51816 dotnet -System.Numerics 7.0.1323.51816 dotnet -System.Numerics.Vectors 7.0.1323.51816 dotnet -System.ObjectModel 7.0.1323.51816 dotnet -System.Private.CoreLib 7.0.1323.51816 dotnet -System.Private.DataContractSerialization 7.0.1323.51816 dotnet -System.Private.Uri 7.0.1323.51816 dotnet -System.Private.Xml 7.0.1323.51816 dotnet -System.Private.Xml.Linq 7.0.1323.51816 dotnet -System.Reflection 7.0.1323.51816 dotnet -System.Reflection.DispatchProxy 7.0.1323.51816 dotnet -System.Reflection.Emit 7.0.1323.51816 dotnet -System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet -System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet -System.Reflection.Extensions 7.0.1323.51816 dotnet -System.Reflection.Metadata 7.0.1323.51816 dotnet -System.Reflection.Primitives 7.0.1323.51816 dotnet -System.Reflection.TypeExtensions 7.0.1323.51816 dotnet -System.Resources.Reader 7.0.1323.51816 dotnet -System.Resources.ResourceManager 7.0.1323.51816 dotnet -System.Resources.Writer 7.0.1323.51816 dotnet -System.Runtime 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet -System.Runtime.Extensions 7.0.1323.51816 dotnet -System.Runtime.Handles 7.0.1323.51816 dotnet -System.Runtime.InteropServices 7.0.1323.51816 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet -System.Runtime.Intrinsics 7.0.1323.51816 dotnet -System.Runtime.Loader 7.0.1323.51816 dotnet -System.Runtime.Numerics 7.0.1323.51816 dotnet -System.Runtime.Serialization 7.0.1323.51816 dotnet -System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet -System.Runtime.Serialization.Json 7.0.1323.51816 dotnet -System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet -System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet -System.Security 7.0.1323.51816 dotnet -System.Security.AccessControl 7.0.1323.51816 dotnet -System.Security.Claims 7.0.1323.51816 dotnet -System.Security.Cryptography 7.0.1323.51816 dotnet -System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet -System.Security.Cryptography.Cng 7.0.1323.51816 dotnet -System.Security.Cryptography.Csp 7.0.1323.51816 dotnet -System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet -System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet -System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet -System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet -System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1323.51816 dotnet -System.Security.Principal.Windows 7.0.1323.51816 dotnet -System.Security.SecureString 7.0.1323.51816 dotnet -System.ServiceModel.Web 7.0.1323.51816 dotnet -System.ServiceProcess 7.0.1323.51816 dotnet -System.Text.Encoding 7.0.1323.51816 dotnet -System.Text.Encoding.CodePages 7.0.1323.51816 dotnet -System.Text.Encoding.Extensions 7.0.1323.51816 dotnet -System.Text.Encodings.Web 7.0.1323.51816 dotnet -System.Text.Json 7.0.1323.51816 dotnet -System.Text.RegularExpressions 7.0.1323.51816 dotnet -System.Threading 7.0.1323.51816 dotnet -System.Threading.Channels 7.0.1323.51816 dotnet -System.Threading.Overlapped 7.0.1323.51816 dotnet -System.Threading.RateLimiting 7.0.1123.42427 dotnet -System.Threading.Tasks 7.0.1323.51816 dotnet -System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet -System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet -System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet -System.Threading.Thread 7.0.1323.51816 dotnet -System.Threading.ThreadPool 7.0.1323.51816 dotnet -System.Threading.Timer 7.0.1323.51816 dotnet -System.Transactions 7.0.1323.51816 dotnet -System.Transactions.Local 7.0.1323.51816 dotnet -System.ValueTuple 7.0.1323.51816 dotnet -System.Web 7.0.1323.51816 dotnet -System.Web.HttpUtility 7.0.1323.51816 dotnet -System.Windows 7.0.1323.51816 dotnet -System.Xml 7.0.1323.51816 dotnet -System.Xml.Linq 7.0.1323.51816 dotnet -System.Xml.ReaderWriter 7.0.1323.51816 dotnet -System.Xml.Serialization 7.0.1323.51816 dotnet -System.Xml.XDocument 7.0.1323.51816 dotnet -System.Xml.XPath 7.0.1323.51816 dotnet -System.Xml.XPath.XDocument 7.0.1323.51816 dotnet -System.Xml.XmlDocument 7.0.1323.51816 dotnet -System.Xml.XmlSerializer 7.0.1323.51816 dotnet -TMDbLib 2.0.0.0 dotnet -TagLib# 2.3.0.0 dotnet -UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 7.0.1323.51816 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.11 deb -apt-utils 2.4.11 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb -bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb -ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.15 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-3-jammy deb -jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240226.1-unstable deb -jq 1.6-2.1ubuntu3 deb -karaoke --dev 2023.524.0.0 dotnet -libaacs0 0.11.1-1 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb -libass9 1:0.15.2-1 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libbdplus0 0.2.0-1 deb -libblkid1 2.37.2-4ubuntu3 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libglib2.0-data 2.72.4-0ubuntu2.2 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb -libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.13.2 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.4 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.6 deb -login 1:4.8.1-2ubuntu2.1 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1323.51816 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1323.51816 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.14 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb -prometheus-net.DotNetRuntime 4.4.0.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -shared-mime-info 2.1-2 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023d-0ubuntu0.22.04 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb -xdg-user-dirs 0.17-2ubuntu4 deb -zlib.net 1.0.6.0 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +NAME VERSION TYPE +BDInfo 0.7.6.2 dotnet +BlurHashSharp 1.2.0.0 dotnet +BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +CacheManager.NET 1.2.0.0 dotnet +CommandLine 2.9.1.0 dotnet +Diacritics.NET 3.3.18 dotnet +DiscUtils.Core 0.16.13.55129 dotnet +DiscUtils.Iso9660 0.16.13.55129 dotnet +DiscUtils.Streams 0.16.13.55129 dotnet +DiscUtils.Udf 0.16.13.55129 dotnet +DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet +EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet +EasyCaching.Core 1.9.1.0 dotnet +ExCSS 4.1.4.0 dotnet +Fizzler 1.2.1.0 dotnet +HarfBuzzSharp 7.3.0.0 dotnet +Jellyfin Server 10.9.0 dotnet (+14 duplicates) +Jellyfin Server 2019.1.20.3 dotnet +Jellyfin.Api 1.0.0.0 dotnet +Jellyfin.Data.dll 10.9.0 dotnet +Jellyfin.Extensions.dll 10.9.0 dotnet +Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.Networking.dll 10.9.0 dotnet +Jellyfin.XmlTv 1.0.0.0 dotnet +Json.NET 13.0.3.27908 dotnet +MetaBrainz.Common 1.0.0 dotnet +MetaBrainz.Common.Json 5.1.0 dotnet +MetaBrainz.MusicBrainz 5.0.1 dotnet +Microsoft.AspNetCore 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet +Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet +Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet +Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet +Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet +Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.CSharp 7.0.1323.51816 dotnet +Microsoft.Data.Sqlite 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet +Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet +Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet +Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet +Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet +Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet +Microsoft.Extensions.Features 7.0.1323.52007 dotnet +Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet +Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet +Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet +Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet +Microsoft.Extensions.Hosting 7.0.323.6910 dotnet +Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Http 7.0.22.51805 dotnet +Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet +Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization 7.0.1323.52007 dotnet +Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet +Microsoft.Extensions.Logging 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet +Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet +Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet +Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet +Microsoft.Extensions.Options 7.0.323.6910 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet +Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet +Microsoft.Extensions.Primitives 7.0.22.51805 dotnet +Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet +Microsoft.JSInterop 7.0.1323.52007 dotnet +Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 7.0.1323.51816 dotnet +Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet +Microsoft.Win32.Primitives 7.0.1323.51816 dotnet +Microsoft.Win32.Registry 7.0.1323.51816 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +Mono.Nat 3.0.4 dotnet +NEbml.Core 0.11.0.0 dotnet +NeoSmart.AsyncLock 3.2.1.0 dotnet +PlaylistsNET 1.4.0.0 dotnet +Prometheus.AspNetCore.dll 8.1.0 dotnet +Prometheus.NetStandard.dll 8.1.0 dotnet +SQLitePCLRaw.batteries_v2 2.1.4.1835 dotnet +SQLitePCLRaw.core 2.1.4.1835 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.4.1835 dotnet +Serilog 3.1.0.0 dotnet +Serilog.AspNetCore 7.0.0.0 dotnet +Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Extensions.Hosting 7.0.0.0 dotnet +Serilog.Extensions.Logging 7.0.0.0 dotnet +Serilog.Formatting.Compact 1.1.0.0 dotnet +Serilog.Settings.Configuration 7.0.1.0 dotnet +Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Sinks.Console 5.0.0.0 dotnet +Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.Graylog 3.1.0 dotnet +Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet +ShimSkiaSharp 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +SkiaSharp 2.88.5.0 dotnet +SkiaSharp.HarfBuzz 2.88.5.0 dotnet +Svg.Custom 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +Svg.Model 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +Svg.Skia 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet +System 7.0.1323.51816 dotnet +System.AppContext 7.0.1323.51816 dotnet +System.Buffers 7.0.1323.51816 dotnet +System.Collections 7.0.1323.51816 dotnet +System.Collections.Concurrent 7.0.1323.51816 dotnet +System.Collections.Immutable 7.0.1323.51816 dotnet +System.Collections.NonGeneric 7.0.1323.51816 dotnet +System.Collections.Specialized 7.0.1323.51816 dotnet +System.ComponentModel 7.0.1323.51816 dotnet +System.ComponentModel.Annotations 7.0.1323.51816 dotnet +System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet +System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet +System.ComponentModel.Primitives 7.0.1323.51816 dotnet +System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet +System.Configuration 7.0.1323.51816 dotnet +System.Console 7.0.1323.51816 dotnet +System.Core 7.0.1323.51816 dotnet +System.Data 7.0.1323.51816 dotnet +System.Data.Common 7.0.1323.51816 dotnet +System.Data.DataSetExtensions 7.0.1323.51816 dotnet +System.Diagnostics.Contracts 7.0.1323.51816 dotnet +System.Diagnostics.Debug 7.0.1323.51816 dotnet +System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet +System.Diagnostics.EventLog 7.0.22.51805 dotnet +System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet +System.Diagnostics.Process 7.0.1323.51816 dotnet +System.Diagnostics.StackTrace 7.0.1323.51816 dotnet +System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet +System.Diagnostics.Tools 7.0.1323.51816 dotnet +System.Diagnostics.TraceSource 7.0.1323.51816 dotnet +System.Diagnostics.Tracing 7.0.1323.51816 dotnet +System.Drawing 7.0.1323.51816 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 7.0.1323.51816 dotnet +System.Dynamic.Runtime 7.0.1323.51816 dotnet +System.Formats.Asn1 7.0.1323.51816 dotnet +System.Formats.Tar 7.0.1323.51816 dotnet +System.Globalization 7.0.1323.51816 dotnet +System.Globalization.Calendars 7.0.1323.51816 dotnet +System.Globalization.Extensions 7.0.1323.51816 dotnet +System.IO 7.0.1323.51816 dotnet +System.IO.Compression 7.0.1323.51816 dotnet +System.IO.Compression.Brotli 7.0.1323.51816 dotnet +System.IO.Compression.FileSystem 7.0.1323.51816 dotnet +System.IO.Compression.ZipFile 7.0.1323.51816 dotnet +System.IO.FileSystem 7.0.1323.51816 dotnet +System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet +System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet +System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet +System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet +System.IO.IsolatedStorage 7.0.1323.51816 dotnet +System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet +System.IO.Pipelines 7.0.22.51805 dotnet +System.IO.Pipes 7.0.1323.51816 dotnet +System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet +System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet +System.Linq 7.0.1323.51816 dotnet +System.Linq.Async (net6.0) 6.0.1.35981 dotnet +System.Linq.Expressions 7.0.1323.51816 dotnet +System.Linq.Parallel 7.0.1323.51816 dotnet +System.Linq.Queryable 7.0.1323.51816 dotnet +System.Memory 7.0.1323.51816 dotnet +System.Net 7.0.1323.51816 dotnet +System.Net.Http 7.0.1323.51816 dotnet +System.Net.Http.Json 7.0.1323.51816 dotnet +System.Net.HttpListener 7.0.1323.51816 dotnet +System.Net.Mail 7.0.1323.51816 dotnet +System.Net.NameResolution 7.0.1323.51816 dotnet +System.Net.NetworkInformation 7.0.1323.51816 dotnet +System.Net.Ping 7.0.1323.51816 dotnet +System.Net.Primitives 7.0.1323.51816 dotnet +System.Net.Quic 7.0.1323.51816 dotnet +System.Net.Requests 7.0.1323.51816 dotnet +System.Net.Security 7.0.1323.51816 dotnet +System.Net.ServicePoint 7.0.1323.51816 dotnet +System.Net.Sockets 7.0.1323.51816 dotnet +System.Net.WebClient 7.0.1323.51816 dotnet +System.Net.WebHeaderCollection 7.0.1323.51816 dotnet +System.Net.WebProxy 7.0.1323.51816 dotnet +System.Net.WebSockets 7.0.1323.51816 dotnet +System.Net.WebSockets.Client 7.0.1323.51816 dotnet +System.Numerics 7.0.1323.51816 dotnet +System.Numerics.Vectors 7.0.1323.51816 dotnet +System.ObjectModel 7.0.1323.51816 dotnet +System.Private.CoreLib 7.0.1323.51816 dotnet +System.Private.DataContractSerialization 7.0.1323.51816 dotnet +System.Private.Uri 7.0.1323.51816 dotnet +System.Private.Xml 7.0.1323.51816 dotnet +System.Private.Xml.Linq 7.0.1323.51816 dotnet +System.Reflection 7.0.1323.51816 dotnet +System.Reflection.DispatchProxy 7.0.1323.51816 dotnet +System.Reflection.Emit 7.0.1323.51816 dotnet +System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet +System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet +System.Reflection.Extensions 7.0.1323.51816 dotnet +System.Reflection.Metadata 7.0.1323.51816 dotnet +System.Reflection.Primitives 7.0.1323.51816 dotnet +System.Reflection.TypeExtensions 7.0.1323.51816 dotnet +System.Resources.Reader 7.0.1323.51816 dotnet +System.Resources.ResourceManager 7.0.1323.51816 dotnet +System.Resources.Writer 7.0.1323.51816 dotnet +System.Runtime 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet +System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet +System.Runtime.Extensions 7.0.1323.51816 dotnet +System.Runtime.Handles 7.0.1323.51816 dotnet +System.Runtime.InteropServices 7.0.1323.51816 dotnet +System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet +System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet +System.Runtime.Intrinsics 7.0.1323.51816 dotnet +System.Runtime.Loader 7.0.1323.51816 dotnet +System.Runtime.Numerics 7.0.1323.51816 dotnet +System.Runtime.Serialization 7.0.1323.51816 dotnet +System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet +System.Runtime.Serialization.Json 7.0.1323.51816 dotnet +System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet +System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet +System.Security 7.0.1323.51816 dotnet +System.Security.AccessControl 7.0.1323.51816 dotnet +System.Security.Claims 7.0.1323.51816 dotnet +System.Security.Cryptography 7.0.1323.51816 dotnet +System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet +System.Security.Cryptography.Cng 7.0.1323.51816 dotnet +System.Security.Cryptography.Csp 7.0.1323.51816 dotnet +System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet +System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet +System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet +System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet +System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet +System.Security.Cryptography.Xml 7.0.222.60605 dotnet +System.Security.Principal 7.0.1323.51816 dotnet +System.Security.Principal.Windows 7.0.1323.51816 dotnet +System.Security.SecureString 7.0.1323.51816 dotnet +System.ServiceModel.Web 7.0.1323.51816 dotnet +System.ServiceProcess 7.0.1323.51816 dotnet +System.Text.Encoding 7.0.1323.51816 dotnet +System.Text.Encoding.CodePages 7.0.1323.51816 dotnet +System.Text.Encoding.Extensions 7.0.1323.51816 dotnet +System.Text.Encodings.Web 7.0.1323.51816 dotnet +System.Text.Json 7.0.1323.51816 dotnet +System.Text.RegularExpressions 7.0.1323.51816 dotnet +System.Threading 7.0.1323.51816 dotnet +System.Threading.Channels 7.0.1323.51816 dotnet +System.Threading.Overlapped 7.0.1323.51816 dotnet +System.Threading.RateLimiting 7.0.1123.42427 dotnet +System.Threading.Tasks 7.0.1323.51816 dotnet +System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet +System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet +System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet +System.Threading.Thread 7.0.1323.51816 dotnet +System.Threading.ThreadPool 7.0.1323.51816 dotnet +System.Threading.Timer 7.0.1323.51816 dotnet +System.Transactions 7.0.1323.51816 dotnet +System.Transactions.Local 7.0.1323.51816 dotnet +System.ValueTuple 7.0.1323.51816 dotnet +System.Web 7.0.1323.51816 dotnet +System.Web.HttpUtility 7.0.1323.51816 dotnet +System.Windows 7.0.1323.51816 dotnet +System.Xml 7.0.1323.51816 dotnet +System.Xml.Linq 7.0.1323.51816 dotnet +System.Xml.ReaderWriter 7.0.1323.51816 dotnet +System.Xml.Serialization 7.0.1323.51816 dotnet +System.Xml.XDocument 7.0.1323.51816 dotnet +System.Xml.XPath 7.0.1323.51816 dotnet +System.Xml.XPath.XDocument 7.0.1323.51816 dotnet +System.Xml.XmlDocument 7.0.1323.51816 dotnet +System.Xml.XmlSerializer 7.0.1323.51816 dotnet +TMDbLib 2.0.0.0 dotnet +TagLib# 2.3.0.0 dotnet +UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet +WindowsBase 7.0.1323.51816 dotnet +adduser 3.118ubuntu5 deb +apt 2.4.11 deb +apt-utils 2.4.11 deb +at 3.2.5-1ubuntu1 deb +base-files 12ubuntu4.3 deb +base-passwd 3.5.52build1 deb +bash 5.1-6ubuntu1 deb +bash 5.1.16 binary +bsdutils 1:2.37.2-4ubuntu3 deb +ca-certificates 20230311ubuntu0.22.04.1 deb +coreutils 8.32-4.1ubuntu1 deb +cron 3.0pl1-137ubuntu3 deb +curl 7.81.0-1ubuntu1.15 deb +dash 0.5.11+git20210903+057cd650a4ed-3build1 deb +debconf 1.5.79ubuntu1 deb +debianutils 5.5-1ubuntu2 deb +diffutils 1:3.8-0ubuntu2 deb +dirmngr 2.2.27-3ubuntu2.1 deb +dpkg 1.21.1ubuntu2.2 deb +e2fsprogs 1.46.5-2ubuntu1.1 deb +findutils 4.8.0-1ubuntu3 deb +fontconfig-config 2.13.1-4.2ubuntu5 deb +fonts-dejavu-core 2.37-2build1 deb +gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gnupg 2.2.27-3ubuntu2.1 deb +gnupg-l10n 2.2.27-3ubuntu2.1 deb +gnupg-utils 2.2.27-3ubuntu2.1 deb +gpg 2.2.27-3ubuntu2.1 deb +gpg-agent 2.2.27-3ubuntu2.1 deb +gpg-wks-client 2.2.27-3ubuntu2.1 deb +gpg-wks-server 2.2.27-3ubuntu2.1 deb +gpgconf 2.2.27-3ubuntu2.1 deb +gpgsm 2.2.27-3ubuntu2.1 deb +gpgv 2.2.27-3ubuntu2.1 deb +grep 3.7-1build1 deb +gzip 1.10-4ubuntu4.1 deb +hostname 3.23ubuntu2 deb +init-system-helpers 1.62 deb +jellyfin-ffmpeg6 6.0.1-3-jammy deb +jellyfin-server 20231115.15-unstable deb +jellyfin-web 20240303.2-unstable deb +jq 1.6-2.1ubuntu3 deb +karaoke --dev 2023.524.0.0 dotnet +libaacs0 0.11.1-1 deb +libacl1 2.3.1-1 deb +libapt-pkg6.0 2.4.11 deb +libass9 1:0.15.2-1 deb +libassuan0 2.5.5-1build1 deb +libattr1 1:2.5.1-1build1 deb +libaudit-common 1:3.0.7-1build1 deb +libaudit1 1:3.0.7-1build1 deb +libbdplus0 0.2.0-1 deb +libblkid1 2.37.2-4ubuntu3 deb +libbluray2 1:1.3.1-1 deb +libbrotli1 1.0.9-2build6 deb +libbsd0 0.11.5-1 deb +libbz2-1.0 1.0.8-5build1 deb +libc-bin 2.35-0ubuntu3.1 deb +libc6 2.35-0ubuntu3.1 deb +libcairo2 1.16.0-5ubuntu2 deb +libcap-ng0 0.7.9-2.2build3 deb +libcap2 1:2.44-1ubuntu0.22.04.1 deb +libcom-err2 1.46.5-2ubuntu1.1 deb +libcrypt1 1:4.4.27-1 deb +libcurl4 7.81.0-1ubuntu1.15 deb +libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb +libdebconfclient0 0.261ubuntu1 deb +libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb +libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb +libdrm2 2.4.113-2~ubuntu0.22.04.1 deb +libedit2 3.1-20210910-1build1 deb +libelf1 0.186-1build1 deb +libexpat1 2.4.7-1ubuntu0.2 deb +libext2fs2 1.46.5-2ubuntu1.1 deb +libffi8 3.4.2-4 deb +libfontconfig1 2.13.1-4.2ubuntu5 deb +libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb +libfribidi0 1.0.8-2ubuntu3.1 deb +libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcrypt20 1.9.4-3ubuntu3 deb +libglib2.0-0 2.72.4-0ubuntu2.2 deb +libglib2.0-data 2.72.4-0ubuntu2.2 deb +libgmp10 2:6.2.1+dfsg-3ubuntu1 deb +libgnutls30 3.7.3-4ubuntu1.2 deb +libgpg-error0 1.43-3 deb +libgraphite2-3 1.3.14-1build2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libharfbuzz0b 2.7.4-1ubuntu3.1 deb +libhogweed6 3.7.3-1build2 deb +libicu70 70.1-2 deb +libidn2-0 2.3.2-2build1 deb +libjq1 1.6-2.1ubuntu3 deb +libk5crypto3 1.19.2-2ubuntu0.2 deb +libkeyutils1 1.6.1-2ubuntu3 deb +libkrb5-3 1.19.2-2ubuntu0.2 deb +libkrb5support0 1.19.2-2ubuntu0.2 deb +libksba8 1.6.0-2ubuntu0.2 deb +libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb +liblz4-1 1.9.3-2build2 deb +liblzma5 5.2.5-2ubuntu1 deb +libmd0 1.0.4-1build1 deb +libmount1 2.37.2-4ubuntu3 deb +libmp3lame0 3.100-3build2 deb +libmpg123-0 1.29.3-1build1 deb +libncurses6 6.3-2ubuntu0.1 deb +libncursesw6 6.3-2ubuntu0.1 deb +libnettle8 3.7.3-1build2 deb +libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnpth0 1.6-3build2 deb +libnsl2 1.3.0-2build2 deb +libnuma1 2.0.14-3ubuntu2 deb +libogg0 1.3.5-0ubuntu3 deb +libonig5 6.9.7.1-2build1 deb +libopenmpt0 0.6.1-1 deb +libopus0 1.3.1-0.1build2 deb +libp11-kit0 0.24.0-6build1 deb +libpam-modules 1.4.0-11ubuntu2.3 deb +libpam-modules-bin 1.4.0-11ubuntu2.3 deb +libpam-runtime 1.4.0-11ubuntu2.3 deb +libpam0g 1.4.0-11ubuntu2.3 deb +libpciaccess0 0.16-3 deb +libpcre2-8-0 10.39-3ubuntu0.1 deb +libpcre3 2:8.39-13ubuntu0.22.04.1 deb +libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb +libpng16-16 1.6.37-3build5 deb +libprocps8 2:3.3.17-6ubuntu2 deb +libpsl5 0.21.0-1.2build2 deb +libreadline8 8.1.2-1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb +libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb +libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +libse 3.6.13.2 dotnet +libseccomp2 2.5.3-2ubuntu2 deb +libselinux1 3.3-1build2 deb +libsemanage-common 3.3-1build2 deb +libsemanage2 3.3-1build2 deb +libsepol2 3.3-1build1 deb +libsmartcols1 2.37.2-4ubuntu3 deb +libsqlite3-0 3.37.2-2ubuntu0.3 deb +libss2 1.46.5-2ubuntu1.1 deb +libssh-4 0.9.6-2ubuntu0.22.04.3 deb +libssl3 3.0.2-0ubuntu1.10 deb +libstdc++6 12.1.0-2ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.9 deb +libtasn1-6 4.18.0-4build1 deb +libtheora0 1.1.1+dfsg.1-15ubuntu4 deb +libtinfo6 6.3-2ubuntu0.1 deb +libtirpc-common 1.3.2-2ubuntu0.1 deb +libtirpc3 1.3.2-2ubuntu0.1 deb +libudev1 249.11-0ubuntu3.9 deb +libudfread0 1.1.2-1 deb +libunistring2 1.0-1 deb +libuuid1 2.37.2-4ubuntu3 deb +libvorbis0a 1.3.7-1build2 deb +libvorbisenc2 1.3.7-1build2 deb +libvorbisfile3 1.3.7-1build2 deb +libvpx7 1.11.0-2ubuntu2.2 deb +libwebp7 1.2.2-2ubuntu0.22.04.2 deb +libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb +libx11-6 2:1.7.5-1ubuntu0.3 deb +libx11-data 2:1.7.5-1ubuntu0.3 deb +libx11-xcb1 2:1.7.5-1ubuntu0.3 deb +libx264-163 2:0.163.3060+git5db6aa6-2build1 deb +libx265-199 3.5-2 deb +libxau6 1:1.0.9-1build5 deb +libxcb-dri2-0 1.14-3ubuntu3 deb +libxcb-dri3-0 1.14-3ubuntu3 deb +libxcb-present0 1.14-3ubuntu3 deb +libxcb-randr0 1.14-3ubuntu3 deb +libxcb-render0 1.14-3ubuntu3 deb +libxcb-shm0 1.14-3ubuntu3 deb +libxcb-sync1 1.14-3ubuntu3 deb +libxcb-xfixes0 1.14-3ubuntu3 deb +libxcb1 1.14-3ubuntu3 deb +libxdmcp6 1:1.1.3-0ubuntu5 deb +libxext6 2:1.3.4-1build1 deb +libxml2 2.9.13+dfsg-1ubuntu0.4 deb +libxrender1 1:0.9.10-1build4 deb +libxshmfence1 1.3-1build4 deb +libxxhash0 0.8.1-1 deb +libzstd1 1.4.8+dfsg-3build1 deb +libzvbi-common 0.2.35-19 deb +libzvbi0 0.2.35-19 deb +locales 2.35-0ubuntu3.6 deb +login 1:4.8.1-2ubuntu2.1 deb +logsave 1.46.5-2ubuntu1.1 deb +lsb-base 11.1.0ubuntu4 deb +mawk 1.3.4.20200120-3 deb +mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb +mount 2.37.2-4ubuntu3 deb +mscorlib 7.0.1323.51816 dotnet +ncurses-base 6.3-2ubuntu0.1 deb +ncurses-bin 6.3-2ubuntu0.1 deb +netcat 1.218-4ubuntu1 deb +netcat-openbsd 1.218-4ubuntu1 deb +netstandard 7.0.1323.51816 dotnet +ocl-icd-libopencl1 2.2.14-3 deb +openssl 3.0.2-0ubuntu1.15 deb +passwd 1:4.8.1-2ubuntu2.1 deb +perl-base 5.34.0-3ubuntu1.2 deb +pinentry-curses 1.1.1-1build2 deb +procps 2:3.3.17-6ubuntu2 deb +prometheus-net.DotNetRuntime 4.4.0.0 dotnet +publicsuffix 20211207.1025-1 deb +readline-common 8.1.2-1 deb +sed 4.8-1ubuntu2 deb +sensible-utils 0.0.17 deb +shared-mime-info 2.1-2 deb +sysvinit-utils 3.01-1ubuntu1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tzdata 2023d-0ubuntu0.22.04 deb +ubuntu-keyring 2021.03.26 deb +ucf 3.0043 deb +usrmerge 25ubuntu2 deb +util-linux 2.37.2-4ubuntu3 deb +xdg-user-dirs 0.17-2ubuntu4 deb +zlib.net 1.0.6.0 dotnet +zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 52323980d30bd8b953304ec3eac68ae499597c0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 9 Mar 2024 23:11:53 +0000 Subject: [PATCH 1959/2257] Bot Updating Package Versions --- package_versions.txt | 704 ++++++++++++++++++++++--------------------- 1 file changed, 355 insertions(+), 349 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f092149..1b08428 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,380 +1,385 @@ NAME VERSION TYPE +AsyncKeyedLock 6.3.4.0 dotnet BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +BlurHashSharp 1.3.2.0 dotnet +BlurHashSharp.SkiaSharp 1.3.2.0 dotnet CacheManager.NET 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet -Diacritics.NET 3.3.18 dotnet +Diacritics.NET 3.3.27 dotnet DiscUtils.Core 0.16.13.55129 dotnet DiscUtils.Iso9660 0.16.13.55129 dotnet DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.0.0.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.2.3.0 dotnet EasyCaching.Core 1.9.1.0 dotnet -ExCSS 4.1.4.0 dotnet -Fizzler 1.2.1.0 dotnet -HarfBuzzSharp 7.3.0.0 dotnet -Jellyfin Server 10.9.0 dotnet (+14 duplicates) -Jellyfin Server 2019.1.20.3 dotnet -Jellyfin.Api 1.0.0.0 dotnet +ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet +HarfBuzzSharp 7.3.0.1 dotnet +Jellyfin Server 10.9.0 dotnet (+13 duplicates) +Jellyfin.Api 22.4.0.0 dotnet Jellyfin.Data.dll 10.9.0 dotnet Jellyfin.Extensions.dll 10.9.0 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet +Jellyfin.LiveTv 22.4.0.0 dotnet +Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet Jellyfin.Networking.dll 10.9.0 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet -MetaBrainz.Common 1.0.0 dotnet -MetaBrainz.Common.Json 5.1.0 dotnet -MetaBrainz.MusicBrainz 5.0.1 dotnet -Microsoft.AspNetCore 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Antiforgery 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Cookies 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authentication.OAuth 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Authorization.Policy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Authorization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Forms 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Server 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Components.Web 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Connections.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.CookiePolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.Internal 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HostFiltering 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Html.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Connections.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Extensions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Features 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Http.Results 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpLogging 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpOverrides 7.0.1323.52007 dotnet -Microsoft.AspNetCore.HttpsPolicy 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Identity 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Localization.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Metadata 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Cors 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Localization 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 7.0.1323.52007 dotnet -Microsoft.AspNetCore.OutputCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RateLimiting 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Razor.Runtime 7.0.1323.52007 dotnet -Microsoft.AspNetCore.RequestDecompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.ResponseCompression 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Rewrite 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Routing.Abstractions 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.HttpSys 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IIS 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.IISIntegration 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.Session 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Common 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Core 7.0.1323.52007 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 7.0.1323.52007 dotnet -Microsoft.AspNetCore.StaticFiles 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebSockets 7.0.1323.52007 dotnet -Microsoft.AspNetCore.WebUtilities 7.0.1323.52007 dotnet +MetaBrainz.Common 3.0.0 dotnet +MetaBrainz.Common.Json 6.0.2 dotnet +MetaBrainz.MusicBrainz 6.1.0 dotnet +Microsoft.AspNetCore 8.0.224.6804 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authentication 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authorization 8.0.224.6804 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.224.6804 dotnet +Microsoft.AspNetCore.Components 8.0.224.6804 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.224.6804 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.224.6804 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.224.6804 dotnet +Microsoft.AspNetCore.Components.Server 8.0.224.6804 dotnet +Microsoft.AspNetCore.Components.Web 8.0.224.6804 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.224.6804 dotnet +Microsoft.AspNetCore.Cors 8.0.224.6804 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.224.6804 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.224.6804 dotnet +Microsoft.AspNetCore.DataProtection 8.0.224.6804 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.224.6804 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.224.6804 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.224.6804 dotnet +Microsoft.AspNetCore.Hosting 8.0.224.6804 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http.Features 8.0.224.6804 dotnet +Microsoft.AspNetCore.Http.Results 8.0.224.6804 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.224.6804 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.224.6804 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.224.6804 dotnet +Microsoft.AspNetCore.Identity 8.0.224.6804 dotnet +Microsoft.AspNetCore.Localization 8.0.224.6804 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.224.6804 dotnet +Microsoft.AspNetCore.Metadata 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.224.6804 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.224.6804 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.224.6804 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.224.6804 dotnet +Microsoft.AspNetCore.Razor 8.0.224.6804 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.224.6804 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.224.6804 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.224.6804 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.224.6804 dotnet +Microsoft.AspNetCore.Rewrite 8.0.224.6804 dotnet +Microsoft.AspNetCore.Routing 8.0.224.6804 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.224.6804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.224.6804 dotnet +Microsoft.AspNetCore.Session 8.0.224.6804 dotnet +Microsoft.AspNetCore.SignalR 8.0.224.6804 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.224.6804 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.224.6804 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.224.6804 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.224.6804 dotnet +Microsoft.AspNetCore.WebSockets 8.0.224.6804 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.224.6804 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 7.0.1323.51816 dotnet -Microsoft.Data.Sqlite 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Abstractions 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Relational 7.0.1323.51806 dotnet -Microsoft.EntityFrameworkCore.Sqlite 7.0.1323.51806 dotnet -Microsoft.Extensions.Caching.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Caching.Memory 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Binder 7.0.423.11508 dotnet -Microsoft.Extensions.Configuration.CommandLine 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.FileExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Ini 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Json 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 7.0.1323.52007 dotnet -Microsoft.Extensions.Configuration.UserSecrets 7.0.22.51805 dotnet -Microsoft.Extensions.Configuration.Xml 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.DependencyModel 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 7.0.1323.52007 dotnet -Microsoft.Extensions.Features 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Composite 7.0.22.51805 dotnet -Microsoft.Extensions.FileProviders.Embedded 7.0.1323.52007 dotnet -Microsoft.Extensions.FileProviders.Physical 7.0.22.51805 dotnet -Microsoft.Extensions.FileSystemGlobbing 7.0.22.51805 dotnet -Microsoft.Extensions.Hosting 7.0.323.6910 dotnet -Microsoft.Extensions.Hosting.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Http 7.0.22.51805 dotnet -Microsoft.Extensions.Identity.Core 7.0.1323.52007 dotnet -Microsoft.Extensions.Identity.Stores 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization 7.0.1323.52007 dotnet -Microsoft.Extensions.Localization.Abstractions 7.0.1323.52007 dotnet -Microsoft.Extensions.Logging 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Abstractions 7.0.723.27404 dotnet -Microsoft.Extensions.Logging.Configuration 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Console 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.Debug 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventLog 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.EventSource 7.0.22.51805 dotnet -Microsoft.Extensions.Logging.TraceSource 7.0.22.51805 dotnet -Microsoft.Extensions.ObjectPool 7.0.1323.52007 dotnet -Microsoft.Extensions.Options 7.0.323.6910 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 7.0.22.51805 dotnet -Microsoft.Extensions.Options.DataAnnotations 7.0.22.51805 dotnet -Microsoft.Extensions.Primitives 7.0.22.51805 dotnet -Microsoft.Extensions.WebEncoders 7.0.1323.52007 dotnet -Microsoft.JSInterop 7.0.1323.52007 dotnet -Microsoft.Net.Http.Headers 7.0.1323.52007 dotnet +Microsoft.CSharp 8.0.224.6711 dotnet +Microsoft.Data.Sqlite 8.0.224.6803 dotnet +Microsoft.EntityFrameworkCore 8.0.224.6803 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.224.6803 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.224.6803 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.224.6803 dotnet +Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Binder 8.0.123.58001 dotnet +Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.224.6804 dotnet +Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet +Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.224.6804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.224.6804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.224.6804 dotnet +Microsoft.Extensions.Features 8.0.224.6804 dotnet +Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.224.6804 dotnet +Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet +Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet +Microsoft.Extensions.Hosting 8.0.23.53103 dotnet +Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Http 8.0.23.53103 dotnet +Microsoft.Extensions.Identity.Core 8.0.224.6804 dotnet +Microsoft.Extensions.Identity.Stores 8.0.224.6804 dotnet +Microsoft.Extensions.Localization 8.0.224.6804 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.224.6804 dotnet +Microsoft.Extensions.Logging 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Console 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Debug 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet +Microsoft.Extensions.ObjectPool 8.0.224.6804 dotnet +Microsoft.Extensions.Options 8.0.224.6711 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet +Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet +Microsoft.Extensions.Primitives 8.0.23.53103 dotnet +Microsoft.Extensions.WebEncoders 8.0.224.6804 dotnet +Microsoft.JSInterop 8.0.224.6804 dotnet +Microsoft.Net.Http.Headers 8.0.224.6804 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 7.0.1323.51816 dotnet -Microsoft.VisualBasic.Core 12.0.1323.51816 dotnet -Microsoft.Win32.Primitives 7.0.1323.51816 dotnet -Microsoft.Win32.Registry 7.0.1323.51816 dotnet +Microsoft.VisualBasic 8.0.224.6711 dotnet +Microsoft.VisualBasic.Core 13.0.224.6711 dotnet +Microsoft.Win32.Primitives 8.0.224.6711 dotnet +Microsoft.Win32.Registry 8.0.224.6711 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet -NeoSmart.AsyncLock 3.2.1.0 dotnet -PlaylistsNET 1.4.0.0 dotnet -Prometheus.AspNetCore.dll 8.1.0 dotnet -Prometheus.NetStandard.dll 8.1.0 dotnet -SQLitePCLRaw.batteries_v2 2.1.4.1835 dotnet -SQLitePCLRaw.core 2.1.4.1835 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.4.1835 dotnet -Serilog 3.1.0.0 dotnet -Serilog.AspNetCore 7.0.0.0 dotnet +PlaylistsNET 1.4.1.0 dotnet +Prometheus.AspNetCore.dll 8.2.1 dotnet +Prometheus.NetStandard.dll 8.2.1 dotnet +SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet +SQLitePCLRaw.core 2.1.6.2060 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet +Serilog 3.1.1.0 dotnet +Serilog.AspNetCore 8.0.1.0 dotnet Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 7.0.0.0 dotnet -Serilog.Extensions.Logging 7.0.0.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 7.0.1.0 dotnet +Serilog.Extensions.Hosting 8.0.0.0 dotnet +Serilog.Extensions.Logging 8.0.0.0 dotnet +Serilog.Formatting.Compact 2.0.0.0 dotnet +Serilog.Settings.Configuration 8.0.0.0 dotnet Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 5.0.0.0 dotnet +Serilog.Sinks.Console 5.0.1.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 3.1.0 dotnet +Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -SkiaSharp 2.88.5.0 dotnet -SkiaSharp.HarfBuzz 2.88.5.0 dotnet -Svg.Custom 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -Svg.Model 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet -Svg.Skia 1.0.0.2+5a85fa83158047f4d746362adfb65c4e2d7f6d77 dotnet +ShimSkiaSharp 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet +SkiaSharp 2.88.7.0 dotnet +SkiaSharp.HarfBuzz 2.88.7.0 dotnet +Svg.Custom 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet +Svg.Model 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet +Svg.Skia 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 7.0.1323.51816 dotnet -System.AppContext 7.0.1323.51816 dotnet -System.Buffers 7.0.1323.51816 dotnet -System.Collections 7.0.1323.51816 dotnet -System.Collections.Concurrent 7.0.1323.51816 dotnet -System.Collections.Immutable 7.0.1323.51816 dotnet -System.Collections.NonGeneric 7.0.1323.51816 dotnet -System.Collections.Specialized 7.0.1323.51816 dotnet -System.ComponentModel 7.0.1323.51816 dotnet -System.ComponentModel.Annotations 7.0.1323.51816 dotnet -System.ComponentModel.DataAnnotations 7.0.1323.51816 dotnet -System.ComponentModel.EventBasedAsync 7.0.1323.51816 dotnet -System.ComponentModel.Primitives 7.0.1323.51816 dotnet -System.ComponentModel.TypeConverter 7.0.1323.51816 dotnet -System.Configuration 7.0.1323.51816 dotnet -System.Console 7.0.1323.51816 dotnet -System.Core 7.0.1323.51816 dotnet -System.Data 7.0.1323.51816 dotnet -System.Data.Common 7.0.1323.51816 dotnet -System.Data.DataSetExtensions 7.0.1323.51816 dotnet -System.Diagnostics.Contracts 7.0.1323.51816 dotnet -System.Diagnostics.Debug 7.0.1323.51816 dotnet -System.Diagnostics.DiagnosticSource 7.0.1323.51816 dotnet -System.Diagnostics.EventLog 7.0.22.51805 dotnet -System.Diagnostics.FileVersionInfo 7.0.1323.51816 dotnet -System.Diagnostics.Process 7.0.1323.51816 dotnet -System.Diagnostics.StackTrace 7.0.1323.51816 dotnet -System.Diagnostics.TextWriterTraceListener 7.0.1323.51816 dotnet -System.Diagnostics.Tools 7.0.1323.51816 dotnet -System.Diagnostics.TraceSource 7.0.1323.51816 dotnet -System.Diagnostics.Tracing 7.0.1323.51816 dotnet -System.Drawing 7.0.1323.51816 dotnet +System 8.0.224.6711 dotnet +System.AppContext 8.0.224.6711 dotnet +System.Buffers 8.0.224.6711 dotnet +System.Collections 8.0.224.6711 dotnet +System.Collections.Concurrent 8.0.224.6711 dotnet +System.Collections.Immutable 8.0.224.6711 dotnet +System.Collections.NonGeneric 8.0.224.6711 dotnet +System.Collections.Specialized 8.0.224.6711 dotnet +System.ComponentModel 8.0.224.6711 dotnet +System.ComponentModel.Annotations 8.0.224.6711 dotnet +System.ComponentModel.DataAnnotations 8.0.224.6711 dotnet +System.ComponentModel.EventBasedAsync 8.0.224.6711 dotnet +System.ComponentModel.Primitives 8.0.224.6711 dotnet +System.ComponentModel.TypeConverter 8.0.224.6711 dotnet +System.Configuration 8.0.224.6711 dotnet +System.Console 8.0.224.6711 dotnet +System.Core 8.0.224.6711 dotnet +System.Data 8.0.224.6711 dotnet +System.Data.Common 8.0.224.6711 dotnet +System.Data.DataSetExtensions 8.0.224.6711 dotnet +System.Diagnostics.Contracts 8.0.224.6711 dotnet +System.Diagnostics.Debug 8.0.224.6711 dotnet +System.Diagnostics.DiagnosticSource 8.0.224.6711 dotnet +System.Diagnostics.EventLog 8.0.23.53103 dotnet +System.Diagnostics.FileVersionInfo 8.0.224.6711 dotnet +System.Diagnostics.Process 8.0.224.6711 dotnet +System.Diagnostics.StackTrace 8.0.224.6711 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.224.6711 dotnet +System.Diagnostics.Tools 8.0.224.6711 dotnet +System.Diagnostics.TraceSource 8.0.224.6711 dotnet +System.Diagnostics.Tracing 8.0.224.6711 dotnet +System.Drawing 8.0.224.6711 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 7.0.1323.51816 dotnet -System.Dynamic.Runtime 7.0.1323.51816 dotnet -System.Formats.Asn1 7.0.1323.51816 dotnet -System.Formats.Tar 7.0.1323.51816 dotnet -System.Globalization 7.0.1323.51816 dotnet -System.Globalization.Calendars 7.0.1323.51816 dotnet -System.Globalization.Extensions 7.0.1323.51816 dotnet -System.IO 7.0.1323.51816 dotnet -System.IO.Compression 7.0.1323.51816 dotnet -System.IO.Compression.Brotli 7.0.1323.51816 dotnet -System.IO.Compression.FileSystem 7.0.1323.51816 dotnet -System.IO.Compression.ZipFile 7.0.1323.51816 dotnet -System.IO.FileSystem 7.0.1323.51816 dotnet -System.IO.FileSystem.AccessControl 7.0.1323.51816 dotnet -System.IO.FileSystem.DriveInfo 7.0.1323.51816 dotnet -System.IO.FileSystem.Primitives 7.0.1323.51816 dotnet -System.IO.FileSystem.Watcher 7.0.1323.51816 dotnet -System.IO.IsolatedStorage 7.0.1323.51816 dotnet -System.IO.MemoryMappedFiles 7.0.1323.51816 dotnet -System.IO.Pipelines 7.0.22.51805 dotnet -System.IO.Pipes 7.0.1323.51816 dotnet -System.IO.Pipes.AccessControl 7.0.1323.51816 dotnet -System.IO.UnmanagedMemoryStream 7.0.1323.51816 dotnet -System.Linq 7.0.1323.51816 dotnet +System.Drawing.Primitives 8.0.224.6711 dotnet +System.Dynamic.Runtime 8.0.224.6711 dotnet +System.Formats.Asn1 8.0.224.6711 dotnet +System.Formats.Tar 8.0.224.6711 dotnet +System.Globalization 8.0.224.6711 dotnet +System.Globalization.Calendars 8.0.224.6711 dotnet +System.Globalization.Extensions 8.0.224.6711 dotnet +System.IO 8.0.224.6711 dotnet +System.IO.Compression 8.0.224.6711 dotnet +System.IO.Compression.Brotli 8.0.224.6711 dotnet +System.IO.Compression.FileSystem 8.0.224.6711 dotnet +System.IO.Compression.ZipFile 8.0.224.6711 dotnet +System.IO.FileSystem 8.0.224.6711 dotnet +System.IO.FileSystem.AccessControl 8.0.224.6711 dotnet +System.IO.FileSystem.DriveInfo 8.0.224.6711 dotnet +System.IO.FileSystem.Primitives 8.0.224.6711 dotnet +System.IO.FileSystem.Watcher 8.0.224.6711 dotnet +System.IO.Hashing 8.0.23.53103 dotnet +System.IO.IsolatedStorage 8.0.224.6711 dotnet +System.IO.MemoryMappedFiles 8.0.224.6711 dotnet +System.IO.Pipelines 8.0.23.53103 dotnet +System.IO.Pipes 8.0.224.6711 dotnet +System.IO.Pipes.AccessControl 8.0.224.6711 dotnet +System.IO.UnmanagedMemoryStream 8.0.224.6711 dotnet +System.Linq 8.0.224.6711 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 7.0.1323.51816 dotnet -System.Linq.Parallel 7.0.1323.51816 dotnet -System.Linq.Queryable 7.0.1323.51816 dotnet -System.Memory 7.0.1323.51816 dotnet -System.Net 7.0.1323.51816 dotnet -System.Net.Http 7.0.1323.51816 dotnet -System.Net.Http.Json 7.0.1323.51816 dotnet -System.Net.HttpListener 7.0.1323.51816 dotnet -System.Net.Mail 7.0.1323.51816 dotnet -System.Net.NameResolution 7.0.1323.51816 dotnet -System.Net.NetworkInformation 7.0.1323.51816 dotnet -System.Net.Ping 7.0.1323.51816 dotnet -System.Net.Primitives 7.0.1323.51816 dotnet -System.Net.Quic 7.0.1323.51816 dotnet -System.Net.Requests 7.0.1323.51816 dotnet -System.Net.Security 7.0.1323.51816 dotnet -System.Net.ServicePoint 7.0.1323.51816 dotnet -System.Net.Sockets 7.0.1323.51816 dotnet -System.Net.WebClient 7.0.1323.51816 dotnet -System.Net.WebHeaderCollection 7.0.1323.51816 dotnet -System.Net.WebProxy 7.0.1323.51816 dotnet -System.Net.WebSockets 7.0.1323.51816 dotnet -System.Net.WebSockets.Client 7.0.1323.51816 dotnet -System.Numerics 7.0.1323.51816 dotnet -System.Numerics.Vectors 7.0.1323.51816 dotnet -System.ObjectModel 7.0.1323.51816 dotnet -System.Private.CoreLib 7.0.1323.51816 dotnet -System.Private.DataContractSerialization 7.0.1323.51816 dotnet -System.Private.Uri 7.0.1323.51816 dotnet -System.Private.Xml 7.0.1323.51816 dotnet -System.Private.Xml.Linq 7.0.1323.51816 dotnet -System.Reflection 7.0.1323.51816 dotnet -System.Reflection.DispatchProxy 7.0.1323.51816 dotnet -System.Reflection.Emit 7.0.1323.51816 dotnet -System.Reflection.Emit.ILGeneration 7.0.1323.51816 dotnet -System.Reflection.Emit.Lightweight 7.0.1323.51816 dotnet -System.Reflection.Extensions 7.0.1323.51816 dotnet -System.Reflection.Metadata 7.0.1323.51816 dotnet -System.Reflection.Primitives 7.0.1323.51816 dotnet -System.Reflection.TypeExtensions 7.0.1323.51816 dotnet -System.Resources.Reader 7.0.1323.51816 dotnet -System.Resources.ResourceManager 7.0.1323.51816 dotnet -System.Resources.Writer 7.0.1323.51816 dotnet -System.Runtime 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.Unsafe 7.0.1323.51816 dotnet -System.Runtime.CompilerServices.VisualC 7.0.1323.51816 dotnet -System.Runtime.Extensions 7.0.1323.51816 dotnet -System.Runtime.Handles 7.0.1323.51816 dotnet -System.Runtime.InteropServices 7.0.1323.51816 dotnet -System.Runtime.InteropServices.JavaScript 7.0.1323.51816 dotnet -System.Runtime.InteropServices.RuntimeInformation 7.0.1323.51816 dotnet -System.Runtime.Intrinsics 7.0.1323.51816 dotnet -System.Runtime.Loader 7.0.1323.51816 dotnet -System.Runtime.Numerics 7.0.1323.51816 dotnet -System.Runtime.Serialization 7.0.1323.51816 dotnet -System.Runtime.Serialization.Formatters 7.0.1323.51816 dotnet -System.Runtime.Serialization.Json 7.0.1323.51816 dotnet -System.Runtime.Serialization.Primitives 7.0.1323.51816 dotnet -System.Runtime.Serialization.Xml 7.0.1323.51816 dotnet -System.Security 7.0.1323.51816 dotnet -System.Security.AccessControl 7.0.1323.51816 dotnet -System.Security.Claims 7.0.1323.51816 dotnet -System.Security.Cryptography 7.0.1323.51816 dotnet -System.Security.Cryptography.Algorithms 7.0.1323.51816 dotnet -System.Security.Cryptography.Cng 7.0.1323.51816 dotnet -System.Security.Cryptography.Csp 7.0.1323.51816 dotnet -System.Security.Cryptography.Encoding 7.0.1323.51816 dotnet -System.Security.Cryptography.OpenSsl 7.0.1323.51816 dotnet -System.Security.Cryptography.Pkcs 7.0.723.27404 dotnet -System.Security.Cryptography.Primitives 7.0.1323.51816 dotnet -System.Security.Cryptography.X509Certificates 7.0.1323.51816 dotnet -System.Security.Cryptography.Xml 7.0.222.60605 dotnet -System.Security.Principal 7.0.1323.51816 dotnet -System.Security.Principal.Windows 7.0.1323.51816 dotnet -System.Security.SecureString 7.0.1323.51816 dotnet -System.ServiceModel.Web 7.0.1323.51816 dotnet -System.ServiceProcess 7.0.1323.51816 dotnet -System.Text.Encoding 7.0.1323.51816 dotnet -System.Text.Encoding.CodePages 7.0.1323.51816 dotnet -System.Text.Encoding.Extensions 7.0.1323.51816 dotnet -System.Text.Encodings.Web 7.0.1323.51816 dotnet -System.Text.Json 7.0.1323.51816 dotnet -System.Text.RegularExpressions 7.0.1323.51816 dotnet -System.Threading 7.0.1323.51816 dotnet -System.Threading.Channels 7.0.1323.51816 dotnet -System.Threading.Overlapped 7.0.1323.51816 dotnet -System.Threading.RateLimiting 7.0.1123.42427 dotnet -System.Threading.Tasks 7.0.1323.51816 dotnet -System.Threading.Tasks.Dataflow 7.0.1323.51816 dotnet -System.Threading.Tasks.Extensions 7.0.1323.51816 dotnet -System.Threading.Tasks.Parallel 7.0.1323.51816 dotnet -System.Threading.Thread 7.0.1323.51816 dotnet -System.Threading.ThreadPool 7.0.1323.51816 dotnet -System.Threading.Timer 7.0.1323.51816 dotnet -System.Transactions 7.0.1323.51816 dotnet -System.Transactions.Local 7.0.1323.51816 dotnet -System.ValueTuple 7.0.1323.51816 dotnet -System.Web 7.0.1323.51816 dotnet -System.Web.HttpUtility 7.0.1323.51816 dotnet -System.Windows 7.0.1323.51816 dotnet -System.Xml 7.0.1323.51816 dotnet -System.Xml.Linq 7.0.1323.51816 dotnet -System.Xml.ReaderWriter 7.0.1323.51816 dotnet -System.Xml.Serialization 7.0.1323.51816 dotnet -System.Xml.XDocument 7.0.1323.51816 dotnet -System.Xml.XPath 7.0.1323.51816 dotnet -System.Xml.XPath.XDocument 7.0.1323.51816 dotnet -System.Xml.XmlDocument 7.0.1323.51816 dotnet -System.Xml.XmlSerializer 7.0.1323.51816 dotnet -TMDbLib 2.0.0.0 dotnet +System.Linq.Expressions 8.0.224.6711 dotnet +System.Linq.Parallel 8.0.224.6711 dotnet +System.Linq.Queryable 8.0.224.6711 dotnet +System.Memory 8.0.224.6711 dotnet +System.Net 8.0.224.6711 dotnet +System.Net.Http 8.0.224.6711 dotnet +System.Net.Http.Json 8.0.224.6711 dotnet +System.Net.HttpListener 8.0.224.6711 dotnet +System.Net.Mail 8.0.224.6711 dotnet +System.Net.NameResolution 8.0.224.6711 dotnet +System.Net.NetworkInformation 8.0.224.6711 dotnet +System.Net.Ping 8.0.224.6711 dotnet +System.Net.Primitives 8.0.224.6711 dotnet +System.Net.Quic 8.0.224.6711 dotnet +System.Net.Requests 8.0.224.6711 dotnet +System.Net.Security 8.0.224.6711 dotnet +System.Net.ServicePoint 8.0.224.6711 dotnet +System.Net.Sockets 8.0.224.6711 dotnet +System.Net.WebClient 8.0.224.6711 dotnet +System.Net.WebHeaderCollection 8.0.224.6711 dotnet +System.Net.WebProxy 8.0.224.6711 dotnet +System.Net.WebSockets 8.0.224.6711 dotnet +System.Net.WebSockets.Client 8.0.224.6711 dotnet +System.Numerics 8.0.224.6711 dotnet +System.Numerics.Vectors 8.0.224.6711 dotnet +System.ObjectModel 8.0.224.6711 dotnet +System.Private.CoreLib 8.0.224.6711 dotnet +System.Private.DataContractSerialization 8.0.224.6711 dotnet +System.Private.Uri 8.0.224.6711 dotnet +System.Private.Xml 8.0.224.6711 dotnet +System.Private.Xml.Linq 8.0.224.6711 dotnet +System.Reflection 8.0.224.6711 dotnet +System.Reflection.DispatchProxy 8.0.224.6711 dotnet +System.Reflection.Emit 8.0.224.6711 dotnet +System.Reflection.Emit.ILGeneration 8.0.224.6711 dotnet +System.Reflection.Emit.Lightweight 8.0.224.6711 dotnet +System.Reflection.Extensions 8.0.224.6711 dotnet +System.Reflection.Metadata 8.0.224.6711 dotnet +System.Reflection.Primitives 8.0.224.6711 dotnet +System.Reflection.TypeExtensions 8.0.224.6711 dotnet +System.Resources.Reader 8.0.224.6711 dotnet +System.Resources.ResourceManager 8.0.224.6711 dotnet +System.Resources.Writer 8.0.224.6711 dotnet +System.Runtime 8.0.224.6711 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.224.6711 dotnet +System.Runtime.CompilerServices.VisualC 8.0.224.6711 dotnet +System.Runtime.Extensions 8.0.224.6711 dotnet +System.Runtime.Handles 8.0.224.6711 dotnet +System.Runtime.InteropServices 8.0.224.6711 dotnet +System.Runtime.InteropServices.JavaScript 8.0.224.6711 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.224.6711 dotnet +System.Runtime.Intrinsics 8.0.224.6711 dotnet +System.Runtime.Loader 8.0.224.6711 dotnet +System.Runtime.Numerics 8.0.224.6711 dotnet +System.Runtime.Serialization 8.0.224.6711 dotnet +System.Runtime.Serialization.Formatters 8.0.224.6711 dotnet +System.Runtime.Serialization.Json 8.0.224.6711 dotnet +System.Runtime.Serialization.Primitives 8.0.224.6711 dotnet +System.Runtime.Serialization.Xml 8.0.224.6711 dotnet +System.Security 8.0.224.6711 dotnet +System.Security.AccessControl 8.0.224.6711 dotnet +System.Security.Claims 8.0.224.6711 dotnet +System.Security.Cryptography 8.0.224.6711 dotnet +System.Security.Cryptography.Algorithms 8.0.224.6711 dotnet +System.Security.Cryptography.Cng 8.0.224.6711 dotnet +System.Security.Cryptography.Csp 8.0.224.6711 dotnet +System.Security.Cryptography.Encoding 8.0.224.6711 dotnet +System.Security.Cryptography.OpenSsl 8.0.224.6711 dotnet +System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet +System.Security.Cryptography.Primitives 8.0.224.6711 dotnet +System.Security.Cryptography.X509Certificates 8.0.224.6711 dotnet +System.Security.Cryptography.Xml 8.0.23.53103 dotnet +System.Security.Principal 8.0.224.6711 dotnet +System.Security.Principal.Windows 8.0.224.6711 dotnet +System.Security.SecureString 8.0.224.6711 dotnet +System.ServiceModel.Web 8.0.224.6711 dotnet +System.ServiceProcess 8.0.224.6711 dotnet +System.Text.Encoding 8.0.224.6711 dotnet +System.Text.Encoding.CodePages 8.0.224.6711 dotnet +System.Text.Encoding.Extensions 8.0.224.6711 dotnet +System.Text.Encodings.Web 8.0.224.6711 dotnet +System.Text.Json 8.0.224.6711 dotnet +System.Text.RegularExpressions 8.0.224.6711 dotnet +System.Threading 8.0.224.6711 dotnet +System.Threading.Channels 8.0.224.6711 dotnet +System.Threading.Overlapped 8.0.224.6711 dotnet +System.Threading.RateLimiting 8.0.23.53103 dotnet +System.Threading.Tasks 8.0.224.6711 dotnet +System.Threading.Tasks.Dataflow 8.0.224.6711 dotnet +System.Threading.Tasks.Extensions 8.0.224.6711 dotnet +System.Threading.Tasks.Parallel 8.0.224.6711 dotnet +System.Threading.Thread 8.0.224.6711 dotnet +System.Threading.ThreadPool 8.0.224.6711 dotnet +System.Threading.Timer 8.0.224.6711 dotnet +System.Transactions 8.0.224.6711 dotnet +System.Transactions.Local 8.0.224.6711 dotnet +System.ValueTuple 8.0.224.6711 dotnet +System.Web 8.0.224.6711 dotnet +System.Web.HttpUtility 8.0.224.6711 dotnet +System.Windows 8.0.224.6711 dotnet +System.Xml 8.0.224.6711 dotnet +System.Xml.Linq 8.0.224.6711 dotnet +System.Xml.ReaderWriter 8.0.224.6711 dotnet +System.Xml.Serialization 8.0.224.6711 dotnet +System.Xml.XDocument 8.0.224.6711 dotnet +System.Xml.XPath 8.0.224.6711 dotnet +System.Xml.XPath.XDocument 8.0.224.6711 dotnet +System.Xml.XmlDocument 8.0.224.6711 dotnet +System.Xml.XmlSerializer 8.0.224.6711 dotnet +TMDbLib 2.1.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 7.0.1323.51816 dotnet +WindowsBase 8.0.224.6711 dotnet adduser 3.118ubuntu5 deb apt 2.4.11 deb apt-utils 2.4.11 deb @@ -414,8 +419,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-3-jammy deb -jellyfin-server 20231115.15-unstable deb -jellyfin-web 20240303.2-unstable deb +jellyfin-server 2024030717+ubu2204 deb +jellyfin-web 2024030717+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -570,12 +575,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3 deb -mscorlib 7.0.1323.51816 dotnet +mscorlib 8.0.224.6711 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 7.0.1323.51816 dotnet +netstandard 8.0.224.6711 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.1 deb @@ -588,9 +593,10 @@ readline-common 8.1.2-1 sed 4.8-1ubuntu2 deb sensible-utils 0.0.17 deb shared-mime-info 2.1-2 deb +sudo 1.9.9-1ubuntu2.4 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023d-0ubuntu0.22.04 deb +tzdata 2024a-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 0d04aa0ee51f4e35969d36a697807dd84a67b05d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Mar 2024 06:14:40 +0000 Subject: [PATCH 1960/2257] 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 1b08428..5f911ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -419,8 +419,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-3-jammy deb -jellyfin-server 2024030717+ubu2204 deb -jellyfin-web 2024030717+ubu2204 deb +jellyfin-server 2024031105+ubu2204 deb +jellyfin-web 2024031105+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 4a5f505d64ce039d956f8e8f96c92532c6ad7ff0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Mar 2024 12:40:58 +0000 Subject: [PATCH 1961/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cde6520..07810a1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -568,7 +568,7 @@ sed 4.8-1ubuntu2 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb -tzdata 2023d-0ubuntu0.22.04 deb +tzdata 2024a-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From c0ed1a8ca59fcb59ac422191a11d740262cc1d01 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Mar 2024 06:12:56 +0000 Subject: [PATCH 1962/2257] Bot Updating Templated Files --- Jenkinsfile | 61 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 18b955c..f9043cd 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 1cbe1afa8545d417b2a308d4667739a09f6c204e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Mar 2024 06:19:44 +0000 Subject: [PATCH 1963/2257] Bot Updating Package Versions --- package_versions.txt | 556 +++++++++++++++++++++---------------------- 1 file changed, 278 insertions(+), 278 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5f911ca..86cb2ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 6.3.4.0 dotnet -BDInfo 0.7.6.2 dotnet +BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet CacheManager.NET 1.2.0.0 dotnet @@ -28,94 +28,94 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.224.6804 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authentication 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authorization 8.0.224.6804 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.224.6804 dotnet -Microsoft.AspNetCore.Components 8.0.224.6804 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.224.6804 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.224.6804 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.224.6804 dotnet -Microsoft.AspNetCore.Components.Server 8.0.224.6804 dotnet -Microsoft.AspNetCore.Components.Web 8.0.224.6804 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.224.6804 dotnet -Microsoft.AspNetCore.Cors 8.0.224.6804 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.224.6804 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.224.6804 dotnet -Microsoft.AspNetCore.DataProtection 8.0.224.6804 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.224.6804 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.224.6804 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.224.6804 dotnet -Microsoft.AspNetCore.Hosting 8.0.224.6804 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http.Features 8.0.224.6804 dotnet -Microsoft.AspNetCore.Http.Results 8.0.224.6804 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.224.6804 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.224.6804 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.224.6804 dotnet -Microsoft.AspNetCore.Identity 8.0.224.6804 dotnet -Microsoft.AspNetCore.Localization 8.0.224.6804 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.224.6804 dotnet -Microsoft.AspNetCore.Metadata 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.224.6804 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.224.6804 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.224.6804 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.224.6804 dotnet -Microsoft.AspNetCore.Razor 8.0.224.6804 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.224.6804 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.224.6804 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.224.6804 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.224.6804 dotnet -Microsoft.AspNetCore.Rewrite 8.0.224.6804 dotnet -Microsoft.AspNetCore.Routing 8.0.224.6804 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.224.6804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.224.6804 dotnet -Microsoft.AspNetCore.Session 8.0.224.6804 dotnet -Microsoft.AspNetCore.SignalR 8.0.224.6804 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.224.6804 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.224.6804 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.224.6804 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.224.6804 dotnet -Microsoft.AspNetCore.WebSockets 8.0.224.6804 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.224.6804 dotnet +Microsoft.AspNetCore 8.0.324.11615 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authentication 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authorization 8.0.324.11615 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.324.11615 dotnet +Microsoft.AspNetCore.Components 8.0.324.11615 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.324.11615 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.324.11615 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.324.11615 dotnet +Microsoft.AspNetCore.Components.Server 8.0.324.11615 dotnet +Microsoft.AspNetCore.Components.Web 8.0.324.11615 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.324.11615 dotnet +Microsoft.AspNetCore.Cors 8.0.324.11615 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.324.11615 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.324.11615 dotnet +Microsoft.AspNetCore.DataProtection 8.0.324.11615 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.324.11615 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.324.11615 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.324.11615 dotnet +Microsoft.AspNetCore.Hosting 8.0.324.11615 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http.Features 8.0.324.11615 dotnet +Microsoft.AspNetCore.Http.Results 8.0.324.11615 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.324.11615 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.324.11615 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.324.11615 dotnet +Microsoft.AspNetCore.Identity 8.0.324.11615 dotnet +Microsoft.AspNetCore.Localization 8.0.324.11615 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.324.11615 dotnet +Microsoft.AspNetCore.Metadata 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.324.11615 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.324.11615 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.324.11615 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.324.11615 dotnet +Microsoft.AspNetCore.Razor 8.0.324.11615 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.324.11615 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.324.11615 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.324.11615 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.324.11615 dotnet +Microsoft.AspNetCore.Rewrite 8.0.324.11615 dotnet +Microsoft.AspNetCore.Routing 8.0.324.11615 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.324.11615 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.324.11615 dotnet +Microsoft.AspNetCore.Session 8.0.324.11615 dotnet +Microsoft.AspNetCore.SignalR 8.0.324.11615 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.324.11615 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.324.11615 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.324.11615 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.324.11615 dotnet +Microsoft.AspNetCore.WebSockets 8.0.324.11615 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.324.11615 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.224.6711 dotnet +Microsoft.CSharp 8.0.324.11423 dotnet Microsoft.Data.Sqlite 8.0.224.6803 dotnet Microsoft.EntityFrameworkCore 8.0.224.6803 dotnet Microsoft.EntityFrameworkCore.Abstractions 8.0.224.6803 dotnet @@ -131,51 +131,51 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.224.6804 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.324.11615 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.224.6804 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.224.6804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.324.11615 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.324.11615 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.224.6804 dotnet -Microsoft.Extensions.Features 8.0.224.6804 dotnet +Microsoft.Extensions.Features 8.0.324.11615 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.224.6804 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.324.11615 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.224.6804 dotnet -Microsoft.Extensions.Identity.Stores 8.0.224.6804 dotnet -Microsoft.Extensions.Localization 8.0.224.6804 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.224.6804 dotnet +Microsoft.Extensions.Identity.Core 8.0.324.11615 dotnet +Microsoft.Extensions.Identity.Stores 8.0.324.11615 dotnet +Microsoft.Extensions.Localization 8.0.324.11615 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.324.11615 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Console 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Debug 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.224.6804 dotnet +Microsoft.Extensions.ObjectPool 8.0.324.11615 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.224.6804 dotnet -Microsoft.JSInterop 8.0.224.6804 dotnet -Microsoft.Net.Http.Headers 8.0.224.6804 dotnet +Microsoft.Extensions.WebEncoders 8.0.324.11615 dotnet +Microsoft.JSInterop 8.0.324.11615 dotnet +Microsoft.Net.Http.Headers 8.0.324.11615 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.224.6711 dotnet -Microsoft.VisualBasic.Core 13.0.224.6711 dotnet -Microsoft.Win32.Primitives 8.0.224.6711 dotnet -Microsoft.Win32.Registry 8.0.224.6711 dotnet +Microsoft.VisualBasic 8.0.324.11423 dotnet +Microsoft.VisualBasic.Core 13.0.324.11423 dotnet +Microsoft.Win32.Primitives 8.0.324.11423 dotnet +Microsoft.Win32.Registry 8.0.324.11423 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -198,188 +198,188 @@ Serilog.Sinks.Debug 2.0.0.0 Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet +ShimSkiaSharp 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet SkiaSharp 2.88.7.0 dotnet SkiaSharp.HarfBuzz 2.88.7.0 dotnet -Svg.Custom 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet -Svg.Model 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet -Svg.Skia 1.0.0.14+25e08798619a26e25dedd0f64577a48f461ad87a dotnet +Svg.Custom 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet +Svg.Model 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet +Svg.Skia 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.224.6711 dotnet -System.AppContext 8.0.224.6711 dotnet -System.Buffers 8.0.224.6711 dotnet -System.Collections 8.0.224.6711 dotnet -System.Collections.Concurrent 8.0.224.6711 dotnet -System.Collections.Immutable 8.0.224.6711 dotnet -System.Collections.NonGeneric 8.0.224.6711 dotnet -System.Collections.Specialized 8.0.224.6711 dotnet -System.ComponentModel 8.0.224.6711 dotnet -System.ComponentModel.Annotations 8.0.224.6711 dotnet -System.ComponentModel.DataAnnotations 8.0.224.6711 dotnet -System.ComponentModel.EventBasedAsync 8.0.224.6711 dotnet -System.ComponentModel.Primitives 8.0.224.6711 dotnet -System.ComponentModel.TypeConverter 8.0.224.6711 dotnet -System.Configuration 8.0.224.6711 dotnet -System.Console 8.0.224.6711 dotnet -System.Core 8.0.224.6711 dotnet -System.Data 8.0.224.6711 dotnet -System.Data.Common 8.0.224.6711 dotnet -System.Data.DataSetExtensions 8.0.224.6711 dotnet -System.Diagnostics.Contracts 8.0.224.6711 dotnet -System.Diagnostics.Debug 8.0.224.6711 dotnet -System.Diagnostics.DiagnosticSource 8.0.224.6711 dotnet +System 8.0.324.11423 dotnet +System.AppContext 8.0.324.11423 dotnet +System.Buffers 8.0.324.11423 dotnet +System.Collections 8.0.324.11423 dotnet +System.Collections.Concurrent 8.0.324.11423 dotnet +System.Collections.Immutable 8.0.324.11423 dotnet +System.Collections.NonGeneric 8.0.324.11423 dotnet +System.Collections.Specialized 8.0.324.11423 dotnet +System.ComponentModel 8.0.324.11423 dotnet +System.ComponentModel.Annotations 8.0.324.11423 dotnet +System.ComponentModel.DataAnnotations 8.0.324.11423 dotnet +System.ComponentModel.EventBasedAsync 8.0.324.11423 dotnet +System.ComponentModel.Primitives 8.0.324.11423 dotnet +System.ComponentModel.TypeConverter 8.0.324.11423 dotnet +System.Configuration 8.0.324.11423 dotnet +System.Console 8.0.324.11423 dotnet +System.Core 8.0.324.11423 dotnet +System.Data 8.0.324.11423 dotnet +System.Data.Common 8.0.324.11423 dotnet +System.Data.DataSetExtensions 8.0.324.11423 dotnet +System.Diagnostics.Contracts 8.0.324.11423 dotnet +System.Diagnostics.Debug 8.0.324.11423 dotnet +System.Diagnostics.DiagnosticSource 8.0.324.11423 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.224.6711 dotnet -System.Diagnostics.Process 8.0.224.6711 dotnet -System.Diagnostics.StackTrace 8.0.224.6711 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.224.6711 dotnet -System.Diagnostics.Tools 8.0.224.6711 dotnet -System.Diagnostics.TraceSource 8.0.224.6711 dotnet -System.Diagnostics.Tracing 8.0.224.6711 dotnet -System.Drawing 8.0.224.6711 dotnet +System.Diagnostics.FileVersionInfo 8.0.324.11423 dotnet +System.Diagnostics.Process 8.0.324.11423 dotnet +System.Diagnostics.StackTrace 8.0.324.11423 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.324.11423 dotnet +System.Diagnostics.Tools 8.0.324.11423 dotnet +System.Diagnostics.TraceSource 8.0.324.11423 dotnet +System.Diagnostics.Tracing 8.0.324.11423 dotnet +System.Drawing 8.0.324.11423 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 8.0.224.6711 dotnet -System.Dynamic.Runtime 8.0.224.6711 dotnet -System.Formats.Asn1 8.0.224.6711 dotnet -System.Formats.Tar 8.0.224.6711 dotnet -System.Globalization 8.0.224.6711 dotnet -System.Globalization.Calendars 8.0.224.6711 dotnet -System.Globalization.Extensions 8.0.224.6711 dotnet -System.IO 8.0.224.6711 dotnet -System.IO.Compression 8.0.224.6711 dotnet -System.IO.Compression.Brotli 8.0.224.6711 dotnet -System.IO.Compression.FileSystem 8.0.224.6711 dotnet -System.IO.Compression.ZipFile 8.0.224.6711 dotnet -System.IO.FileSystem 8.0.224.6711 dotnet -System.IO.FileSystem.AccessControl 8.0.224.6711 dotnet -System.IO.FileSystem.DriveInfo 8.0.224.6711 dotnet -System.IO.FileSystem.Primitives 8.0.224.6711 dotnet -System.IO.FileSystem.Watcher 8.0.224.6711 dotnet +System.Drawing.Primitives 8.0.324.11423 dotnet +System.Dynamic.Runtime 8.0.324.11423 dotnet +System.Formats.Asn1 8.0.324.11423 dotnet +System.Formats.Tar 8.0.324.11423 dotnet +System.Globalization 8.0.324.11423 dotnet +System.Globalization.Calendars 8.0.324.11423 dotnet +System.Globalization.Extensions 8.0.324.11423 dotnet +System.IO 8.0.324.11423 dotnet +System.IO.Compression 8.0.324.11423 dotnet +System.IO.Compression.Brotli 8.0.324.11423 dotnet +System.IO.Compression.FileSystem 8.0.324.11423 dotnet +System.IO.Compression.ZipFile 8.0.324.11423 dotnet +System.IO.FileSystem 8.0.324.11423 dotnet +System.IO.FileSystem.AccessControl 8.0.324.11423 dotnet +System.IO.FileSystem.DriveInfo 8.0.324.11423 dotnet +System.IO.FileSystem.Primitives 8.0.324.11423 dotnet +System.IO.FileSystem.Watcher 8.0.324.11423 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.224.6711 dotnet -System.IO.MemoryMappedFiles 8.0.224.6711 dotnet +System.IO.IsolatedStorage 8.0.324.11423 dotnet +System.IO.MemoryMappedFiles 8.0.324.11423 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.224.6711 dotnet -System.IO.Pipes.AccessControl 8.0.224.6711 dotnet -System.IO.UnmanagedMemoryStream 8.0.224.6711 dotnet -System.Linq 8.0.224.6711 dotnet +System.IO.Pipes 8.0.324.11423 dotnet +System.IO.Pipes.AccessControl 8.0.324.11423 dotnet +System.IO.UnmanagedMemoryStream 8.0.324.11423 dotnet +System.Linq 8.0.324.11423 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.224.6711 dotnet -System.Linq.Parallel 8.0.224.6711 dotnet -System.Linq.Queryable 8.0.224.6711 dotnet -System.Memory 8.0.224.6711 dotnet -System.Net 8.0.224.6711 dotnet -System.Net.Http 8.0.224.6711 dotnet -System.Net.Http.Json 8.0.224.6711 dotnet -System.Net.HttpListener 8.0.224.6711 dotnet -System.Net.Mail 8.0.224.6711 dotnet -System.Net.NameResolution 8.0.224.6711 dotnet -System.Net.NetworkInformation 8.0.224.6711 dotnet -System.Net.Ping 8.0.224.6711 dotnet -System.Net.Primitives 8.0.224.6711 dotnet -System.Net.Quic 8.0.224.6711 dotnet -System.Net.Requests 8.0.224.6711 dotnet -System.Net.Security 8.0.224.6711 dotnet -System.Net.ServicePoint 8.0.224.6711 dotnet -System.Net.Sockets 8.0.224.6711 dotnet -System.Net.WebClient 8.0.224.6711 dotnet -System.Net.WebHeaderCollection 8.0.224.6711 dotnet -System.Net.WebProxy 8.0.224.6711 dotnet -System.Net.WebSockets 8.0.224.6711 dotnet -System.Net.WebSockets.Client 8.0.224.6711 dotnet -System.Numerics 8.0.224.6711 dotnet -System.Numerics.Vectors 8.0.224.6711 dotnet -System.ObjectModel 8.0.224.6711 dotnet -System.Private.CoreLib 8.0.224.6711 dotnet -System.Private.DataContractSerialization 8.0.224.6711 dotnet -System.Private.Uri 8.0.224.6711 dotnet -System.Private.Xml 8.0.224.6711 dotnet -System.Private.Xml.Linq 8.0.224.6711 dotnet -System.Reflection 8.0.224.6711 dotnet -System.Reflection.DispatchProxy 8.0.224.6711 dotnet -System.Reflection.Emit 8.0.224.6711 dotnet -System.Reflection.Emit.ILGeneration 8.0.224.6711 dotnet -System.Reflection.Emit.Lightweight 8.0.224.6711 dotnet -System.Reflection.Extensions 8.0.224.6711 dotnet -System.Reflection.Metadata 8.0.224.6711 dotnet -System.Reflection.Primitives 8.0.224.6711 dotnet -System.Reflection.TypeExtensions 8.0.224.6711 dotnet -System.Resources.Reader 8.0.224.6711 dotnet -System.Resources.ResourceManager 8.0.224.6711 dotnet -System.Resources.Writer 8.0.224.6711 dotnet -System.Runtime 8.0.224.6711 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.224.6711 dotnet -System.Runtime.CompilerServices.VisualC 8.0.224.6711 dotnet -System.Runtime.Extensions 8.0.224.6711 dotnet -System.Runtime.Handles 8.0.224.6711 dotnet -System.Runtime.InteropServices 8.0.224.6711 dotnet -System.Runtime.InteropServices.JavaScript 8.0.224.6711 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.224.6711 dotnet -System.Runtime.Intrinsics 8.0.224.6711 dotnet -System.Runtime.Loader 8.0.224.6711 dotnet -System.Runtime.Numerics 8.0.224.6711 dotnet -System.Runtime.Serialization 8.0.224.6711 dotnet -System.Runtime.Serialization.Formatters 8.0.224.6711 dotnet -System.Runtime.Serialization.Json 8.0.224.6711 dotnet -System.Runtime.Serialization.Primitives 8.0.224.6711 dotnet -System.Runtime.Serialization.Xml 8.0.224.6711 dotnet -System.Security 8.0.224.6711 dotnet -System.Security.AccessControl 8.0.224.6711 dotnet -System.Security.Claims 8.0.224.6711 dotnet -System.Security.Cryptography 8.0.224.6711 dotnet -System.Security.Cryptography.Algorithms 8.0.224.6711 dotnet -System.Security.Cryptography.Cng 8.0.224.6711 dotnet -System.Security.Cryptography.Csp 8.0.224.6711 dotnet -System.Security.Cryptography.Encoding 8.0.224.6711 dotnet -System.Security.Cryptography.OpenSsl 8.0.224.6711 dotnet +System.Linq.Expressions 8.0.324.11423 dotnet +System.Linq.Parallel 8.0.324.11423 dotnet +System.Linq.Queryable 8.0.324.11423 dotnet +System.Memory 8.0.324.11423 dotnet +System.Net 8.0.324.11423 dotnet +System.Net.Http 8.0.324.11423 dotnet +System.Net.Http.Json 8.0.324.11423 dotnet +System.Net.HttpListener 8.0.324.11423 dotnet +System.Net.Mail 8.0.324.11423 dotnet +System.Net.NameResolution 8.0.324.11423 dotnet +System.Net.NetworkInformation 8.0.324.11423 dotnet +System.Net.Ping 8.0.324.11423 dotnet +System.Net.Primitives 8.0.324.11423 dotnet +System.Net.Quic 8.0.324.11423 dotnet +System.Net.Requests 8.0.324.11423 dotnet +System.Net.Security 8.0.324.11423 dotnet +System.Net.ServicePoint 8.0.324.11423 dotnet +System.Net.Sockets 8.0.324.11423 dotnet +System.Net.WebClient 8.0.324.11423 dotnet +System.Net.WebHeaderCollection 8.0.324.11423 dotnet +System.Net.WebProxy 8.0.324.11423 dotnet +System.Net.WebSockets 8.0.324.11423 dotnet +System.Net.WebSockets.Client 8.0.324.11423 dotnet +System.Numerics 8.0.324.11423 dotnet +System.Numerics.Vectors 8.0.324.11423 dotnet +System.ObjectModel 8.0.324.11423 dotnet +System.Private.CoreLib 8.0.324.11423 dotnet +System.Private.DataContractSerialization 8.0.324.11423 dotnet +System.Private.Uri 8.0.324.11423 dotnet +System.Private.Xml 8.0.324.11423 dotnet +System.Private.Xml.Linq 8.0.324.11423 dotnet +System.Reflection 8.0.324.11423 dotnet +System.Reflection.DispatchProxy 8.0.324.11423 dotnet +System.Reflection.Emit 8.0.324.11423 dotnet +System.Reflection.Emit.ILGeneration 8.0.324.11423 dotnet +System.Reflection.Emit.Lightweight 8.0.324.11423 dotnet +System.Reflection.Extensions 8.0.324.11423 dotnet +System.Reflection.Metadata 8.0.324.11423 dotnet +System.Reflection.Primitives 8.0.324.11423 dotnet +System.Reflection.TypeExtensions 8.0.324.11423 dotnet +System.Resources.Reader 8.0.324.11423 dotnet +System.Resources.ResourceManager 8.0.324.11423 dotnet +System.Resources.Writer 8.0.324.11423 dotnet +System.Runtime 8.0.324.11423 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.324.11423 dotnet +System.Runtime.CompilerServices.VisualC 8.0.324.11423 dotnet +System.Runtime.Extensions 8.0.324.11423 dotnet +System.Runtime.Handles 8.0.324.11423 dotnet +System.Runtime.InteropServices 8.0.324.11423 dotnet +System.Runtime.InteropServices.JavaScript 8.0.324.11423 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.324.11423 dotnet +System.Runtime.Intrinsics 8.0.324.11423 dotnet +System.Runtime.Loader 8.0.324.11423 dotnet +System.Runtime.Numerics 8.0.324.11423 dotnet +System.Runtime.Serialization 8.0.324.11423 dotnet +System.Runtime.Serialization.Formatters 8.0.324.11423 dotnet +System.Runtime.Serialization.Json 8.0.324.11423 dotnet +System.Runtime.Serialization.Primitives 8.0.324.11423 dotnet +System.Runtime.Serialization.Xml 8.0.324.11423 dotnet +System.Security 8.0.324.11423 dotnet +System.Security.AccessControl 8.0.324.11423 dotnet +System.Security.Claims 8.0.324.11423 dotnet +System.Security.Cryptography 8.0.324.11423 dotnet +System.Security.Cryptography.Algorithms 8.0.324.11423 dotnet +System.Security.Cryptography.Cng 8.0.324.11423 dotnet +System.Security.Cryptography.Csp 8.0.324.11423 dotnet +System.Security.Cryptography.Encoding 8.0.324.11423 dotnet +System.Security.Cryptography.OpenSsl 8.0.324.11423 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.224.6711 dotnet -System.Security.Cryptography.X509Certificates 8.0.224.6711 dotnet +System.Security.Cryptography.Primitives 8.0.324.11423 dotnet +System.Security.Cryptography.X509Certificates 8.0.324.11423 dotnet System.Security.Cryptography.Xml 8.0.23.53103 dotnet -System.Security.Principal 8.0.224.6711 dotnet -System.Security.Principal.Windows 8.0.224.6711 dotnet -System.Security.SecureString 8.0.224.6711 dotnet -System.ServiceModel.Web 8.0.224.6711 dotnet -System.ServiceProcess 8.0.224.6711 dotnet -System.Text.Encoding 8.0.224.6711 dotnet -System.Text.Encoding.CodePages 8.0.224.6711 dotnet -System.Text.Encoding.Extensions 8.0.224.6711 dotnet -System.Text.Encodings.Web 8.0.224.6711 dotnet -System.Text.Json 8.0.224.6711 dotnet -System.Text.RegularExpressions 8.0.224.6711 dotnet -System.Threading 8.0.224.6711 dotnet -System.Threading.Channels 8.0.224.6711 dotnet -System.Threading.Overlapped 8.0.224.6711 dotnet +System.Security.Principal 8.0.324.11423 dotnet +System.Security.Principal.Windows 8.0.324.11423 dotnet +System.Security.SecureString 8.0.324.11423 dotnet +System.ServiceModel.Web 8.0.324.11423 dotnet +System.ServiceProcess 8.0.324.11423 dotnet +System.Text.Encoding 8.0.324.11423 dotnet +System.Text.Encoding.CodePages 8.0.324.11423 dotnet +System.Text.Encoding.Extensions 8.0.324.11423 dotnet +System.Text.Encodings.Web 8.0.324.11423 dotnet +System.Text.Json 8.0.324.11423 dotnet +System.Text.RegularExpressions 8.0.324.11423 dotnet +System.Threading 8.0.324.11423 dotnet +System.Threading.Channels 8.0.324.11423 dotnet +System.Threading.Overlapped 8.0.324.11423 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.224.6711 dotnet -System.Threading.Tasks.Dataflow 8.0.224.6711 dotnet -System.Threading.Tasks.Extensions 8.0.224.6711 dotnet -System.Threading.Tasks.Parallel 8.0.224.6711 dotnet -System.Threading.Thread 8.0.224.6711 dotnet -System.Threading.ThreadPool 8.0.224.6711 dotnet -System.Threading.Timer 8.0.224.6711 dotnet -System.Transactions 8.0.224.6711 dotnet -System.Transactions.Local 8.0.224.6711 dotnet -System.ValueTuple 8.0.224.6711 dotnet -System.Web 8.0.224.6711 dotnet -System.Web.HttpUtility 8.0.224.6711 dotnet -System.Windows 8.0.224.6711 dotnet -System.Xml 8.0.224.6711 dotnet -System.Xml.Linq 8.0.224.6711 dotnet -System.Xml.ReaderWriter 8.0.224.6711 dotnet -System.Xml.Serialization 8.0.224.6711 dotnet -System.Xml.XDocument 8.0.224.6711 dotnet -System.Xml.XPath 8.0.224.6711 dotnet -System.Xml.XPath.XDocument 8.0.224.6711 dotnet -System.Xml.XmlDocument 8.0.224.6711 dotnet -System.Xml.XmlSerializer 8.0.224.6711 dotnet -TMDbLib 2.1.0.0 dotnet +System.Threading.Tasks 8.0.324.11423 dotnet +System.Threading.Tasks.Dataflow 8.0.324.11423 dotnet +System.Threading.Tasks.Extensions 8.0.324.11423 dotnet +System.Threading.Tasks.Parallel 8.0.324.11423 dotnet +System.Threading.Thread 8.0.324.11423 dotnet +System.Threading.ThreadPool 8.0.324.11423 dotnet +System.Threading.Timer 8.0.324.11423 dotnet +System.Transactions 8.0.324.11423 dotnet +System.Transactions.Local 8.0.324.11423 dotnet +System.ValueTuple 8.0.324.11423 dotnet +System.Web 8.0.324.11423 dotnet +System.Web.HttpUtility 8.0.324.11423 dotnet +System.Windows 8.0.324.11423 dotnet +System.Xml 8.0.324.11423 dotnet +System.Xml.Linq 8.0.324.11423 dotnet +System.Xml.ReaderWriter 8.0.324.11423 dotnet +System.Xml.Serialization 8.0.324.11423 dotnet +System.Xml.XDocument 8.0.324.11423 dotnet +System.Xml.XPath 8.0.324.11423 dotnet +System.Xml.XPath.XDocument 8.0.324.11423 dotnet +System.Xml.XmlDocument 8.0.324.11423 dotnet +System.Xml.XmlSerializer 8.0.324.11423 dotnet +TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.224.6711 dotnet +WindowsBase 8.0.324.11423 dotnet adduser 3.118ubuntu5 deb apt 2.4.11 deb apt-utils 2.4.11 deb @@ -419,8 +419,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-3-jammy deb -jellyfin-server 2024031105+ubu2204 deb -jellyfin-web 2024031105+ubu2204 deb +jellyfin-server 2024031805+ubu2204 deb +jellyfin-web 2024031805+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -454,7 +454,7 @@ libdrm-radeon1 2.4.113-2~ubu libdrm2 2.4.113-2~ubuntu0.22.04.1 deb libedit2 3.1-20210910-1build1 deb libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb +libexpat1 2.4.7-1ubuntu0.3 deb libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb libfontconfig1 2.13.1-4.2ubuntu5 deb @@ -575,12 +575,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3 deb -mscorlib 8.0.224.6711 dotnet +mscorlib 8.0.324.11423 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.224.6711 dotnet +netstandard 8.0.324.11423 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.1 deb From 82313fdb4a1fab1b92005a12e0b8ec8b1f424d78 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Mar 2024 12:39:49 +0000 Subject: [PATCH 1964/2257] Bot Updating Templated Files --- Jenkinsfile | 61 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aa314e8..3995451 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=master -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 master of ${LS_USER}/${LS_REPO} for running the jenkins builder on + # ${TEMPDIR}/repo/${LS_REPO}: Cloned branch master 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 master --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME} + docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true ghcr.io/linuxserver/jenkins-builder:latest + 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 master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master 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 master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master 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 master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master 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 2515311658450651b0c83a51234016c4bf1fa154 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Mar 2024 12:44:05 +0000 Subject: [PATCH 1965/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 07810a1..171e52b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -428,7 +428,7 @@ libdrm-radeon1 2.4.113-2~ubu libdrm2 2.4.113-2~ubuntu0.22.04.1 deb libedit2 3.1-20210910-1build1 deb libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.2 deb +libexpat1 2.4.7-1ubuntu0.3 deb libext2fs2 1.46.5-2ubuntu1.1 deb libffi8 3.4.2-4 deb libfontconfig1 2.13.1-4.2ubuntu5 deb From 75773c7fd5b2625e18b01e7b7139abba5341e764 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Mar 2024 06:16:39 +0000 Subject: [PATCH 1966/2257] Bot Updating Package Versions --- package_versions.txt | 79 +++++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 38 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 86cb2ce..9b234bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,6 +15,9 @@ EFCoreSecondLevelCacheInterceptor 4.2.3.0 EasyCaching.Core 1.9.1.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.1 dotnet +ICU4N 60.1.0 dotnet +ICU4N.Transliterator 60.1.0 dotnet +J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet Jellyfin Server 10.9.0 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet Jellyfin.Data.dll 10.9.0 dotnet @@ -116,11 +119,11 @@ Microsoft.AspNetCore.WebSockets 8.0.324.11615 Microsoft.AspNetCore.WebUtilities 8.0.324.11615 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet Microsoft.CSharp 8.0.324.11423 dotnet -Microsoft.Data.Sqlite 8.0.224.6803 dotnet -Microsoft.EntityFrameworkCore 8.0.224.6803 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.224.6803 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.224.6803 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.224.6803 dotnet +Microsoft.Data.Sqlite 8.0.324.11510 dotnet +Microsoft.EntityFrameworkCore 8.0.324.11510 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.324.11510 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.324.11510 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.324.11510 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -141,7 +144,7 @@ Microsoft.Extensions.Diagnostics 8.0.23.53103 Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.HealthChecks 8.0.324.11615 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.324.11615 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.224.6804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.324.11615 dotnet Microsoft.Extensions.Features 8.0.324.11615 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet @@ -384,13 +387,13 @@ adduser 3.118ubuntu5 apt 2.4.11 deb apt-utils 2.4.11 deb at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb +base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb +bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb +coreutils 8.32-4.1ubuntu1.1 deb cron 3.0pl1-137ubuntu3 deb curl 7.81.0-1ubuntu1.15 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -398,12 +401,12 @@ debconf 1.5.79ubuntu1 debianutils 5.5-1ubuntu2 deb diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb +dpkg 1.21.1ubuntu2.3 deb e2fsprogs 1.46.5-2ubuntu1.1 deb findutils 4.8.0-1ubuntu3 deb fontconfig-config 2.13.1-4.2ubuntu5 deb fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gcc-12-base 12.3.0-1ubuntu1~22.04 deb gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb @@ -418,9 +421,9 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-3-jammy deb -jellyfin-server 2024031805+ubu2204 deb -jellyfin-web 2024031805+ubu2204 deb +jellyfin-ffmpeg6 6.0.1-5-jammy deb +jellyfin-server 2024032505+ubu2204 deb +jellyfin-web 2024032505+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -437,8 +440,8 @@ libbluray2 1:1.3.1-1 libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb +libc-bin 2.35-0ubuntu3.6 deb +libc6 2.35-0ubuntu3.6 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -460,27 +463,27 @@ libffi8 3.4.2-4 libfontconfig1 2.13.1-4.2ubuntu5 deb libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu2.2 deb libglib2.0-data 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb +libgnutls30 3.7.3-4ubuntu1.4 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb libharfbuzz0b 2.7.4-1ubuntu3.1 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb +libk5crypto3 1.19.2-2ubuntu0.3 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb +libkrb5-3 1.19.2-2ubuntu0.3 deb +libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -500,16 +503,16 @@ libonig5 6.9.7.1-2buil libopenmpt0 0.6.1-1 deb libopus0 1.3.1-0.1build2 deb libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb +libpam-modules 1.4.0-11ubuntu2.4 deb +libpam-modules-bin 1.4.0-11ubuntu2.4 deb +libpam-runtime 1.4.0-11ubuntu2.4 deb +libpam0g 1.4.0-11ubuntu2.4 deb libpciaccess0 0.16-3 deb libpcre2-8-0 10.39-3ubuntu0.1 deb libpcre3 2:8.39-13ubuntu0.22.04.1 deb libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb +libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb @@ -526,15 +529,15 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb +libssl3 3.0.2-0ubuntu1.15 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb +libudev1 249.11-0ubuntu3.12 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb @@ -569,7 +572,7 @@ libzstd1 1.4.8+dfsg-3b libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb locales 2.35-0ubuntu3.6 deb -login 1:4.8.1-2ubuntu2.1 deb +login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb @@ -583,10 +586,10 @@ netcat-openbsd 1.218-4ubuntu netstandard 8.0.324.11423 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb +passwd 1:4.8.1-2ubuntu2.2 deb +perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb +procps 2:3.3.17-6ubuntu2.1 deb prometheus-net.DotNetRuntime 4.4.0.0 dotnet publicsuffix 20211207.1025-1 deb readline-common 8.1.2-1 deb @@ -595,7 +598,7 @@ sensible-utils 0.0.17 shared-mime-info 2.1-2 deb sudo 1.9.9-1ubuntu2.4 deb sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tzdata 2024a-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb From e238be1fc69d48f72fbdab8dc5d391418d3a7c85 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Mar 2024 12:43:51 +0000 Subject: [PATCH 1967/2257] Bot Updating Package Versions --- package_versions.txt | 58 ++++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 171e52b..460bb58 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -360,13 +360,13 @@ adduser 3.118ubuntu5 apt 2.4.11 deb apt-utils 2.4.11 deb at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.3 deb +base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1 deb +bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3 deb ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1 deb +coreutils 8.32-4.1ubuntu1.1 deb cron 3.0pl1-137ubuntu3 deb curl 7.81.0-1ubuntu1.15 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb @@ -374,12 +374,12 @@ debconf 1.5.79ubuntu1 debianutils 5.5-1ubuntu2 deb diffutils 1:3.8-0ubuntu2 deb dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.2 deb +dpkg 1.21.1ubuntu2.3 deb e2fsprogs 1.46.5-2ubuntu1.1 deb findutils 4.8.0-1ubuntu3 deb fontconfig-config 2.13.1-4.2ubuntu5 deb fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.1.0-2ubuntu1~22.04 deb +gcc-12-base 12.3.0-1ubuntu1~22.04 deb gnupg 2.2.27-3ubuntu2.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb @@ -411,8 +411,8 @@ libbluray2 1:1.3.1-1 libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.1 deb -libc6 2.35-0ubuntu3.1 deb +libc-bin 2.35-0ubuntu3.6 deb +libc6 2.35-0ubuntu3.6 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -434,26 +434,26 @@ libffi8 3.4.2-4 libfontconfig1 2.13.1-4.2ubuntu5 deb libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb libfribidi0 1.0.8-2ubuntu3.1 deb -libgcc-s1 12.1.0-2ubuntu1~22.04 deb +libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.2 deb +libgnutls30 3.7.3-4ubuntu1.4 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb +libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb libharfbuzz0b 2.7.4-1ubuntu3.1 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.2 deb +libk5crypto3 1.19.2-2ubuntu0.3 deb libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.2 deb -libkrb5support0 1.19.2-2ubuntu0.2 deb +libkrb5-3 1.19.2-2ubuntu0.3 deb +libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.16+dfsg-0ubuntu0.22.04.2 deb +libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -473,16 +473,16 @@ libonig5 6.9.7.1-2buil libopenmpt0 0.6.1-1 deb libopus0 1.3.1-0.1build2 deb libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.3 deb -libpam-modules-bin 1.4.0-11ubuntu2.3 deb -libpam-runtime 1.4.0-11ubuntu2.3 deb -libpam0g 1.4.0-11ubuntu2.3 deb +libpam-modules 1.4.0-11ubuntu2.4 deb +libpam-modules-bin 1.4.0-11ubuntu2.4 deb +libpam-runtime 1.4.0-11ubuntu2.4 deb +libpam0g 1.4.0-11ubuntu2.4 deb libpciaccess0 0.16-3 deb libpcre2-8-0 10.39-3ubuntu0.1 deb libpcre3 2:8.39-13ubuntu0.22.04.1 deb libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2 deb +libprocps8 2:3.3.17-6ubuntu2.1 deb libpsl5 0.21.0-1.2build2 deb libreadline8 8.1.2-1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb @@ -499,15 +499,15 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.10 deb -libstdc++6 12.1.0-2ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.9 deb +libssl3 3.0.2-0ubuntu1.15 deb +libstdc++6 12.3.0-1ubuntu1~22.04 deb +libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb libtheora0 1.1.1+dfsg.1-15ubuntu4 deb libtinfo6 6.3-2ubuntu0.1 deb libtirpc-common 1.3.2-2ubuntu0.1 deb libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.9 deb +libudev1 249.11-0ubuntu3.12 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb libuuid1 2.37.2-4ubuntu3 deb @@ -543,7 +543,7 @@ libzstd1 1.4.8+dfsg-3b libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb locales 2.35-0ubuntu3.6 deb -login 1:4.8.1-2ubuntu2.1 deb +login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb @@ -557,17 +557,17 @@ netcat-openbsd 1.218-4ubuntu netstandard 6.0.922.41905 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb -passwd 1:4.8.1-2ubuntu2.1 deb -perl-base 5.34.0-3ubuntu1.2 deb +passwd 1:4.8.1-2ubuntu2.2 deb +perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2 deb +procps 2:3.3.17-6ubuntu2.1 deb prometheus-net.DotNetRuntime 4.2.4.0 dotnet publicsuffix 20211207.1025-1 deb readline-common 8.1.2-1 deb sed 4.8-1ubuntu2 deb sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb +tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb tzdata 2024a-0ubuntu0.22.04 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb From e323a25e5d4ca032aa1ee0c671c4bdca9f868c1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Apr 2024 14:11:32 +0000 Subject: [PATCH 1968/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9b234bd..1333b12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,8 +11,8 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.2.3.0 dotnet -EasyCaching.Core 1.9.1.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.3.1.0 dotnet +EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.1 dotnet ICU4N 60.1.0 dotnet @@ -201,12 +201,12 @@ Serilog.Sinks.Debug 2.0.0.0 Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet +ShimSkiaSharp 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet SkiaSharp 2.88.7.0 dotnet SkiaSharp.HarfBuzz 2.88.7.0 dotnet -Svg.Custom 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet -Svg.Model 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet -Svg.Skia 1.0.0.16+96952630c0475f24ea6b674ed7afbb9e857ed9ec dotnet +Svg.Custom 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet +Svg.Model 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet +Svg.Skia 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-5-jammy deb -jellyfin-server 2024032505+ubu2204 deb -jellyfin-web 2024032505+ubu2204 deb +jellyfin-server 2024040113+ubu2204 deb +jellyfin-web 2024040113+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 3d20508ddb9a94f04e82827468edfda56c535167 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Apr 2024 06:14:55 +0000 Subject: [PATCH 1969/2257] 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 1333b12..aa9d4d4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -384,18 +384,18 @@ TagLib# 2.3.0.0 UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 8.0.324.11423 dotnet adduser 3.118ubuntu5 deb -apt 2.4.11 deb -apt-utils 2.4.11 deb +apt 2.4.12 deb +apt-utils 2.4.12 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb +bsdutils 1:2.37.2-4ubuntu3.3 deb ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1.1 deb +coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.15 deb +curl 7.81.0-1ubuntu1.16 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -422,20 +422,20 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-5-jammy deb -jellyfin-server 2024040113+ubu2204 deb -jellyfin-web 2024040113+ubu2204 deb +jellyfin-server 2024040805+ubu2204 deb +jellyfin-web 2024040805+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb +libapt-pkg6.0 2.4.12 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb libbdplus0 0.2.0-1 deb -libblkid1 2.37.2-4ubuntu3 deb +libblkid1 2.37.2-4ubuntu3.3 deb libbluray2 1:1.3.1-1 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb @@ -447,7 +447,7 @@ libcap-ng0 0.7.9-2.2buil libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb +libcurl4 7.81.0-1ubuntu1.16 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -488,7 +488,7 @@ libllvm15 1:15.0.7-0ubu liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb +libmount1 2.37.2-4ubuntu3.3 deb libmp3lame0 3.100-3build2 deb libmpg123-0 1.29.3-1build1 deb libncurses6 6.3-2ubuntu0.1 deb @@ -525,7 +525,7 @@ libselinux1 3.3-1build2 libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb +libsmartcols1 2.37.2-4ubuntu3.3 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb @@ -540,7 +540,7 @@ libtirpc3 1.3.2-2ubuntu libudev1 249.11-0ubuntu3.12 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb +libuuid1 2.37.2-4ubuntu3.3 deb libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb @@ -577,7 +577,7 @@ logsave 1.46.5-2ubunt lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3 deb +mount 2.37.2-4ubuntu3.3 deb mscorlib 8.0.324.11423 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb @@ -603,7 +603,7 @@ tzdata 2024a-0ubuntu ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb +util-linux 2.37.2-4ubuntu3.3 deb xdg-user-dirs 0.17-2ubuntu4 deb zlib.net 1.0.6.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 0a8d2013169c2bc2a4af4cc87ed4ee85bf604d91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Apr 2024 12:42:34 +0000 Subject: [PATCH 1970/2257] 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 460bb58..3cb9654 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -357,18 +357,18 @@ TagLib# 2.3.0.0 UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 6.0.922.41905 dotnet adduser 3.118ubuntu5 deb -apt 2.4.11 deb -apt-utils 2.4.11 deb +apt 2.4.12 deb +apt-utils 2.4.12 deb at 3.2.5-1ubuntu1 deb base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3 deb +bsdutils 1:2.37.2-4ubuntu3.3 deb ca-certificates 20230311ubuntu0.22.04.1 deb -coreutils 8.32-4.1ubuntu1.1 deb +coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.15 deb +curl 7.81.0-1ubuntu1.16 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -400,13 +400,13 @@ jellyfin-server 10.8.13-1 jellyfin-web 10.8.13-1 deb jq 1.6-2.1ubuntu3 deb libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.11 deb +libapt-pkg6.0 2.4.12 deb libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3 deb +libblkid1 2.37.2-4ubuntu3.3 deb libbluray2 1:1.3.1-1 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb @@ -418,7 +418,7 @@ libcap-ng0 0.7.9-2.2buil libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.15 deb +libcurl4 7.81.0-1ubuntu1.16 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -458,7 +458,7 @@ libllvm15 1:15.0.7-0ubu liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3 deb +libmount1 2.37.2-4ubuntu3.3 deb libmp3lame0 3.100-3build2 deb libmpg123-0 1.29.3-1build1 deb libncurses6 6.3-2ubuntu0.1 deb @@ -495,7 +495,7 @@ libselinux1 3.3-1build2 libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3 deb +libsmartcols1 2.37.2-4ubuntu3.3 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb @@ -510,7 +510,7 @@ libtirpc3 1.3.2-2ubuntu libudev1 249.11-0ubuntu3.12 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3 deb +libuuid1 2.37.2-4ubuntu3.3 deb libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb @@ -548,7 +548,7 @@ logsave 1.46.5-2ubunt lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3 deb +mount 2.37.2-4ubuntu3.3 deb mscorlib 6.0.922.41905 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb @@ -572,7 +572,7 @@ tzdata 2024a-0ubuntu ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3 deb +util-linux 2.37.2-4ubuntu3.3 deb xmlstarlet 1.6.1-2.1 deb zlib.net 1.0.5.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 804ab205f884ca31f8b2a16d1a80bff79f81730b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Apr 2024 06:15:17 +0000 Subject: [PATCH 1971/2257] Bot Updating Package Versions --- package_versions.txt | 572 +++++++++++++++++++++---------------------- 1 file changed, 286 insertions(+), 286 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index aa9d4d4..a33e8c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,10 +11,10 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.3.1.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.4.1.0 dotnet EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet -HarfBuzzSharp 7.3.0.1 dotnet +HarfBuzzSharp 7.3.0.2 dotnet ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet @@ -31,99 +31,99 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.324.11615 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authentication 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authorization 8.0.324.11615 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.324.11615 dotnet -Microsoft.AspNetCore.Components 8.0.324.11615 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.324.11615 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.324.11615 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.324.11615 dotnet -Microsoft.AspNetCore.Components.Server 8.0.324.11615 dotnet -Microsoft.AspNetCore.Components.Web 8.0.324.11615 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.324.11615 dotnet -Microsoft.AspNetCore.Cors 8.0.324.11615 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.324.11615 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.324.11615 dotnet -Microsoft.AspNetCore.DataProtection 8.0.324.11615 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.324.11615 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.324.11615 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.324.11615 dotnet -Microsoft.AspNetCore.Hosting 8.0.324.11615 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http.Features 8.0.324.11615 dotnet -Microsoft.AspNetCore.Http.Results 8.0.324.11615 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.324.11615 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.324.11615 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.324.11615 dotnet -Microsoft.AspNetCore.Identity 8.0.324.11615 dotnet -Microsoft.AspNetCore.Localization 8.0.324.11615 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.324.11615 dotnet -Microsoft.AspNetCore.Metadata 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.324.11615 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.324.11615 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.324.11615 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.324.11615 dotnet -Microsoft.AspNetCore.Razor 8.0.324.11615 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.324.11615 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.324.11615 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.324.11615 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.324.11615 dotnet -Microsoft.AspNetCore.Rewrite 8.0.324.11615 dotnet -Microsoft.AspNetCore.Routing 8.0.324.11615 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.324.11615 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.324.11615 dotnet -Microsoft.AspNetCore.Session 8.0.324.11615 dotnet -Microsoft.AspNetCore.SignalR 8.0.324.11615 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.324.11615 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.324.11615 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.324.11615 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.324.11615 dotnet -Microsoft.AspNetCore.WebSockets 8.0.324.11615 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.324.11615 dotnet +Microsoft.AspNetCore 8.0.424.17014 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authorization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Server 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Web 8.0.424.17014 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.424.17014 dotnet +Microsoft.AspNetCore.Cors 8.0.424.17014 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.424.17014 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.424.17014 dotnet +Microsoft.AspNetCore.DataProtection 8.0.424.17014 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.424.17014 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.424.17014 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.424.17014 dotnet +Microsoft.AspNetCore.Hosting 8.0.424.17014 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Features 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Results 8.0.424.17014 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.424.17014 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.424.17014 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.424.17014 dotnet +Microsoft.AspNetCore.Identity 8.0.424.17014 dotnet +Microsoft.AspNetCore.Localization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.424.17014 dotnet +Microsoft.AspNetCore.Metadata 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.424.17014 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.424.17014 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.424.17014 dotnet +Microsoft.AspNetCore.Razor 8.0.424.17014 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.424.17014 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.424.17014 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.424.17014 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.424.17014 dotnet +Microsoft.AspNetCore.Rewrite 8.0.424.17014 dotnet +Microsoft.AspNetCore.Routing 8.0.424.17014 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.424.17014 dotnet +Microsoft.AspNetCore.Session 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.424.17014 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.424.17014 dotnet +Microsoft.AspNetCore.WebSockets 8.0.424.17014 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.424.17014 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.324.11423 dotnet -Microsoft.Data.Sqlite 8.0.324.11510 dotnet -Microsoft.EntityFrameworkCore 8.0.324.11510 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.324.11510 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.324.11510 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.324.11510 dotnet +Microsoft.CSharp 8.0.424.16909 dotnet +Microsoft.Data.Sqlite 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.424.16902 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -134,7 +134,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.324.11615 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.424.17014 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -142,22 +142,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.324.11615 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.324.11615 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.324.11615 dotnet -Microsoft.Extensions.Features 8.0.324.11615 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.424.17014 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.424.17014 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.424.17014 dotnet +Microsoft.Extensions.Features 8.0.424.17014 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.324.11615 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.424.17014 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.324.11615 dotnet -Microsoft.Extensions.Identity.Stores 8.0.324.11615 dotnet -Microsoft.Extensions.Localization 8.0.324.11615 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.324.11615 dotnet +Microsoft.Extensions.Identity.Core 8.0.424.17014 dotnet +Microsoft.Extensions.Identity.Stores 8.0.424.17014 dotnet +Microsoft.Extensions.Localization 8.0.424.17014 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.424.17014 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,20 +166,20 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.324.11615 dotnet +Microsoft.Extensions.ObjectPool 8.0.424.17014 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.324.11615 dotnet -Microsoft.JSInterop 8.0.324.11615 dotnet -Microsoft.Net.Http.Headers 8.0.324.11615 dotnet +Microsoft.Extensions.WebEncoders 8.0.424.17014 dotnet +Microsoft.JSInterop 8.0.424.17014 dotnet +Microsoft.Net.Http.Headers 8.0.424.17014 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.324.11423 dotnet -Microsoft.VisualBasic.Core 13.0.324.11423 dotnet -Microsoft.Win32.Primitives 8.0.324.11423 dotnet -Microsoft.Win32.Registry 8.0.324.11423 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +Microsoft.VisualBasic 8.0.424.16909 dotnet +Microsoft.VisualBasic.Core 13.0.424.16909 dotnet +Microsoft.Win32.Primitives 8.0.424.16909 dotnet +Microsoft.Win32.Registry 8.0.424.16909 dotnet +Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet @@ -201,188 +201,188 @@ Serilog.Sinks.Debug 2.0.0.0 Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet -SkiaSharp 2.88.7.0 dotnet -SkiaSharp.HarfBuzz 2.88.7.0 dotnet -Svg.Custom 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet -Svg.Model 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet -Svg.Skia 1.0.0.17+f3472d895d7a8ef14e5ce985cc37a09e4318fb50 dotnet +ShimSkiaSharp 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +SkiaSharp 2.88.8.0 dotnet +SkiaSharp.HarfBuzz 2.88.8.0 dotnet +Svg.Custom 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +Svg.Model 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +Svg.Skia 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.324.11423 dotnet -System.AppContext 8.0.324.11423 dotnet -System.Buffers 8.0.324.11423 dotnet -System.Collections 8.0.324.11423 dotnet -System.Collections.Concurrent 8.0.324.11423 dotnet -System.Collections.Immutable 8.0.324.11423 dotnet -System.Collections.NonGeneric 8.0.324.11423 dotnet -System.Collections.Specialized 8.0.324.11423 dotnet -System.ComponentModel 8.0.324.11423 dotnet -System.ComponentModel.Annotations 8.0.324.11423 dotnet -System.ComponentModel.DataAnnotations 8.0.324.11423 dotnet -System.ComponentModel.EventBasedAsync 8.0.324.11423 dotnet -System.ComponentModel.Primitives 8.0.324.11423 dotnet -System.ComponentModel.TypeConverter 8.0.324.11423 dotnet -System.Configuration 8.0.324.11423 dotnet -System.Console 8.0.324.11423 dotnet -System.Core 8.0.324.11423 dotnet -System.Data 8.0.324.11423 dotnet -System.Data.Common 8.0.324.11423 dotnet -System.Data.DataSetExtensions 8.0.324.11423 dotnet -System.Diagnostics.Contracts 8.0.324.11423 dotnet -System.Diagnostics.Debug 8.0.324.11423 dotnet -System.Diagnostics.DiagnosticSource 8.0.324.11423 dotnet +System 8.0.424.16909 dotnet +System.AppContext 8.0.424.16909 dotnet +System.Buffers 8.0.424.16909 dotnet +System.Collections 8.0.424.16909 dotnet +System.Collections.Concurrent 8.0.424.16909 dotnet +System.Collections.Immutable 8.0.424.16909 dotnet +System.Collections.NonGeneric 8.0.424.16909 dotnet +System.Collections.Specialized 8.0.424.16909 dotnet +System.ComponentModel 8.0.424.16909 dotnet +System.ComponentModel.Annotations 8.0.424.16909 dotnet +System.ComponentModel.DataAnnotations 8.0.424.16909 dotnet +System.ComponentModel.EventBasedAsync 8.0.424.16909 dotnet +System.ComponentModel.Primitives 8.0.424.16909 dotnet +System.ComponentModel.TypeConverter 8.0.424.16909 dotnet +System.Configuration 8.0.424.16909 dotnet +System.Console 8.0.424.16909 dotnet +System.Core 8.0.424.16909 dotnet +System.Data 8.0.424.16909 dotnet +System.Data.Common 8.0.424.16909 dotnet +System.Data.DataSetExtensions 8.0.424.16909 dotnet +System.Diagnostics.Contracts 8.0.424.16909 dotnet +System.Diagnostics.Debug 8.0.424.16909 dotnet +System.Diagnostics.DiagnosticSource 8.0.424.16909 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.324.11423 dotnet -System.Diagnostics.Process 8.0.324.11423 dotnet -System.Diagnostics.StackTrace 8.0.324.11423 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.324.11423 dotnet -System.Diagnostics.Tools 8.0.324.11423 dotnet -System.Diagnostics.TraceSource 8.0.324.11423 dotnet -System.Diagnostics.Tracing 8.0.324.11423 dotnet -System.Drawing 8.0.324.11423 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 8.0.324.11423 dotnet -System.Dynamic.Runtime 8.0.324.11423 dotnet -System.Formats.Asn1 8.0.324.11423 dotnet -System.Formats.Tar 8.0.324.11423 dotnet -System.Globalization 8.0.324.11423 dotnet -System.Globalization.Calendars 8.0.324.11423 dotnet -System.Globalization.Extensions 8.0.324.11423 dotnet -System.IO 8.0.324.11423 dotnet -System.IO.Compression 8.0.324.11423 dotnet -System.IO.Compression.Brotli 8.0.324.11423 dotnet -System.IO.Compression.FileSystem 8.0.324.11423 dotnet -System.IO.Compression.ZipFile 8.0.324.11423 dotnet -System.IO.FileSystem 8.0.324.11423 dotnet -System.IO.FileSystem.AccessControl 8.0.324.11423 dotnet -System.IO.FileSystem.DriveInfo 8.0.324.11423 dotnet -System.IO.FileSystem.Primitives 8.0.324.11423 dotnet -System.IO.FileSystem.Watcher 8.0.324.11423 dotnet +System.Diagnostics.FileVersionInfo 8.0.424.16909 dotnet +System.Diagnostics.Process 8.0.424.16909 dotnet +System.Diagnostics.StackTrace 8.0.424.16909 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.424.16909 dotnet +System.Diagnostics.Tools 8.0.424.16909 dotnet +System.Diagnostics.TraceSource 8.0.424.16909 dotnet +System.Diagnostics.Tracing 8.0.424.16909 dotnet +System.Drawing 8.0.424.16909 dotnet +System.Drawing.Common 7.0.22.51805 dotnet +System.Drawing.Primitives 8.0.424.16909 dotnet +System.Dynamic.Runtime 8.0.424.16909 dotnet +System.Formats.Asn1 8.0.424.16909 dotnet +System.Formats.Tar 8.0.424.16909 dotnet +System.Globalization 8.0.424.16909 dotnet +System.Globalization.Calendars 8.0.424.16909 dotnet +System.Globalization.Extensions 8.0.424.16909 dotnet +System.IO 8.0.424.16909 dotnet +System.IO.Compression 8.0.424.16909 dotnet +System.IO.Compression.Brotli 8.0.424.16909 dotnet +System.IO.Compression.FileSystem 8.0.424.16909 dotnet +System.IO.Compression.ZipFile 8.0.424.16909 dotnet +System.IO.FileSystem 8.0.424.16909 dotnet +System.IO.FileSystem.AccessControl 8.0.424.16909 dotnet +System.IO.FileSystem.DriveInfo 8.0.424.16909 dotnet +System.IO.FileSystem.Primitives 8.0.424.16909 dotnet +System.IO.FileSystem.Watcher 8.0.424.16909 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.324.11423 dotnet -System.IO.MemoryMappedFiles 8.0.324.11423 dotnet +System.IO.IsolatedStorage 8.0.424.16909 dotnet +System.IO.MemoryMappedFiles 8.0.424.16909 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.324.11423 dotnet -System.IO.Pipes.AccessControl 8.0.324.11423 dotnet -System.IO.UnmanagedMemoryStream 8.0.324.11423 dotnet -System.Linq 8.0.324.11423 dotnet +System.IO.Pipes 8.0.424.16909 dotnet +System.IO.Pipes.AccessControl 8.0.424.16909 dotnet +System.IO.UnmanagedMemoryStream 8.0.424.16909 dotnet +System.Linq 8.0.424.16909 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.324.11423 dotnet -System.Linq.Parallel 8.0.324.11423 dotnet -System.Linq.Queryable 8.0.324.11423 dotnet -System.Memory 8.0.324.11423 dotnet -System.Net 8.0.324.11423 dotnet -System.Net.Http 8.0.324.11423 dotnet -System.Net.Http.Json 8.0.324.11423 dotnet -System.Net.HttpListener 8.0.324.11423 dotnet -System.Net.Mail 8.0.324.11423 dotnet -System.Net.NameResolution 8.0.324.11423 dotnet -System.Net.NetworkInformation 8.0.324.11423 dotnet -System.Net.Ping 8.0.324.11423 dotnet -System.Net.Primitives 8.0.324.11423 dotnet -System.Net.Quic 8.0.324.11423 dotnet -System.Net.Requests 8.0.324.11423 dotnet -System.Net.Security 8.0.324.11423 dotnet -System.Net.ServicePoint 8.0.324.11423 dotnet -System.Net.Sockets 8.0.324.11423 dotnet -System.Net.WebClient 8.0.324.11423 dotnet -System.Net.WebHeaderCollection 8.0.324.11423 dotnet -System.Net.WebProxy 8.0.324.11423 dotnet -System.Net.WebSockets 8.0.324.11423 dotnet -System.Net.WebSockets.Client 8.0.324.11423 dotnet -System.Numerics 8.0.324.11423 dotnet -System.Numerics.Vectors 8.0.324.11423 dotnet -System.ObjectModel 8.0.324.11423 dotnet -System.Private.CoreLib 8.0.324.11423 dotnet -System.Private.DataContractSerialization 8.0.324.11423 dotnet -System.Private.Uri 8.0.324.11423 dotnet -System.Private.Xml 8.0.324.11423 dotnet -System.Private.Xml.Linq 8.0.324.11423 dotnet -System.Reflection 8.0.324.11423 dotnet -System.Reflection.DispatchProxy 8.0.324.11423 dotnet -System.Reflection.Emit 8.0.324.11423 dotnet -System.Reflection.Emit.ILGeneration 8.0.324.11423 dotnet -System.Reflection.Emit.Lightweight 8.0.324.11423 dotnet -System.Reflection.Extensions 8.0.324.11423 dotnet -System.Reflection.Metadata 8.0.324.11423 dotnet -System.Reflection.Primitives 8.0.324.11423 dotnet -System.Reflection.TypeExtensions 8.0.324.11423 dotnet -System.Resources.Reader 8.0.324.11423 dotnet -System.Resources.ResourceManager 8.0.324.11423 dotnet -System.Resources.Writer 8.0.324.11423 dotnet -System.Runtime 8.0.324.11423 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.324.11423 dotnet -System.Runtime.CompilerServices.VisualC 8.0.324.11423 dotnet -System.Runtime.Extensions 8.0.324.11423 dotnet -System.Runtime.Handles 8.0.324.11423 dotnet -System.Runtime.InteropServices 8.0.324.11423 dotnet -System.Runtime.InteropServices.JavaScript 8.0.324.11423 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.324.11423 dotnet -System.Runtime.Intrinsics 8.0.324.11423 dotnet -System.Runtime.Loader 8.0.324.11423 dotnet -System.Runtime.Numerics 8.0.324.11423 dotnet -System.Runtime.Serialization 8.0.324.11423 dotnet -System.Runtime.Serialization.Formatters 8.0.324.11423 dotnet -System.Runtime.Serialization.Json 8.0.324.11423 dotnet -System.Runtime.Serialization.Primitives 8.0.324.11423 dotnet -System.Runtime.Serialization.Xml 8.0.324.11423 dotnet -System.Security 8.0.324.11423 dotnet -System.Security.AccessControl 8.0.324.11423 dotnet -System.Security.Claims 8.0.324.11423 dotnet -System.Security.Cryptography 8.0.324.11423 dotnet -System.Security.Cryptography.Algorithms 8.0.324.11423 dotnet -System.Security.Cryptography.Cng 8.0.324.11423 dotnet -System.Security.Cryptography.Csp 8.0.324.11423 dotnet -System.Security.Cryptography.Encoding 8.0.324.11423 dotnet -System.Security.Cryptography.OpenSsl 8.0.324.11423 dotnet +System.Linq.Expressions 8.0.424.16909 dotnet +System.Linq.Parallel 8.0.424.16909 dotnet +System.Linq.Queryable 8.0.424.16909 dotnet +System.Memory 8.0.424.16909 dotnet +System.Net 8.0.424.16909 dotnet +System.Net.Http 8.0.424.16909 dotnet +System.Net.Http.Json 8.0.424.16909 dotnet +System.Net.HttpListener 8.0.424.16909 dotnet +System.Net.Mail 8.0.424.16909 dotnet +System.Net.NameResolution 8.0.424.16909 dotnet +System.Net.NetworkInformation 8.0.424.16909 dotnet +System.Net.Ping 8.0.424.16909 dotnet +System.Net.Primitives 8.0.424.16909 dotnet +System.Net.Quic 8.0.424.16909 dotnet +System.Net.Requests 8.0.424.16909 dotnet +System.Net.Security 8.0.424.16909 dotnet +System.Net.ServicePoint 8.0.424.16909 dotnet +System.Net.Sockets 8.0.424.16909 dotnet +System.Net.WebClient 8.0.424.16909 dotnet +System.Net.WebHeaderCollection 8.0.424.16909 dotnet +System.Net.WebProxy 8.0.424.16909 dotnet +System.Net.WebSockets 8.0.424.16909 dotnet +System.Net.WebSockets.Client 8.0.424.16909 dotnet +System.Numerics 8.0.424.16909 dotnet +System.Numerics.Vectors 8.0.424.16909 dotnet +System.ObjectModel 8.0.424.16909 dotnet +System.Private.CoreLib 8.0.424.16909 dotnet +System.Private.DataContractSerialization 8.0.424.16909 dotnet +System.Private.Uri 8.0.424.16909 dotnet +System.Private.Xml 8.0.424.16909 dotnet +System.Private.Xml.Linq 8.0.424.16909 dotnet +System.Reflection 8.0.424.16909 dotnet +System.Reflection.DispatchProxy 8.0.424.16909 dotnet +System.Reflection.Emit 8.0.424.16909 dotnet +System.Reflection.Emit.ILGeneration 8.0.424.16909 dotnet +System.Reflection.Emit.Lightweight 8.0.424.16909 dotnet +System.Reflection.Extensions 8.0.424.16909 dotnet +System.Reflection.Metadata 8.0.424.16909 dotnet +System.Reflection.Primitives 8.0.424.16909 dotnet +System.Reflection.TypeExtensions 8.0.424.16909 dotnet +System.Resources.Reader 8.0.424.16909 dotnet +System.Resources.ResourceManager 8.0.424.16909 dotnet +System.Resources.Writer 8.0.424.16909 dotnet +System.Runtime 8.0.424.16909 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.424.16909 dotnet +System.Runtime.CompilerServices.VisualC 8.0.424.16909 dotnet +System.Runtime.Extensions 8.0.424.16909 dotnet +System.Runtime.Handles 8.0.424.16909 dotnet +System.Runtime.InteropServices 8.0.424.16909 dotnet +System.Runtime.InteropServices.JavaScript 8.0.424.16909 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.424.16909 dotnet +System.Runtime.Intrinsics 8.0.424.16909 dotnet +System.Runtime.Loader 8.0.424.16909 dotnet +System.Runtime.Numerics 8.0.424.16909 dotnet +System.Runtime.Serialization 8.0.424.16909 dotnet +System.Runtime.Serialization.Formatters 8.0.424.16909 dotnet +System.Runtime.Serialization.Json 8.0.424.16909 dotnet +System.Runtime.Serialization.Primitives 8.0.424.16909 dotnet +System.Runtime.Serialization.Xml 8.0.424.16909 dotnet +System.Security 8.0.424.16909 dotnet +System.Security.AccessControl 8.0.424.16909 dotnet +System.Security.Claims 8.0.424.16909 dotnet +System.Security.Cryptography 8.0.424.16909 dotnet +System.Security.Cryptography.Algorithms 8.0.424.16909 dotnet +System.Security.Cryptography.Cng 8.0.424.16909 dotnet +System.Security.Cryptography.Csp 8.0.424.16909 dotnet +System.Security.Cryptography.Encoding 8.0.424.16909 dotnet +System.Security.Cryptography.OpenSsl 8.0.424.16909 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.324.11423 dotnet -System.Security.Cryptography.X509Certificates 8.0.324.11423 dotnet +System.Security.Cryptography.Primitives 8.0.424.16909 dotnet +System.Security.Cryptography.X509Certificates 8.0.424.16909 dotnet System.Security.Cryptography.Xml 8.0.23.53103 dotnet -System.Security.Principal 8.0.324.11423 dotnet -System.Security.Principal.Windows 8.0.324.11423 dotnet -System.Security.SecureString 8.0.324.11423 dotnet -System.ServiceModel.Web 8.0.324.11423 dotnet -System.ServiceProcess 8.0.324.11423 dotnet -System.Text.Encoding 8.0.324.11423 dotnet -System.Text.Encoding.CodePages 8.0.324.11423 dotnet -System.Text.Encoding.Extensions 8.0.324.11423 dotnet -System.Text.Encodings.Web 8.0.324.11423 dotnet -System.Text.Json 8.0.324.11423 dotnet -System.Text.RegularExpressions 8.0.324.11423 dotnet -System.Threading 8.0.324.11423 dotnet -System.Threading.Channels 8.0.324.11423 dotnet -System.Threading.Overlapped 8.0.324.11423 dotnet +System.Security.Principal 8.0.424.16909 dotnet +System.Security.Principal.Windows 8.0.424.16909 dotnet +System.Security.SecureString 8.0.424.16909 dotnet +System.ServiceModel.Web 8.0.424.16909 dotnet +System.ServiceProcess 8.0.424.16909 dotnet +System.Text.Encoding 8.0.424.16909 dotnet +System.Text.Encoding.CodePages 8.0.424.16909 dotnet +System.Text.Encoding.Extensions 8.0.424.16909 dotnet +System.Text.Encodings.Web 8.0.424.16909 dotnet +System.Text.Json 8.0.424.16909 dotnet +System.Text.RegularExpressions 8.0.424.16909 dotnet +System.Threading 8.0.424.16909 dotnet +System.Threading.Channels 8.0.424.16909 dotnet +System.Threading.Overlapped 8.0.424.16909 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.324.11423 dotnet -System.Threading.Tasks.Dataflow 8.0.324.11423 dotnet -System.Threading.Tasks.Extensions 8.0.324.11423 dotnet -System.Threading.Tasks.Parallel 8.0.324.11423 dotnet -System.Threading.Thread 8.0.324.11423 dotnet -System.Threading.ThreadPool 8.0.324.11423 dotnet -System.Threading.Timer 8.0.324.11423 dotnet -System.Transactions 8.0.324.11423 dotnet -System.Transactions.Local 8.0.324.11423 dotnet -System.ValueTuple 8.0.324.11423 dotnet -System.Web 8.0.324.11423 dotnet -System.Web.HttpUtility 8.0.324.11423 dotnet -System.Windows 8.0.324.11423 dotnet -System.Xml 8.0.324.11423 dotnet -System.Xml.Linq 8.0.324.11423 dotnet -System.Xml.ReaderWriter 8.0.324.11423 dotnet -System.Xml.Serialization 8.0.324.11423 dotnet -System.Xml.XDocument 8.0.324.11423 dotnet -System.Xml.XPath 8.0.324.11423 dotnet -System.Xml.XPath.XDocument 8.0.324.11423 dotnet -System.Xml.XmlDocument 8.0.324.11423 dotnet -System.Xml.XmlSerializer 8.0.324.11423 dotnet +System.Threading.Tasks 8.0.424.16909 dotnet +System.Threading.Tasks.Dataflow 8.0.424.16909 dotnet +System.Threading.Tasks.Extensions 8.0.424.16909 dotnet +System.Threading.Tasks.Parallel 8.0.424.16909 dotnet +System.Threading.Thread 8.0.424.16909 dotnet +System.Threading.ThreadPool 8.0.424.16909 dotnet +System.Threading.Timer 8.0.424.16909 dotnet +System.Transactions 8.0.424.16909 dotnet +System.Transactions.Local 8.0.424.16909 dotnet +System.ValueTuple 8.0.424.16909 dotnet +System.Web 8.0.424.16909 dotnet +System.Web.HttpUtility 8.0.424.16909 dotnet +System.Windows 8.0.424.16909 dotnet +System.Xml 8.0.424.16909 dotnet +System.Xml.Linq 8.0.424.16909 dotnet +System.Xml.ReaderWriter 8.0.424.16909 dotnet +System.Xml.Serialization 8.0.424.16909 dotnet +System.Xml.XDocument 8.0.424.16909 dotnet +System.Xml.XPath 8.0.424.16909 dotnet +System.Xml.XPath.XDocument 8.0.424.16909 dotnet +System.Xml.XmlDocument 8.0.424.16909 dotnet +System.Xml.XmlSerializer 8.0.424.16909 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.324.11423 dotnet +WindowsBase 8.0.424.16909 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-5-jammy deb -jellyfin-server 2024040805+ubu2204 deb -jellyfin-web 2024040805+ubu2204 deb +jellyfin-server 2024041505+ubu2204 deb +jellyfin-web 2024041505+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -519,7 +519,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.13.2 dotnet +libse 4.0.5.1 dotnet libseccomp2 2.5.3-2ubuntu2 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb @@ -578,12 +578,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.3 deb -mscorlib 8.0.324.11423 dotnet +mscorlib 8.0.424.16909 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.324.11423 dotnet +netstandard 8.0.424.16909 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.2 deb From 1b4ed97568d1b8e9acf361e9ddc33552a8ae4bb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Apr 2024 06:14:48 +0000 Subject: [PATCH 1972/2257] 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 a33e8c5..9b28e97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -AsyncKeyedLock 6.3.4.0 dotnet +AsyncKeyedLock 6.4.2.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.4.1.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.4.2.0 dotnet EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.2 dotnet @@ -391,7 +391,7 @@ base-files 12ubuntu4.6 base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3.3 deb +bsdutils 1:2.37.2-4ubuntu3.4 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-5-jammy deb -jellyfin-server 2024041505+ubu2204 deb -jellyfin-web 2024041505+ubu2204 deb +jellyfin-server 2024042205+ubu2204 deb +jellyfin-web 2024042205+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -435,7 +435,7 @@ libattr1 1:2.5.1-1buil libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb libbdplus0 0.2.0-1 deb -libblkid1 2.37.2-4ubuntu3.3 deb +libblkid1 2.37.2-4ubuntu3.4 deb libbluray2 1:1.3.1-1 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb @@ -468,7 +468,7 @@ libgcrypt20 1.9.4-3ubuntu libglib2.0-0 2.72.4-0ubuntu2.2 deb libglib2.0-data 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.4 deb +libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb @@ -488,7 +488,7 @@ libllvm15 1:15.0.7-0ubu liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3.3 deb +libmount1 2.37.2-4ubuntu3.4 deb libmp3lame0 3.100-3build2 deb libmpg123-0 1.29.3-1build1 deb libncurses6 6.3-2ubuntu0.1 deb @@ -525,7 +525,7 @@ libselinux1 3.3-1build2 libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3.3 deb +libsmartcols1 2.37.2-4ubuntu3.4 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb @@ -540,7 +540,7 @@ libtirpc3 1.3.2-2ubuntu libudev1 249.11-0ubuntu3.12 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3.3 deb +libuuid1 2.37.2-4ubuntu3.4 deb libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb @@ -577,7 +577,7 @@ logsave 1.46.5-2ubunt lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3.3 deb +mount 2.37.2-4ubuntu3.4 deb mscorlib 8.0.424.16909 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb @@ -603,7 +603,7 @@ tzdata 2024a-0ubuntu ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3.3 deb +util-linux 2.37.2-4ubuntu3.4 deb xdg-user-dirs 0.17-2ubuntu4 deb zlib.net 1.0.6.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From e720c5d7648617d9c5f8077c6d0422bd32cd6249 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Apr 2024 16:13:02 +0000 Subject: [PATCH 1973/2257] 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 9b28e97..17a1f29 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-5-jammy deb -jellyfin-server 2024042205+ubu2204 deb -jellyfin-web 2024042205+ubu2204 deb +jellyfin-server 2024042215+ubu2204 deb +jellyfin-web 2024042215+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 3b2f303316d20fabc9bb7a812ad1c734405dc436 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Apr 2024 12:44:43 +0000 Subject: [PATCH 1974/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3cb9654..f4e7471 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -364,7 +364,7 @@ base-files 12ubuntu4.6 base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1.1 deb bash 5.1.16 binary -bsdutils 1:2.37.2-4ubuntu3.3 deb +bsdutils 1:2.37.2-4ubuntu3.4 deb ca-certificates 20230311ubuntu0.22.04.1 deb coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb @@ -406,7 +406,7 @@ libassuan0 2.5.5-1build1 libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3.3 deb +libblkid1 2.37.2-4ubuntu3.4 deb libbluray2 1:1.3.1-1 deb libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb @@ -438,7 +438,7 @@ libgcc-s1 12.3.0-1ubunt libgcrypt20 1.9.4-3ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.4 deb +libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb libgraphite2-3 1.3.14-1build2 deb libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb @@ -458,7 +458,7 @@ libllvm15 1:15.0.7-0ubu liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3.3 deb +libmount1 2.37.2-4ubuntu3.4 deb libmp3lame0 3.100-3build2 deb libmpg123-0 1.29.3-1build1 deb libncurses6 6.3-2ubuntu0.1 deb @@ -495,7 +495,7 @@ libselinux1 3.3-1build2 libsemanage-common 3.3-1build2 deb libsemanage2 3.3-1build2 deb libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3.3 deb +libsmartcols1 2.37.2-4ubuntu3.4 deb libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb @@ -510,7 +510,7 @@ libtirpc3 1.3.2-2ubuntu libudev1 249.11-0ubuntu3.12 deb libudfread0 1.1.2-1 deb libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3.3 deb +libuuid1 2.37.2-4ubuntu3.4 deb libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb @@ -548,7 +548,7 @@ logsave 1.46.5-2ubunt lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3.3 deb +mount 2.37.2-4ubuntu3.4 deb mscorlib 6.0.922.41905 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb @@ -572,7 +572,7 @@ tzdata 2024a-0ubuntu ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3.3 deb +util-linux 2.37.2-4ubuntu3.4 deb xmlstarlet 1.6.1-2.1 deb zlib.net 1.0.5.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From e86fabc4dfb7a7847d95286d3287bfa4607ad8a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Apr 2024 12:41:14 +0000 Subject: [PATCH 1975/2257] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f9043cd..f03a42d 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 07da3eedec8f24c9ed0b04ba471e57fa3f982f3c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Apr 2024 12:41:35 +0000 Subject: [PATCH 1976/2257] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3995451..4f32a02 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 master --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME} - docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true -e PUID=$(id -u) -e PGID=$(id -g) ghcr.io/linuxserver/jenkins-builder:latest echo "Starting Stage 1 - Jenkinsfile update" if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then mkdir -p ${TEMPDIR}/repo @@ -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 a0fc72b1fc8c51bbff373151fa808ebedc46194e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Apr 2024 12:45:02 +0000 Subject: [PATCH 1977/2257] 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 f4e7471..45f56bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -411,8 +411,8 @@ libbluray2 1:1.3.1-1 libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.6 deb -libc6 2.35-0ubuntu3.6 deb +libc-bin 2.35-0ubuntu3.7 deb +libc6 2.35-0ubuntu3.7 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -542,7 +542,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.6 deb +locales 2.35-0ubuntu3.7 deb login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From 7dca33c2217be02d67329de070386b98ed23b5a8 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Wed, 1 May 2024 11:02:24 -0400 Subject: [PATCH 1978/2257] increase verbosity of init-video --- README.md | 3 +- readme-vars.yml | 3 +- .../s6-rc.d/init-jellyfin-video/run | 38 +++++++++++++------ 3 files changed, 30 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index e80ddec..6e307aa 100644 --- a/README.md +++ b/README.md @@ -371,7 +371,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **12.02.24:** - Use universal hardware acceleration blurb +* **01.05.24:** - Increase verbosity of device permissions fixing. +* **12.02.24:** - Use universal hardware acceleration blurb. * **12.09.23:** - Take ownership of plugin directories. * **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase master to Jammy, migrate to s6v3. diff --git a/readme-vars.yml b/readme-vars.yml index 6cf57ab..c457244 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -104,7 +104,8 @@ readme_hwaccel: true unraid_template_sync: false # changelog changelogs: - - {date: "12.02.24:", desc: "Use universal hardware acceleration blurb"} + - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing."} + - {date: "12.02.24:", desc: "Use universal hardware acceleration blurb."} - {date: "12.09.23:", desc: "Take ownership of plugin directories."} - {date: "04.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - {date: "07.12.22:", desc: "Rebase master to Jammy, migrate to s6v3."} diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run index c765461..d62bc5e 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run @@ -3,19 +3,33 @@ FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) -for i in $FILES -do - VIDEO_GID=$(stat -c '%g' "$i") - if ! id -G abc | grep -qw "$VIDEO_GID"; then - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [[ -z "${VIDEO_NAME}" ]]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" - groupadd "$VIDEO_NAME" - groupmod -g "$VIDEO_GID" "$VIDEO_NAME" +for i in ${FILES}; do + VIDEO_GID=$(stat -c '%g' "${i}") + VIDEO_UID=$(stat -c '%u' "${i}") + # check if user matches device + if id -u abc | grep -qw "${VIDEO_UID}"; then + echo "**** permissions for ${i} are good ****" + else + # check if group matches and that device has group rw + if id -G abc | grep -qw "${VIDEO_GID}" && [[ $(stat -c '%A' "${i}" | cut -b 5,6) == "rw" ]]; then + echo "**** permissions for ${i} are good ****" + # check if device needs to be added to video group + elif ! id -G abc | grep -qw "${VIDEO_GID}"; then + # check if video group needs to be created + VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') + if [[ -z "${VIDEO_NAME}" ]]; then + VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-z0-9' | head -c4)" + groupadd "${VIDEO_NAME}" + groupmod -g "${VIDEO_GID}" "${VIDEO_NAME}" + echo "**** creating video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" + fi + echo "**** adding ${i} to video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" + usermod -a -G "${VIDEO_NAME}" abc fi - usermod -a -G "$VIDEO_NAME" abc - if [ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]; then - echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n" + # check if device has group rw + if [[ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]]; then + echo -e "**** The device ${i} does not have group read/write permissions, attempting to fix inside the container. ****" + chmod g+rw "${i}" fi fi done From 4fae811e5f8d4106732c0acf597d6cb2dada4e1b Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Wed, 1 May 2024 11:07:01 -0400 Subject: [PATCH 1979/2257] increase verbosity of init-video, readme updates --- Jenkinsfile | 6 +- README.md | 112 +++++++++++------- readme-vars.yml | 69 ++++++----- .../s6-rc.d/init-jellyfin-video/run | 38 ++++-- 4 files changed, 138 insertions(+), 87 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f03a42d..73790ae 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -521,7 +521,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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} ." } @@ -552,7 +552,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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} ." } @@ -580,7 +580,7 @@ pipeline { --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Jellyfin\" \ - --label \"org.opencontainers.image.description=[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ + --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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}" diff --git a/README.md b/README.md index a09f14a..9702eb6 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,9 @@ Find us at: [![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) -[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. +[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. -[![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://jellyfin.github.io/) +[![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://github.com/jellyfin/jellyfin) ## Supported Architectures @@ -64,51 +64,70 @@ This image provides various versions that are available via tags. Please read th | Tag | Available | Description | | :----: | :----: |--- | | latest | ✅ | Stable Jellyfin releases | -| nightly | ✅ | Unstable Jellyfin releases | +| nightly | ✅ | Nightly Jellyfin releases | ## Application Setup Webui can be found at `http://<your-ip>:8096` -More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . +More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). -## Hardware Acceleration +### Hardware Acceleration Enhancements + +This section lists the enhancements we have made for hardware acceleration in this image specifically. ### Intel -Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: +To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the OpenCL-Intel mod from here: -```--device=/dev/dri:/dev/dri``` +https://mods.linuxserver.io/?mod=jellyfin -We will automatically ensure the abc user inside of the container has the proper permissions to access this device. -### Nvidia +#### OpenMAX (Raspberry Pi) -Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: - -https://github.com/NVIDIA/nvidia-docker - -We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - -### MMAL/OpenMAX (Raspberry Pi) - -Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: +Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` ---device=/dev/vc-mem:/dev/vc-mem +--device=/dev/vcsm:/dev/vcsm --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` -### V4L2 (Raspberry Pi) +#### V4L2 (Raspberry Pi) Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: + ``` --device=/dev/video10:/dev/video10 --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` +### Hardware Acceleration + +Many desktop applications need access to a GPU to function properly and even some Desktop Environments have compositor effects that will not function without a GPU. However this is not a hard requirement and all base images will function without a video device mounted into the container. + +#### Intel/ATI/AMD + +To leverage hardware acceleration you will need to mount /dev/dri video device inside of the container. + +```text +--device=/dev/dri:/dev/dri +``` + +We will automatically ensure the abc user inside of the container has the proper permissions to access this device. + +#### Nvidia + +Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: +https://github.com/NVIDIA/nvidia-container-toolkit + +We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-container-toolkit is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the container. + +#### Arm Devices + +Best effort is made to install tools to allow mounting in /dev/dri on Arm devices. In most cases if /dev/dri exists on the host it should just work. If running a Raspberry Pi 4 be sure to enable `dtoverlay=vc4-fkms-v3d` in your usercfg.txt. + ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. @@ -125,21 +144,16 @@ services: - PUID=1000 - PGID=1000 - TZ=Etc/UTC + - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - /path/to/library:/config - - path/to/tvseries:/data/tvshows + - /path/to/tvseries:/data/tvshows - /path/to/movies:/data/movies - - /opt/vc/lib:/opt/vc/lib #optional ports: - 8096:8096 - 8920:8920 #optional - devices: - - /dev/dri:/dev/dri #optional - - /dev/vc-mem:/dev/vc-mem #optional - - /dev/vchiq:/dev/vchiq #optional - - /dev/video10:/dev/video10 #optional - - /dev/video11:/dev/video11 #optional - - /dev/video12:/dev/video12 #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional restart: unless-stopped ``` @@ -151,18 +165,14 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ + -e JELLYFIN_PublishedServerUrl=192.168.0.5 `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ + -p 7359:7359/udp `#optional` \ + -p 1900:1900/udp `#optional` \ -v /path/to/library:/config \ - -v path/to/tvseries:/data/tvshows \ + -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ - -v /opt/vc/lib:/opt/vc/lib `#optional` \ - --device /dev/dri:/dev/dri `#optional` \ - --device /dev/vc-mem:/dev/vc-mem `#optional` \ - --device /dev/vchiq:/dev/vchiq `#optional` \ - --device /dev/video10:/dev/video10 `#optional` \ - --device /dev/video11:/dev/video11 `#optional` \ - --device /dev/video12:/dev/video12 `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/jellyfin:nightly ``` @@ -174,20 +184,16 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | | `-p 8096` | Http webUI. | -| `-p 8920` | Https webUI (you need to set up your own certificate). | +| `-p 8920` | Optional - Https webUI (you need to set up your own certificate). | +| `-p 7359/udp` | Optional - Allows clients to discover Jellyfin on the local network. | +| `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | | `-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). | +| `-e JELLYFIN_PublishedServerUrl=192.168.0.5` | Set the autodiscovery response domain or IP address. | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | -| `-v /opt/vc/lib` | Path for Raspberry Pi OpenMAX libs *optional*. | -| `--device /dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). | -| `--device /dev/vc-mem` | Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings). | -| `--device /dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). | -| `--device /dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | -| `--device /dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. | ## Environment variables from files (Docker secrets) @@ -206,6 +212,21 @@ Will set the environment variable `MYVAR` based on the contents of the `/run/sec 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. +## Optional Parameters + +The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. + +Service Discovery (`1900/udp`) - Since client auto-discover would break if this option were configurable, you cannot change this in the settings at this time. DLNA also uses this port and is required to be in the local subnet. + +Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local network. A broadcast message to this port with "Who is Jellyfin Server?" will get a JSON response that includes the server address, ID, and name. + +``` + -p 7359:7359/udp \ + -p 1900:1900/udp \ +``` + +The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. + ## 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`. @@ -350,6 +371,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **01.05.24:** - Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb. * **03.12.23:** - Switch nightly to ffmpeg6. * **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **07.12.22:** - Rebase nightly to Jammy, migrate to s6v3. diff --git a/readme-vars.yml b/readme-vars.yml index 881997e..60255aa 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -2,7 +2,7 @@ # project information project_name: jellyfin -project_url: "https://jellyfin.github.io/" +project_url: "https://github.com/jellyfin/jellyfin" project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." @@ -14,82 +14,97 @@ available_architectures: development_versions: true development_versions_items: - {tag: "latest", desc: "Stable Jellyfin releases"} - - {tag: "nightly", desc: "Unstable Jellyfin releases"} + - {tag: "nightly", desc: "Nightly Jellyfin releases"} # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} - - {vol_path: "/data/tvshows", vol_host_path: "path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} + - {vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} - {vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} param_usage_include_ports: true param_ports: - {external_port: "8096", internal_port: "8096", port_desc: "Http webUI."} param_usage_include_env: true param_env_vars: - - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} + - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} # optional container parameters -opt_param_usage_include_env: false -opt_param_usage_include_vols: true +opt_param_usage_include_env: true +opt_param_env_vars: + - {env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} +opt_param_usage_include_vols: false opt_param_volumes: - {vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*."} -opt_param_device_map: true +opt_param_device_map: false opt_param_devices: - {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)."} - - {device_path: "/dev/vc-mem", device_host_path: "/dev/vc-mem", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."} - - {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio)."} + - {device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."} + - {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding."} - {device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} - {device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} - {device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} opt_param_usage_include_ports: true opt_param_ports: - - {external_port: "8920", internal_port: "8920", port_desc: "Https webUI (you need to set up your own certificate)."} + - {external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)."} + - {external_port: "7359", internal_port: "7359/udp", port_desc: "Optional - Allows clients to discover Jellyfin on the local network."} + - {external_port: "1900", internal_port: "1900/udp", port_desc: "Optional - Service discovery used by DNLA and clients."} +optional_parameters: | + The [official documentation for ports](https://jellyfin.org/docs/general/networking/index.html) has additional ports that can provide auto discovery. + + Service Discovery (`1900/udp`) - Since client auto-discover would break if this option were configurable, you cannot change this in the settings at this time. DLNA also uses this port and is required to be in the local subnet. + + Client Discovery (`7359/udp`) - Allows clients to discover Jellyfin on the local network. A broadcast message to this port with "Who is Jellyfin Server?" will get a JSON response that includes the server address, ID, and name. + + ``` + -p 7359:7359/udp \ + -p 1900:1900/udp \ + ``` + + The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. # application setup block app_setup_block_enabled: true app_setup_block: | Webui can be found at `http://<your-ip>:8096` - More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . + More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). - ## Hardware Acceleration + ### Hardware Acceleration Enhancements + + This section lists the enhancements we have made for hardware acceleration in this image specifically. ### Intel - Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container: + To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the OpenCL-Intel mod from here: - ```--device=/dev/dri:/dev/dri``` + https://mods.linuxserver.io/?mod=jellyfin - We will automatically ensure the abc user inside of the container has the proper permissions to access this device. - ### Nvidia + #### OpenMAX (Raspberry Pi) - Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here: - - https://github.com/NVIDIA/nvidia-docker - - We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime `--runtime=nvidia` and add an environment variable `-e NVIDIA_VISIBLE_DEVICES=all` (can also be set to a specific gpu's UUID, this can be discovered by running `nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv` ). NVIDIA automatically mounts the GPU and drivers from your host into the jellyfin docker container. - - ### MMAL/OpenMAX (Raspberry Pi) - - Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vc-mem` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: + Hardware acceleration users for Raspberry Pi MMAL/OpenMAX will need to mount their `/dev/vcsm` and `/dev/vchiq` video devices inside of the container and their system OpenMax libs by passing the following options when running or creating the container: ``` - --device=/dev/vc-mem:/dev/vc-mem + --device=/dev/vcsm:/dev/vcsm --device=/dev/vchiq:/dev/vchiq -v /opt/vc/lib:/opt/vc/lib ``` - ### V4L2 (Raspberry Pi) + #### V4L2 (Raspberry Pi) Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev/video1X` devices inside of the container by passing the following options when running or creating the container: + ``` --device=/dev/video10:/dev/video10 --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` + +readme_hwaccel: true +unraid_template_sync: false # changelog changelogs: + - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb."} - {date: "03.12.23:", desc: "Switch nightly to ffmpeg6."} - {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - {date: "07.12.22:", desc: "Rebase nightly to Jammy, migrate to s6v3."} diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run index c519926..daee144 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run @@ -2,19 +2,33 @@ FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) -for i in $FILES -do - VIDEO_GID=$(stat -c '%g' "$i") - if ! id -G abc | grep -qw "$VIDEO_GID"; then - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [ -z "${VIDEO_NAME}" ]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c8)" - groupadd "$VIDEO_NAME" - groupmod -g "$VIDEO_GID" "$VIDEO_NAME" +for i in ${FILES}; do + VIDEO_GID=$(stat -c '%g' "${i}") + VIDEO_UID=$(stat -c '%u' "${i}") + # check if user matches device + if id -u abc | grep -qw "${VIDEO_UID}"; then + echo "**** permissions for ${i} are good ****" + else + # check if group matches and that device has group rw + if id -G abc | grep -qw "${VIDEO_GID}" && [[ $(stat -c '%A' "${i}" | cut -b 5,6) == "rw" ]]; then + echo "**** permissions for ${i} are good ****" + # check if device needs to be added to video group + elif ! id -G abc | grep -qw "${VIDEO_GID}"; then + # check if video group needs to be created + VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') + if [[ -z "${VIDEO_NAME}" ]]; then + VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-z0-9' | head -c4)" + groupadd "${VIDEO_NAME}" + groupmod -g "${VIDEO_GID}" "${VIDEO_NAME}" + echo "**** creating video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" + fi + echo "**** adding ${i} to video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" + usermod -a -G "${VIDEO_NAME}" abc fi - usermod -a -G "$VIDEO_NAME" abc - if [ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]; then - echo -e "**** The device ${i} does not have group read/write permissions, which might prevent hardware transcode from functioning correctly. To fix it, you can run the following on your docker host: ****\nsudo chmod g+rw ${i}\n" + # check if device has group rw + if [[ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]]; then + echo -e "**** The device ${i} does not have group read/write permissions, attempting to fix inside the container. ****" + chmod g+rw "${i}" fi fi done From 2a92520846faded09becedffa6daf86cba584dba Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Wed, 1 May 2024 11:28:11 -0400 Subject: [PATCH 1980/2257] remove TZ var --- readme-vars.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 60255aa..810b3a2 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -27,8 +27,6 @@ param_usage_include_ports: true param_ports: - {external_port: "8096", internal_port: "8096", port_desc: "Http webUI."} param_usage_include_env: true -param_env_vars: - - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: From 6b5e610b23dec5330daf01ed3b4940a57f602133 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Wed, 1 May 2024 11:28:52 -0400 Subject: [PATCH 1981/2257] remove TZ var --- readme-vars.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index c457244..47025c6 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -27,8 +27,6 @@ param_usage_include_ports: true param_ports: - {external_port: "8096", internal_port: "8096", port_desc: "Http webUI."} param_usage_include_env: true -param_env_vars: - - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: From 208147ea72343b037cba643933f2c168c39b975e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 May 2024 22:11:24 +0000 Subject: [PATCH 1982/2257] Bot Updating Package Versions --- package_versions.txt | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 17a1f29..310beb3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,13 +5,13 @@ BlurHashSharp 1.3.2.0 BlurHashSharp.SkiaSharp 1.3.2.0 dotnet CacheManager.NET 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet -Diacritics.NET 3.3.27 dotnet +Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet DiscUtils.Iso9660 0.16.13.55129 dotnet DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.4.2.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.4.3.0 dotnet EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.2 dotnet @@ -421,15 +421,14 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-5-jammy deb -jellyfin-server 2024042215+ubu2204 deb -jellyfin-web 2024042215+ubu2204 deb +jellyfin-ffmpeg6 6.0.1-6-jammy deb +jellyfin-server 2024050117+ubu2204 deb +jellyfin-web 2024050117+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.12 deb -libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb @@ -440,8 +439,8 @@ libbluray2 1:1.3.1-1 libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.6 deb -libc6 2.35-0ubuntu3.6 deb +libc-bin 2.35-0ubuntu3.7 deb +libc6 2.35-0ubuntu3.7 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -462,17 +461,12 @@ libext2fs2 1.46.5-2ubunt libffi8 3.4.2-4 deb libfontconfig1 2.13.1-4.2ubuntu5 deb libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb -libglib2.0-data 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -494,7 +488,7 @@ libmpg123-0 1.29.3-1build libncurses6 6.3-2ubuntu0.1 deb libncursesw6 6.3-2ubuntu0.1 deb libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnghttp2-14 1.43.0-1ubuntu0.2 deb libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnuma1 2.0.14-3ubuntu2 deb @@ -571,7 +565,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.6 deb +locales 2.35-0ubuntu3.7 deb login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb @@ -595,7 +589,6 @@ publicsuffix 20211207.1025 readline-common 8.1.2-1 deb sed 4.8-1ubuntu2 deb sensible-utils 0.0.17 deb -shared-mime-info 2.1-2 deb sudo 1.9.9-1ubuntu2.4 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb @@ -604,6 +597,5 @@ ubuntu-keyring 2021.03.26 ucf 3.0043 deb usrmerge 25ubuntu2 deb util-linux 2.37.2-4ubuntu3.4 deb -xdg-user-dirs 0.17-2ubuntu4 deb zlib.net 1.0.6.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From c07605bae8e9368778bad60bf442732384b79e17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 3 May 2024 23:17:33 +0000 Subject: [PATCH 1983/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 45f56bf..92d75bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -464,7 +464,7 @@ libmpg123-0 1.29.3-1build libncurses6 6.3-2ubuntu0.1 deb libncursesw6 6.3-2ubuntu0.1 deb libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.1 deb +libnghttp2-14 1.43.0-1ubuntu0.2 deb libnpth0 1.6-3build2 deb libnsl2 1.3.0-2build2 deb libnuma1 2.0.14-3ubuntu2 deb From 34ece0f466de5b66395e0732fd2bf58aa9eadaed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 May 2024 06:14:29 +0000 Subject: [PATCH 1984/2257] Bot Updating Templated Files --- Jenkinsfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 73790ae..60879cb 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 88f1da316e1adb0cf0b60ae20709339d595f1126 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 May 2024 06:17:52 +0000 Subject: [PATCH 1985/2257] 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 310beb3..4580174 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 2024050117+ubu2204 deb -jellyfin-web 2024050117+ubu2204 deb +jellyfin-server 2024050605+ubu2204 deb +jellyfin-web 2024050605+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 64f56e05078940565a351b92d2502e33a8debb31 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 May 2024 12:41:00 +0000 Subject: [PATCH 1986/2257] Bot Updating Templated Files --- Jenkinsfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4f32a02..e47e6e6 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 08f544c91b8732095decb70a01580ffc677417c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 02:28:48 +0000 Subject: [PATCH 1987/2257] 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 4580174..15dc679 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -393,6 +393,7 @@ bash 5.1-6ubuntu1. bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3.4 deb ca-certificates 20230311ubuntu0.22.04.1 deb +catatonit 0.1.7-1 deb coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb curl 7.81.0-1ubuntu1.16 deb @@ -422,8 +423,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 2024050605+ubu2204 deb -jellyfin-web 2024050605+ubu2204 deb +jellyfin-server 2024050902+ubu2204 deb +jellyfin-web 2024050902+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 2fdb331682a246e66d4a04ec9bdb064adc3e9887 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 09:14:09 +0000 Subject: [PATCH 1988/2257] 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 15dc679..fcd91b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -423,8 +423,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 2024050902+ubu2204 deb -jellyfin-web 2024050902+ubu2204 deb +jellyfin-server 2024050906+ubu2204 deb +jellyfin-web 2024050906+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 2d8da99de54036338e848412fafc44ee10e34aaa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 May 2024 19:08:02 +0000 Subject: [PATCH 1989/2257] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e47e6e6..f8307dc 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 ab722d2cbd268ce2afc3133cace411ce6d623bd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 May 2024 19:12:08 +0000 Subject: [PATCH 1990/2257] Bot Updating Package Versions --- package_versions.txt | 725 ++++++++++++++++++++++--------------------- 1 file changed, 374 insertions(+), 351 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 92d75bf..2921439 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,361 +1,388 @@ NAME VERSION TYPE -BDInfo 0.7.6.2 dotnet -BlurHashSharp 1.2.0.0 dotnet -BlurHashSharp.SkiaSharp 1.2.0.0 dotnet +AsyncKeyedLock 6.4.2.0 dotnet +BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet +BlurHashSharp 1.3.2.0 dotnet +BlurHashSharp.SkiaSharp 1.3.2.0 dotnet +CacheManager.NET 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet +Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet DiscUtils.Iso9660 0.16.13.55129 dotnet DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -Highly Optimized Priority Queue 5.0.0.0 dotnet -Jellyfin Server 10.8.13 dotnet (+16 duplicates) -Jellyfin Server 2019.1.20.3 dotnet -Jellyfin.Api 1.0.0.0 dotnet -Jellyfin.Data.dll 10.8.13 dotnet -Jellyfin.Extensions.dll 10.8.13 dotnet -Jellyfin.MediaEncoding.Hls 1.0.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 1.0.0.0 dotnet -Jellyfin.Networking.dll 10.8.13 dotnet +EFCoreSecondLevelCacheInterceptor 4.4.3.0 dotnet +EasyCaching.Core 1.9.2.0 dotnet +ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet +HarfBuzzSharp 7.3.0.2 dotnet +ICU4N 60.1.0 dotnet +ICU4N.Transliterator 60.1.0 dotnet +J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet +Jellyfin Server 10.9.0 dotnet (+13 duplicates) +Jellyfin.Api 22.4.0.0 dotnet +Jellyfin.Data.dll 10.9.0 dotnet +Jellyfin.Extensions.dll 10.9.0 dotnet +Jellyfin.LiveTv 22.4.0.0 dotnet +Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet +Jellyfin.Networking.dll 10.9.0 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET 13.0.1.25517 dotnet -Microsoft.AspNetCore 6.0.922.41926 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Server 6.0.922.41926 dotnet -Microsoft.AspNetCore.Components.Web 6.0.922.41926 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.922.41926 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Features 6.0.922.41926 dotnet -Microsoft.AspNetCore.Http.Results 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.922.41926 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.922.41926 dotnet -Microsoft.AspNetCore.Identity 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Metadata 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.922.41926 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor 6.0.922.41926 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.922.41926 dotnet -Microsoft.AspNetCore.Rewrite 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing 6.0.922.41926 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.922.41926 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.Session 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.922.41926 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.922.41926 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebSockets 6.0.922.41926 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.922.41926 dotnet +Json.NET 13.0.3.27908 dotnet +MetaBrainz.Common 3.0.0 dotnet +MetaBrainz.Common.Json 6.0.2 dotnet +MetaBrainz.MusicBrainz 6.1.0 dotnet +Microsoft.AspNetCore 8.0.424.17014 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authorization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Server 8.0.424.17014 dotnet +Microsoft.AspNetCore.Components.Web 8.0.424.17014 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.424.17014 dotnet +Microsoft.AspNetCore.Cors 8.0.424.17014 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.424.17014 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.424.17014 dotnet +Microsoft.AspNetCore.DataProtection 8.0.424.17014 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.424.17014 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.424.17014 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.424.17014 dotnet +Microsoft.AspNetCore.Hosting 8.0.424.17014 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Features 8.0.424.17014 dotnet +Microsoft.AspNetCore.Http.Results 8.0.424.17014 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.424.17014 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.424.17014 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.424.17014 dotnet +Microsoft.AspNetCore.Identity 8.0.424.17014 dotnet +Microsoft.AspNetCore.Localization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.424.17014 dotnet +Microsoft.AspNetCore.Metadata 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.424.17014 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.424.17014 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.424.17014 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.424.17014 dotnet +Microsoft.AspNetCore.Razor 8.0.424.17014 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.424.17014 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.424.17014 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.424.17014 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.424.17014 dotnet +Microsoft.AspNetCore.Rewrite 8.0.424.17014 dotnet +Microsoft.AspNetCore.Routing 8.0.424.17014 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.424.17014 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.424.17014 dotnet +Microsoft.AspNetCore.Session 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.424.17014 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.424.17014 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.424.17014 dotnet +Microsoft.AspNetCore.WebSockets 8.0.424.17014 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.424.17014 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 6.0.922.41905 dotnet -Microsoft.Data.Sqlite 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Abstractions 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Relational 6.0.922.41505 dotnet -Microsoft.EntityFrameworkCore.Sqlite 6.0.922.41505 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.922.41926 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyModel 6.0.21.52210 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 6.0.922.41926 dotnet -Microsoft.Extensions.Features 6.0.922.41926 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.922.41926 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.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.922.41926 dotnet -Microsoft.Extensions.Identity.Stores 6.0.922.41926 dotnet -Microsoft.Extensions.Localization 6.0.922.41926 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.922.41926 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.922.41905 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.922.41926 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.922.41926 dotnet -Microsoft.JSInterop 6.0.922.41926 dotnet -Microsoft.Net.Http.Headers 6.0.922.41926 dotnet +Microsoft.CSharp 8.0.424.16909 dotnet +Microsoft.Data.Sqlite 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.424.16902 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.424.16902 dotnet +Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Binder 8.0.123.58001 dotnet +Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.424.17014 dotnet +Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 dotnet +Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet +Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.424.17014 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.424.17014 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.424.17014 dotnet +Microsoft.Extensions.Features 8.0.424.17014 dotnet +Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.424.17014 dotnet +Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet +Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet +Microsoft.Extensions.Hosting 8.0.23.53103 dotnet +Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet +Microsoft.Extensions.Http 8.0.23.53103 dotnet +Microsoft.Extensions.Identity.Core 8.0.424.17014 dotnet +Microsoft.Extensions.Identity.Stores 8.0.424.17014 dotnet +Microsoft.Extensions.Localization 8.0.424.17014 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.424.17014 dotnet +Microsoft.Extensions.Logging 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet +Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Console 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.Debug 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet +Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet +Microsoft.Extensions.ObjectPool 8.0.424.17014 dotnet +Microsoft.Extensions.Options 8.0.224.6711 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet +Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet +Microsoft.Extensions.Primitives 8.0.23.53103 dotnet +Microsoft.Extensions.WebEncoders 8.0.424.17014 dotnet +Microsoft.JSInterop 8.0.424.17014 dotnet +Microsoft.Net.Http.Headers 8.0.424.17014 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.922.41905 dotnet -Microsoft.VisualBasic.Core 11.100.922.41905 dotnet -Microsoft.Win32.Primitives 6.0.922.41905 dotnet -Microsoft.Win32.Registry 6.0.922.41905 dotnet -Microsoft.Win32.SystemEvents 5.0.20.51904 dotnet -Mono.Nat 3.0.3 dotnet +Microsoft.VisualBasic 8.0.424.16909 dotnet +Microsoft.VisualBasic.Core 13.0.424.16909 dotnet +Microsoft.Win32.Primitives 8.0.424.16909 dotnet +Microsoft.Win32.Registry 8.0.424.16909 dotnet +Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet +Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet -PlaylistsNET 1.2.1.0 dotnet -Prometheus.AspNetCore.dll 6.0.0 dotnet -Prometheus.NetCore.dll 6.0.0 dotnet -Prometheus.NetStandard.dll 6.0.0 dotnet -SQLitePCL.pretty 1.0.0 dotnet -SQLitePCLRaw.batteries_v2 2.1.0.1603 dotnet -SQLitePCLRaw.core 2.1.0.1603 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.0.1603 dotnet -Serilog 2.10.0.0 dotnet -Serilog.AspNetCore 4.1.0.0 dotnet +PlaylistsNET 1.4.1.0 dotnet +Prometheus.AspNetCore.dll 8.2.1 dotnet +Prometheus.NetStandard.dll 8.2.1 dotnet +SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet +SQLitePCLRaw.core 2.1.6.2060 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet +Serilog 3.1.1.0 dotnet +Serilog.AspNetCore 8.0.1.0 dotnet Serilog.Enrichers.Thread 3.1.0.0 dotnet -Serilog.Extensions.Hosting 4.1.2.0 dotnet -Serilog.Extensions.Logging 3.0.1.0 dotnet -Serilog.Formatting.Compact 1.1.0.0 dotnet -Serilog.Settings.Configuration 3.3.0.0 dotnet +Serilog.Extensions.Hosting 8.0.0.0 dotnet +Serilog.Extensions.Logging 8.0.0.0 dotnet +Serilog.Formatting.Compact 2.0.0.0 dotnet +Serilog.Settings.Configuration 8.0.0.0 dotnet Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 4.0.1.0 dotnet +Serilog.Sinks.Console 5.0.1.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet -Serilog.Sinks.Graylog 2.3.0.0 dotnet +Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -SharpCompress 0.32.2+3009e6dcfd183760fbdb675249b7a65a2894618b dotnet -SkiaSharp 2.88.2.0 dotnet -SkiaSharp.Extended.Svg (netstandard2.0) 1.60.0.0 dotnet -Swashbuckle.AspNetCore.ReDoc 6.3.1.0 dotnet +ShimSkiaSharp 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +SkiaSharp 2.88.8.0 dotnet +SkiaSharp.HarfBuzz 2.88.8.0 dotnet +Svg.Custom 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +Svg.Model 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +Svg.Skia 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 6.0.922.41905 dotnet -System.AppContext 6.0.922.41905 dotnet -System.Buffers 6.0.922.41905 dotnet -System.Collections 6.0.922.41905 dotnet -System.Collections.Concurrent 6.0.922.41905 dotnet -System.Collections.Immutable 6.0.922.41905 dotnet -System.Collections.NonGeneric 6.0.922.41905 dotnet -System.Collections.Specialized 6.0.922.41905 dotnet -System.ComponentModel 6.0.922.41905 dotnet -System.ComponentModel.Annotations 6.0.922.41905 dotnet -System.ComponentModel.DataAnnotations 6.0.922.41905 dotnet -System.ComponentModel.EventBasedAsync 6.0.922.41905 dotnet -System.ComponentModel.Primitives 6.0.922.41905 dotnet -System.ComponentModel.TypeConverter 6.0.922.41905 dotnet -System.Configuration 6.0.922.41905 dotnet -System.Console 6.0.922.41905 dotnet -System.Core 6.0.922.41905 dotnet -System.Data 6.0.922.41905 dotnet -System.Data.Common 6.0.922.41905 dotnet -System.Data.DataSetExtensions 6.0.922.41905 dotnet -System.Diagnostics.Contracts 6.0.922.41905 dotnet -System.Diagnostics.Debug 6.0.922.41905 dotnet -System.Diagnostics.DiagnosticSource 6.0.922.41905 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.922.41905 dotnet -System.Diagnostics.Process 6.0.922.41905 dotnet -System.Diagnostics.StackTrace 6.0.922.41905 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.922.41905 dotnet -System.Diagnostics.Tools 6.0.922.41905 dotnet -System.Diagnostics.TraceSource 6.0.922.41905 dotnet -System.Diagnostics.Tracing 6.0.922.41905 dotnet -System.Drawing 6.0.922.41905 dotnet -System.Drawing.Common 5.0.421.11614 dotnet -System.Drawing.Primitives 6.0.922.41905 dotnet -System.Dynamic.Runtime 6.0.922.41905 dotnet -System.Formats.Asn1 6.0.922.41905 dotnet -System.Globalization 6.0.922.41905 dotnet -System.Globalization.Calendars 6.0.922.41905 dotnet -System.Globalization.Extensions 6.0.922.41905 dotnet -System.IO 6.0.922.41905 dotnet -System.IO.Compression 6.0.922.41905 dotnet -System.IO.Compression.Brotli 6.0.922.41905 dotnet -System.IO.Compression.FileSystem 6.0.922.41905 dotnet -System.IO.Compression.ZipFile 6.0.922.41905 dotnet -System.IO.FileSystem 6.0.922.41905 dotnet -System.IO.FileSystem.AccessControl 6.0.922.41905 dotnet -System.IO.FileSystem.DriveInfo 6.0.922.41905 dotnet -System.IO.FileSystem.Primitives 6.0.922.41905 dotnet -System.IO.FileSystem.Watcher 6.0.922.41905 dotnet -System.IO.IsolatedStorage 6.0.922.41905 dotnet -System.IO.MemoryMappedFiles 6.0.922.41905 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.922.41905 dotnet -System.IO.Pipes.AccessControl 6.0.922.41905 dotnet -System.IO.UnmanagedMemoryStream 6.0.922.41905 dotnet -System.Linq 6.0.922.41905 dotnet +System 8.0.424.16909 dotnet +System.AppContext 8.0.424.16909 dotnet +System.Buffers 8.0.424.16909 dotnet +System.Collections 8.0.424.16909 dotnet +System.Collections.Concurrent 8.0.424.16909 dotnet +System.Collections.Immutable 8.0.424.16909 dotnet +System.Collections.NonGeneric 8.0.424.16909 dotnet +System.Collections.Specialized 8.0.424.16909 dotnet +System.ComponentModel 8.0.424.16909 dotnet +System.ComponentModel.Annotations 8.0.424.16909 dotnet +System.ComponentModel.DataAnnotations 8.0.424.16909 dotnet +System.ComponentModel.EventBasedAsync 8.0.424.16909 dotnet +System.ComponentModel.Primitives 8.0.424.16909 dotnet +System.ComponentModel.TypeConverter 8.0.424.16909 dotnet +System.Configuration 8.0.424.16909 dotnet +System.Console 8.0.424.16909 dotnet +System.Core 8.0.424.16909 dotnet +System.Data 8.0.424.16909 dotnet +System.Data.Common 8.0.424.16909 dotnet +System.Data.DataSetExtensions 8.0.424.16909 dotnet +System.Diagnostics.Contracts 8.0.424.16909 dotnet +System.Diagnostics.Debug 8.0.424.16909 dotnet +System.Diagnostics.DiagnosticSource 8.0.424.16909 dotnet +System.Diagnostics.EventLog 8.0.23.53103 dotnet +System.Diagnostics.FileVersionInfo 8.0.424.16909 dotnet +System.Diagnostics.Process 8.0.424.16909 dotnet +System.Diagnostics.StackTrace 8.0.424.16909 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.424.16909 dotnet +System.Diagnostics.Tools 8.0.424.16909 dotnet +System.Diagnostics.TraceSource 8.0.424.16909 dotnet +System.Diagnostics.Tracing 8.0.424.16909 dotnet +System.Drawing 8.0.424.16909 dotnet +System.Drawing.Common 7.0.22.51805 dotnet +System.Drawing.Primitives 8.0.424.16909 dotnet +System.Dynamic.Runtime 8.0.424.16909 dotnet +System.Formats.Asn1 8.0.424.16909 dotnet +System.Formats.Tar 8.0.424.16909 dotnet +System.Globalization 8.0.424.16909 dotnet +System.Globalization.Calendars 8.0.424.16909 dotnet +System.Globalization.Extensions 8.0.424.16909 dotnet +System.IO 8.0.424.16909 dotnet +System.IO.Compression 8.0.424.16909 dotnet +System.IO.Compression.Brotli 8.0.424.16909 dotnet +System.IO.Compression.FileSystem 8.0.424.16909 dotnet +System.IO.Compression.ZipFile 8.0.424.16909 dotnet +System.IO.FileSystem 8.0.424.16909 dotnet +System.IO.FileSystem.AccessControl 8.0.424.16909 dotnet +System.IO.FileSystem.DriveInfo 8.0.424.16909 dotnet +System.IO.FileSystem.Primitives 8.0.424.16909 dotnet +System.IO.FileSystem.Watcher 8.0.424.16909 dotnet +System.IO.Hashing 8.0.23.53103 dotnet +System.IO.IsolatedStorage 8.0.424.16909 dotnet +System.IO.MemoryMappedFiles 8.0.424.16909 dotnet +System.IO.Pipelines 8.0.23.53103 dotnet +System.IO.Pipes 8.0.424.16909 dotnet +System.IO.Pipes.AccessControl 8.0.424.16909 dotnet +System.IO.UnmanagedMemoryStream 8.0.424.16909 dotnet +System.Linq 8.0.424.16909 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 6.0.922.41905 dotnet -System.Linq.Parallel 6.0.922.41905 dotnet -System.Linq.Queryable 6.0.922.41905 dotnet -System.Memory 6.0.922.41905 dotnet -System.Net 6.0.922.41905 dotnet -System.Net.Http 6.0.922.41905 dotnet -System.Net.Http.Json 6.0.922.41905 dotnet -System.Net.HttpListener 6.0.922.41905 dotnet -System.Net.Mail 6.0.922.41905 dotnet -System.Net.NameResolution 6.0.922.41905 dotnet -System.Net.NetworkInformation 6.0.922.41905 dotnet -System.Net.Ping 6.0.922.41905 dotnet -System.Net.Primitives 6.0.922.41905 dotnet -System.Net.Quic 6.0.922.41905 dotnet -System.Net.Requests 6.0.922.41905 dotnet -System.Net.Security 6.0.922.41905 dotnet -System.Net.ServicePoint 6.0.922.41905 dotnet -System.Net.Sockets 6.0.922.41905 dotnet -System.Net.WebClient 6.0.922.41905 dotnet -System.Net.WebHeaderCollection 6.0.922.41905 dotnet -System.Net.WebProxy 6.0.922.41905 dotnet -System.Net.WebSockets 6.0.922.41905 dotnet -System.Net.WebSockets.Client 6.0.922.41905 dotnet -System.Numerics 6.0.922.41905 dotnet -System.Numerics.Vectors 6.0.922.41905 dotnet -System.ObjectModel 6.0.922.41905 dotnet -System.Private.CoreLib 6.0.922.41905 dotnet -System.Private.DataContractSerialization 6.0.922.41905 dotnet -System.Private.Uri 6.0.922.41905 dotnet -System.Private.Xml 6.0.922.41905 dotnet -System.Private.Xml.Linq 6.0.922.41905 dotnet -System.Reflection 6.0.922.41905 dotnet -System.Reflection.DispatchProxy 6.0.922.41905 dotnet -System.Reflection.Emit 6.0.922.41905 dotnet -System.Reflection.Emit.ILGeneration 6.0.922.41905 dotnet -System.Reflection.Emit.Lightweight 6.0.922.41905 dotnet -System.Reflection.Extensions 6.0.922.41905 dotnet -System.Reflection.Metadata 6.0.922.41905 dotnet -System.Reflection.Primitives 6.0.922.41905 dotnet -System.Reflection.TypeExtensions 6.0.922.41905 dotnet -System.Resources.Reader 6.0.922.41905 dotnet -System.Resources.ResourceManager 6.0.922.41905 dotnet -System.Resources.Writer 6.0.922.41905 dotnet -System.Runtime 6.0.922.41905 dotnet -System.Runtime.CompilerServices.VisualC 6.0.922.41905 dotnet -System.Runtime.Extensions 6.0.922.41905 dotnet -System.Runtime.Handles 6.0.922.41905 dotnet -System.Runtime.InteropServices 6.0.922.41905 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.922.41905 dotnet -System.Runtime.Intrinsics 6.0.922.41905 dotnet -System.Runtime.Loader 6.0.922.41905 dotnet -System.Runtime.Numerics 6.0.922.41905 dotnet -System.Runtime.Serialization 6.0.922.41905 dotnet -System.Runtime.Serialization.Formatters 6.0.922.41905 dotnet -System.Runtime.Serialization.Json 6.0.922.41905 dotnet -System.Runtime.Serialization.Primitives 6.0.922.41905 dotnet -System.Runtime.Serialization.Xml 6.0.922.41905 dotnet -System.Security 6.0.922.41905 dotnet -System.Security.AccessControl 6.0.922.41905 dotnet -System.Security.Claims 6.0.922.41905 dotnet -System.Security.Cryptography.Algorithms 6.0.922.41905 dotnet -System.Security.Cryptography.Cng 6.0.922.41905 dotnet -System.Security.Cryptography.Csp 6.0.922.41905 dotnet -System.Security.Cryptography.Encoding 6.0.922.41905 dotnet -System.Security.Cryptography.OpenSsl 6.0.922.41905 dotnet -System.Security.Cryptography.Pkcs 6.0.522.21309 dotnet -System.Security.Cryptography.Primitives 6.0.922.41905 dotnet -System.Security.Cryptography.X509Certificates 6.0.922.41905 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Principal 6.0.922.41905 dotnet -System.Security.Principal.Windows 6.0.922.41905 dotnet -System.Security.SecureString 6.0.922.41905 dotnet -System.ServiceModel.Web 6.0.922.41905 dotnet -System.ServiceProcess 6.0.922.41905 dotnet -System.Text.Encoding 6.0.922.41905 dotnet -System.Text.Encoding.CodePages 6.0.922.41905 dotnet -System.Text.Encoding.Extensions 6.0.922.41905 dotnet -System.Text.Encodings.Web 6.0.922.41905 dotnet -System.Text.Json 6.0.922.41905 dotnet -System.Text.RegularExpressions 6.0.922.41905 dotnet -System.Threading 6.0.922.41905 dotnet -System.Threading.Channels 6.0.922.41905 dotnet -System.Threading.Overlapped 6.0.922.41905 dotnet -System.Threading.Tasks 6.0.922.41905 dotnet -System.Threading.Tasks.Dataflow 6.0.922.41905 dotnet -System.Threading.Tasks.Extensions 6.0.922.41905 dotnet -System.Threading.Tasks.Parallel 6.0.922.41905 dotnet -System.Threading.Thread 6.0.922.41905 dotnet -System.Threading.ThreadPool 6.0.922.41905 dotnet -System.Threading.Timer 6.0.922.41905 dotnet -System.Transactions 6.0.922.41905 dotnet -System.Transactions.Local 6.0.922.41905 dotnet -System.ValueTuple 6.0.922.41905 dotnet -System.Web 6.0.922.41905 dotnet -System.Web.HttpUtility 6.0.922.41905 dotnet -System.Windows 6.0.922.41905 dotnet -System.Xml 6.0.922.41905 dotnet -System.Xml.Linq 6.0.922.41905 dotnet -System.Xml.ReaderWriter 6.0.922.41905 dotnet -System.Xml.Serialization 6.0.922.41905 dotnet -System.Xml.XDocument 6.0.922.41905 dotnet -System.Xml.XPath 6.0.922.41905 dotnet -System.Xml.XPath.XDocument 6.0.922.41905 dotnet -System.Xml.XmlDocument 6.0.922.41905 dotnet -System.Xml.XmlSerializer 6.0.922.41905 dotnet -TMDbLib 1.9.2.0 dotnet +System.Linq.Expressions 8.0.424.16909 dotnet +System.Linq.Parallel 8.0.424.16909 dotnet +System.Linq.Queryable 8.0.424.16909 dotnet +System.Memory 8.0.424.16909 dotnet +System.Net 8.0.424.16909 dotnet +System.Net.Http 8.0.424.16909 dotnet +System.Net.Http.Json 8.0.424.16909 dotnet +System.Net.HttpListener 8.0.424.16909 dotnet +System.Net.Mail 8.0.424.16909 dotnet +System.Net.NameResolution 8.0.424.16909 dotnet +System.Net.NetworkInformation 8.0.424.16909 dotnet +System.Net.Ping 8.0.424.16909 dotnet +System.Net.Primitives 8.0.424.16909 dotnet +System.Net.Quic 8.0.424.16909 dotnet +System.Net.Requests 8.0.424.16909 dotnet +System.Net.Security 8.0.424.16909 dotnet +System.Net.ServicePoint 8.0.424.16909 dotnet +System.Net.Sockets 8.0.424.16909 dotnet +System.Net.WebClient 8.0.424.16909 dotnet +System.Net.WebHeaderCollection 8.0.424.16909 dotnet +System.Net.WebProxy 8.0.424.16909 dotnet +System.Net.WebSockets 8.0.424.16909 dotnet +System.Net.WebSockets.Client 8.0.424.16909 dotnet +System.Numerics 8.0.424.16909 dotnet +System.Numerics.Vectors 8.0.424.16909 dotnet +System.ObjectModel 8.0.424.16909 dotnet +System.Private.CoreLib 8.0.424.16909 dotnet +System.Private.DataContractSerialization 8.0.424.16909 dotnet +System.Private.Uri 8.0.424.16909 dotnet +System.Private.Xml 8.0.424.16909 dotnet +System.Private.Xml.Linq 8.0.424.16909 dotnet +System.Reflection 8.0.424.16909 dotnet +System.Reflection.DispatchProxy 8.0.424.16909 dotnet +System.Reflection.Emit 8.0.424.16909 dotnet +System.Reflection.Emit.ILGeneration 8.0.424.16909 dotnet +System.Reflection.Emit.Lightweight 8.0.424.16909 dotnet +System.Reflection.Extensions 8.0.424.16909 dotnet +System.Reflection.Metadata 8.0.424.16909 dotnet +System.Reflection.Primitives 8.0.424.16909 dotnet +System.Reflection.TypeExtensions 8.0.424.16909 dotnet +System.Resources.Reader 8.0.424.16909 dotnet +System.Resources.ResourceManager 8.0.424.16909 dotnet +System.Resources.Writer 8.0.424.16909 dotnet +System.Runtime 8.0.424.16909 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.424.16909 dotnet +System.Runtime.CompilerServices.VisualC 8.0.424.16909 dotnet +System.Runtime.Extensions 8.0.424.16909 dotnet +System.Runtime.Handles 8.0.424.16909 dotnet +System.Runtime.InteropServices 8.0.424.16909 dotnet +System.Runtime.InteropServices.JavaScript 8.0.424.16909 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.424.16909 dotnet +System.Runtime.Intrinsics 8.0.424.16909 dotnet +System.Runtime.Loader 8.0.424.16909 dotnet +System.Runtime.Numerics 8.0.424.16909 dotnet +System.Runtime.Serialization 8.0.424.16909 dotnet +System.Runtime.Serialization.Formatters 8.0.424.16909 dotnet +System.Runtime.Serialization.Json 8.0.424.16909 dotnet +System.Runtime.Serialization.Primitives 8.0.424.16909 dotnet +System.Runtime.Serialization.Xml 8.0.424.16909 dotnet +System.Security 8.0.424.16909 dotnet +System.Security.AccessControl 8.0.424.16909 dotnet +System.Security.Claims 8.0.424.16909 dotnet +System.Security.Cryptography 8.0.424.16909 dotnet +System.Security.Cryptography.Algorithms 8.0.424.16909 dotnet +System.Security.Cryptography.Cng 8.0.424.16909 dotnet +System.Security.Cryptography.Csp 8.0.424.16909 dotnet +System.Security.Cryptography.Encoding 8.0.424.16909 dotnet +System.Security.Cryptography.OpenSsl 8.0.424.16909 dotnet +System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet +System.Security.Cryptography.Primitives 8.0.424.16909 dotnet +System.Security.Cryptography.X509Certificates 8.0.424.16909 dotnet +System.Security.Cryptography.Xml 8.0.23.53103 dotnet +System.Security.Principal 8.0.424.16909 dotnet +System.Security.Principal.Windows 8.0.424.16909 dotnet +System.Security.SecureString 8.0.424.16909 dotnet +System.ServiceModel.Web 8.0.424.16909 dotnet +System.ServiceProcess 8.0.424.16909 dotnet +System.Text.Encoding 8.0.424.16909 dotnet +System.Text.Encoding.CodePages 8.0.424.16909 dotnet +System.Text.Encoding.Extensions 8.0.424.16909 dotnet +System.Text.Encodings.Web 8.0.424.16909 dotnet +System.Text.Json 8.0.424.16909 dotnet +System.Text.RegularExpressions 8.0.424.16909 dotnet +System.Threading 8.0.424.16909 dotnet +System.Threading.Channels 8.0.424.16909 dotnet +System.Threading.Overlapped 8.0.424.16909 dotnet +System.Threading.RateLimiting 8.0.23.53103 dotnet +System.Threading.Tasks 8.0.424.16909 dotnet +System.Threading.Tasks.Dataflow 8.0.424.16909 dotnet +System.Threading.Tasks.Extensions 8.0.424.16909 dotnet +System.Threading.Tasks.Parallel 8.0.424.16909 dotnet +System.Threading.Thread 8.0.424.16909 dotnet +System.Threading.ThreadPool 8.0.424.16909 dotnet +System.Threading.Timer 8.0.424.16909 dotnet +System.Transactions 8.0.424.16909 dotnet +System.Transactions.Local 8.0.424.16909 dotnet +System.ValueTuple 8.0.424.16909 dotnet +System.Web 8.0.424.16909 dotnet +System.Web.HttpUtility 8.0.424.16909 dotnet +System.Windows 8.0.424.16909 dotnet +System.Xml 8.0.424.16909 dotnet +System.Xml.Linq 8.0.424.16909 dotnet +System.Xml.ReaderWriter 8.0.424.16909 dotnet +System.Xml.Serialization 8.0.424.16909 dotnet +System.Xml.XDocument 8.0.424.16909 dotnet +System.Xml.XPath 8.0.424.16909 dotnet +System.Xml.XPath.XDocument 8.0.424.16909 dotnet +System.Xml.XmlDocument 8.0.424.16909 dotnet +System.Xml.XmlSerializer 8.0.424.16909 dotnet +TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 6.0.922.41905 dotnet +WindowsBase 8.0.424.16909 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -363,9 +390,9 @@ at 3.2.5-1ubuntu base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1.1 deb -bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3.4 deb ca-certificates 20230311ubuntu0.22.04.1 deb +catatonit 0.1.7-1 deb coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb curl 7.81.0-1ubuntu1.16 deb @@ -394,14 +421,14 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.8.13-1 deb -jellyfin-ffmpeg5 5.1.4-3-jammy deb -jellyfin-server 10.8.13-1 deb -jellyfin-web 10.8.13-1 deb +jellyfin 10.9.0+ubu2204 deb +jellyfin-ffmpeg6 6.0.1-6-jammy deb +jellyfin-server 10.9.0+ubu2204 deb +jellyfin-web 10.9.0+ubu2204 deb jq 1.6-2.1ubuntu3 deb +karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb libapt-pkg6.0 2.4.12 deb -libass9 1:0.15.2-1 deb libassuan0 2.5.5-1build1 deb libattr1 1:2.5.1-1build1 deb libaudit-common 1:3.0.7-1build1 deb @@ -433,16 +460,12 @@ libext2fs2 1.46.5-2ubunt libffi8 3.4.2-4 deb libfontconfig1 2.13.1-4.2ubuntu5 deb libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libfribidi0 1.0.8-2ubuntu3.1 deb libgcc-s1 12.3.0-1ubuntu1~22.04 deb libgcrypt20 1.9.4-3ubuntu3 deb -libglib2.0-0 2.72.4-0ubuntu2.2 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb libgnutls30 3.7.3-4ubuntu1.5 deb libgpg-error0 1.43-3 deb -libgraphite2-3 1.3.14-1build2 deb libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb -libharfbuzz0b 2.7.4-1ubuntu3.1 deb libhogweed6 3.7.3-1build2 deb libicu70 70.1-2 deb libidn2-0 2.3.2-2build1 deb @@ -489,7 +512,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 3.6.5.3 dotnet +libse 4.0.5.1 dotnet libseccomp2 2.5.3-2ubuntu2 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb @@ -549,19 +572,19 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 6.0.922.41905 dotnet +mscorlib 8.0.424.16909 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 6.0.922.41905 dotnet +netstandard 8.0.424.16909 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.2 deb perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb procps 2:3.3.17-6ubuntu2.1 deb -prometheus-net.DotNetRuntime 4.2.4.0 dotnet +prometheus-net.DotNetRuntime 4.4.0.0 dotnet publicsuffix 20211207.1025-1 deb readline-common 8.1.2-1 deb sed 4.8-1ubuntu2 deb @@ -574,5 +597,5 @@ ucf 3.0043 usrmerge 25ubuntu2 deb util-linux 2.37.2-4ubuntu3.4 deb xmlstarlet 1.6.1-2.1 deb -zlib.net 1.0.5.0 dotnet +zlib.net 1.0.6.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 6b27ac0bdedbce9d4d4e1c1e9af6bee1c070eeb0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 May 2024 00:42:35 +0000 Subject: [PATCH 1991/2257] 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 2921439..6d9d181 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,14 +18,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.0 dotnet (+13 duplicates) +Jellyfin Server 10.9.1 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.0 dotnet -Jellyfin.Extensions.dll 10.9.0 dotnet +Jellyfin.Data.dll 10.9.1 dotnet +Jellyfin.Extensions.dll 10.9.1 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.0 dotnet +Jellyfin.Networking.dll 10.9.1 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.0+ubu2204 deb +jellyfin 10.9.1+ubu2204 deb jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 10.9.0+ubu2204 deb -jellyfin-web 10.9.0+ubu2204 deb +jellyfin-server 10.9.1+ubu2204 deb +jellyfin-web 10.9.1+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb From 0a1f5e175d9d6e909135aad4149bae327a845ca8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 May 2024 12:44:04 +0000 Subject: [PATCH 1992/2257] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 60879cb..08b9919 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 15f33aa0111825e2814e4669151aa3962ef19ee3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 May 2024 12:47:27 +0000 Subject: [PATCH 1993/2257] Bot Updating Package Versions --- package_versions.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fcd91b2..97c01ba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -390,7 +390,6 @@ at 3.2.5-1ubuntu base-files 12ubuntu4.6 deb base-passwd 3.5.52build1 deb bash 5.1-6ubuntu1.1 deb -bash 5.1.16 binary bsdutils 1:2.37.2-4ubuntu3.4 deb ca-certificates 20230311ubuntu0.22.04.1 deb catatonit 0.1.7-1 deb From bdc4079d0ecb4a784967de08befabd235bff911a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 May 2024 21:10:31 +0000 Subject: [PATCH 1994/2257] Bot Updating Package Versions --- package_versions.txt | 550 +++++++++++++++++++++---------------------- 1 file changed, 275 insertions(+), 275 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6d9d181..b033af2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,107 +18,107 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.1 dotnet (+13 duplicates) +Jellyfin Server 10.9.2 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.1 dotnet -Jellyfin.Extensions.dll 10.9.1 dotnet +Jellyfin.Data.dll 10.9.2 dotnet +Jellyfin.Extensions.dll 10.9.2 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.1 dotnet +Jellyfin.Networking.dll 10.9.2 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.424.17014 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authorization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Server 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Web 8.0.424.17014 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.424.17014 dotnet -Microsoft.AspNetCore.Cors 8.0.424.17014 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.424.17014 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.424.17014 dotnet -Microsoft.AspNetCore.DataProtection 8.0.424.17014 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.424.17014 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.424.17014 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.424.17014 dotnet -Microsoft.AspNetCore.Hosting 8.0.424.17014 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Features 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Results 8.0.424.17014 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.424.17014 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.424.17014 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.424.17014 dotnet -Microsoft.AspNetCore.Identity 8.0.424.17014 dotnet -Microsoft.AspNetCore.Localization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.424.17014 dotnet -Microsoft.AspNetCore.Metadata 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.424.17014 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.424.17014 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.424.17014 dotnet -Microsoft.AspNetCore.Razor 8.0.424.17014 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.424.17014 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.424.17014 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.424.17014 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.424.17014 dotnet -Microsoft.AspNetCore.Rewrite 8.0.424.17014 dotnet -Microsoft.AspNetCore.Routing 8.0.424.17014 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.424.17014 dotnet -Microsoft.AspNetCore.Session 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.424.17014 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.424.17014 dotnet -Microsoft.AspNetCore.WebSockets 8.0.424.17014 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.424.17014 dotnet +Microsoft.AspNetCore 8.0.524.22404 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authorization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Server 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Web 8.0.524.22404 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.524.22404 dotnet +Microsoft.AspNetCore.Cors 8.0.524.22404 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.524.22404 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.524.22404 dotnet +Microsoft.AspNetCore.DataProtection 8.0.524.22404 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.524.22404 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.524.22404 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.524.22404 dotnet +Microsoft.AspNetCore.Hosting 8.0.524.22404 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Features 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Results 8.0.524.22404 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.524.22404 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.524.22404 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.524.22404 dotnet +Microsoft.AspNetCore.Identity 8.0.524.22404 dotnet +Microsoft.AspNetCore.Localization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.524.22404 dotnet +Microsoft.AspNetCore.Metadata 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.524.22404 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.524.22404 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.524.22404 dotnet +Microsoft.AspNetCore.Razor 8.0.524.22404 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.524.22404 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.524.22404 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.524.22404 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.524.22404 dotnet +Microsoft.AspNetCore.Rewrite 8.0.524.22404 dotnet +Microsoft.AspNetCore.Routing 8.0.524.22404 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.524.22404 dotnet +Microsoft.AspNetCore.Session 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.524.22404 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.524.22404 dotnet +Microsoft.AspNetCore.WebSockets 8.0.524.22404 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.524.22404 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.424.16909 dotnet +Microsoft.CSharp 8.0.524.21615 dotnet Microsoft.Data.Sqlite 8.0.424.16902 dotnet Microsoft.EntityFrameworkCore 8.0.424.16902 dotnet Microsoft.EntityFrameworkCore.Abstractions 8.0.424.16902 dotnet @@ -134,7 +134,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.424.17014 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.524.22404 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -142,22 +142,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.424.17014 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.424.17014 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.524.22404 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.524.22404 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.424.17014 dotnet -Microsoft.Extensions.Features 8.0.424.17014 dotnet +Microsoft.Extensions.Features 8.0.524.22404 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.424.17014 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.524.22404 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.424.17014 dotnet -Microsoft.Extensions.Identity.Stores 8.0.424.17014 dotnet -Microsoft.Extensions.Localization 8.0.424.17014 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.424.17014 dotnet +Microsoft.Extensions.Identity.Core 8.0.524.22404 dotnet +Microsoft.Extensions.Identity.Stores 8.0.524.22404 dotnet +Microsoft.Extensions.Localization 8.0.524.22404 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.524.22404 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,19 +166,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.424.17014 dotnet +Microsoft.Extensions.ObjectPool 8.0.524.22404 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.424.17014 dotnet -Microsoft.JSInterop 8.0.424.17014 dotnet -Microsoft.Net.Http.Headers 8.0.424.17014 dotnet +Microsoft.Extensions.WebEncoders 8.0.524.22404 dotnet +Microsoft.JSInterop 8.0.524.22404 dotnet +Microsoft.Net.Http.Headers 8.0.524.22404 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.424.16909 dotnet -Microsoft.VisualBasic.Core 13.0.424.16909 dotnet -Microsoft.Win32.Primitives 8.0.424.16909 dotnet -Microsoft.Win32.Registry 8.0.424.16909 dotnet +Microsoft.VisualBasic 8.0.524.21615 dotnet +Microsoft.VisualBasic.Core 13.0.524.21615 dotnet +Microsoft.Win32.Primitives 8.0.524.21615 dotnet +Microsoft.Win32.Registry 8.0.524.21615 dotnet Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -211,178 +211,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.424.16909 dotnet -System.AppContext 8.0.424.16909 dotnet -System.Buffers 8.0.424.16909 dotnet -System.Collections 8.0.424.16909 dotnet -System.Collections.Concurrent 8.0.424.16909 dotnet -System.Collections.Immutable 8.0.424.16909 dotnet -System.Collections.NonGeneric 8.0.424.16909 dotnet -System.Collections.Specialized 8.0.424.16909 dotnet -System.ComponentModel 8.0.424.16909 dotnet -System.ComponentModel.Annotations 8.0.424.16909 dotnet -System.ComponentModel.DataAnnotations 8.0.424.16909 dotnet -System.ComponentModel.EventBasedAsync 8.0.424.16909 dotnet -System.ComponentModel.Primitives 8.0.424.16909 dotnet -System.ComponentModel.TypeConverter 8.0.424.16909 dotnet -System.Configuration 8.0.424.16909 dotnet -System.Console 8.0.424.16909 dotnet -System.Core 8.0.424.16909 dotnet -System.Data 8.0.424.16909 dotnet -System.Data.Common 8.0.424.16909 dotnet -System.Data.DataSetExtensions 8.0.424.16909 dotnet -System.Diagnostics.Contracts 8.0.424.16909 dotnet -System.Diagnostics.Debug 8.0.424.16909 dotnet -System.Diagnostics.DiagnosticSource 8.0.424.16909 dotnet +System 8.0.524.21615 dotnet +System.AppContext 8.0.524.21615 dotnet +System.Buffers 8.0.524.21615 dotnet +System.Collections 8.0.524.21615 dotnet +System.Collections.Concurrent 8.0.524.21615 dotnet +System.Collections.Immutable 8.0.524.21615 dotnet +System.Collections.NonGeneric 8.0.524.21615 dotnet +System.Collections.Specialized 8.0.524.21615 dotnet +System.ComponentModel 8.0.524.21615 dotnet +System.ComponentModel.Annotations 8.0.524.21615 dotnet +System.ComponentModel.DataAnnotations 8.0.524.21615 dotnet +System.ComponentModel.EventBasedAsync 8.0.524.21615 dotnet +System.ComponentModel.Primitives 8.0.524.21615 dotnet +System.ComponentModel.TypeConverter 8.0.524.21615 dotnet +System.Configuration 8.0.524.21615 dotnet +System.Console 8.0.524.21615 dotnet +System.Core 8.0.524.21615 dotnet +System.Data 8.0.524.21615 dotnet +System.Data.Common 8.0.524.21615 dotnet +System.Data.DataSetExtensions 8.0.524.21615 dotnet +System.Diagnostics.Contracts 8.0.524.21615 dotnet +System.Diagnostics.Debug 8.0.524.21615 dotnet +System.Diagnostics.DiagnosticSource 8.0.524.21615 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.424.16909 dotnet -System.Diagnostics.Process 8.0.424.16909 dotnet -System.Diagnostics.StackTrace 8.0.424.16909 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.424.16909 dotnet -System.Diagnostics.Tools 8.0.424.16909 dotnet -System.Diagnostics.TraceSource 8.0.424.16909 dotnet -System.Diagnostics.Tracing 8.0.424.16909 dotnet -System.Drawing 8.0.424.16909 dotnet +System.Diagnostics.FileVersionInfo 8.0.524.21615 dotnet +System.Diagnostics.Process 8.0.524.21615 dotnet +System.Diagnostics.StackTrace 8.0.524.21615 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.524.21615 dotnet +System.Diagnostics.Tools 8.0.524.21615 dotnet +System.Diagnostics.TraceSource 8.0.524.21615 dotnet +System.Diagnostics.Tracing 8.0.524.21615 dotnet +System.Drawing 8.0.524.21615 dotnet System.Drawing.Common 7.0.22.51805 dotnet -System.Drawing.Primitives 8.0.424.16909 dotnet -System.Dynamic.Runtime 8.0.424.16909 dotnet -System.Formats.Asn1 8.0.424.16909 dotnet -System.Formats.Tar 8.0.424.16909 dotnet -System.Globalization 8.0.424.16909 dotnet -System.Globalization.Calendars 8.0.424.16909 dotnet -System.Globalization.Extensions 8.0.424.16909 dotnet -System.IO 8.0.424.16909 dotnet -System.IO.Compression 8.0.424.16909 dotnet -System.IO.Compression.Brotli 8.0.424.16909 dotnet -System.IO.Compression.FileSystem 8.0.424.16909 dotnet -System.IO.Compression.ZipFile 8.0.424.16909 dotnet -System.IO.FileSystem 8.0.424.16909 dotnet -System.IO.FileSystem.AccessControl 8.0.424.16909 dotnet -System.IO.FileSystem.DriveInfo 8.0.424.16909 dotnet -System.IO.FileSystem.Primitives 8.0.424.16909 dotnet -System.IO.FileSystem.Watcher 8.0.424.16909 dotnet +System.Drawing.Primitives 8.0.524.21615 dotnet +System.Dynamic.Runtime 8.0.524.21615 dotnet +System.Formats.Asn1 8.0.524.21615 dotnet +System.Formats.Tar 8.0.524.21615 dotnet +System.Globalization 8.0.524.21615 dotnet +System.Globalization.Calendars 8.0.524.21615 dotnet +System.Globalization.Extensions 8.0.524.21615 dotnet +System.IO 8.0.524.21615 dotnet +System.IO.Compression 8.0.524.21615 dotnet +System.IO.Compression.Brotli 8.0.524.21615 dotnet +System.IO.Compression.FileSystem 8.0.524.21615 dotnet +System.IO.Compression.ZipFile 8.0.524.21615 dotnet +System.IO.FileSystem 8.0.524.21615 dotnet +System.IO.FileSystem.AccessControl 8.0.524.21615 dotnet +System.IO.FileSystem.DriveInfo 8.0.524.21615 dotnet +System.IO.FileSystem.Primitives 8.0.524.21615 dotnet +System.IO.FileSystem.Watcher 8.0.524.21615 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.424.16909 dotnet -System.IO.MemoryMappedFiles 8.0.424.16909 dotnet +System.IO.IsolatedStorage 8.0.524.21615 dotnet +System.IO.MemoryMappedFiles 8.0.524.21615 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.424.16909 dotnet -System.IO.Pipes.AccessControl 8.0.424.16909 dotnet -System.IO.UnmanagedMemoryStream 8.0.424.16909 dotnet -System.Linq 8.0.424.16909 dotnet +System.IO.Pipes 8.0.524.21615 dotnet +System.IO.Pipes.AccessControl 8.0.524.21615 dotnet +System.IO.UnmanagedMemoryStream 8.0.524.21615 dotnet +System.Linq 8.0.524.21615 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.424.16909 dotnet -System.Linq.Parallel 8.0.424.16909 dotnet -System.Linq.Queryable 8.0.424.16909 dotnet -System.Memory 8.0.424.16909 dotnet -System.Net 8.0.424.16909 dotnet -System.Net.Http 8.0.424.16909 dotnet -System.Net.Http.Json 8.0.424.16909 dotnet -System.Net.HttpListener 8.0.424.16909 dotnet -System.Net.Mail 8.0.424.16909 dotnet -System.Net.NameResolution 8.0.424.16909 dotnet -System.Net.NetworkInformation 8.0.424.16909 dotnet -System.Net.Ping 8.0.424.16909 dotnet -System.Net.Primitives 8.0.424.16909 dotnet -System.Net.Quic 8.0.424.16909 dotnet -System.Net.Requests 8.0.424.16909 dotnet -System.Net.Security 8.0.424.16909 dotnet -System.Net.ServicePoint 8.0.424.16909 dotnet -System.Net.Sockets 8.0.424.16909 dotnet -System.Net.WebClient 8.0.424.16909 dotnet -System.Net.WebHeaderCollection 8.0.424.16909 dotnet -System.Net.WebProxy 8.0.424.16909 dotnet -System.Net.WebSockets 8.0.424.16909 dotnet -System.Net.WebSockets.Client 8.0.424.16909 dotnet -System.Numerics 8.0.424.16909 dotnet -System.Numerics.Vectors 8.0.424.16909 dotnet -System.ObjectModel 8.0.424.16909 dotnet -System.Private.CoreLib 8.0.424.16909 dotnet -System.Private.DataContractSerialization 8.0.424.16909 dotnet -System.Private.Uri 8.0.424.16909 dotnet -System.Private.Xml 8.0.424.16909 dotnet -System.Private.Xml.Linq 8.0.424.16909 dotnet -System.Reflection 8.0.424.16909 dotnet -System.Reflection.DispatchProxy 8.0.424.16909 dotnet -System.Reflection.Emit 8.0.424.16909 dotnet -System.Reflection.Emit.ILGeneration 8.0.424.16909 dotnet -System.Reflection.Emit.Lightweight 8.0.424.16909 dotnet -System.Reflection.Extensions 8.0.424.16909 dotnet -System.Reflection.Metadata 8.0.424.16909 dotnet -System.Reflection.Primitives 8.0.424.16909 dotnet -System.Reflection.TypeExtensions 8.0.424.16909 dotnet -System.Resources.Reader 8.0.424.16909 dotnet -System.Resources.ResourceManager 8.0.424.16909 dotnet -System.Resources.Writer 8.0.424.16909 dotnet -System.Runtime 8.0.424.16909 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.424.16909 dotnet -System.Runtime.CompilerServices.VisualC 8.0.424.16909 dotnet -System.Runtime.Extensions 8.0.424.16909 dotnet -System.Runtime.Handles 8.0.424.16909 dotnet -System.Runtime.InteropServices 8.0.424.16909 dotnet -System.Runtime.InteropServices.JavaScript 8.0.424.16909 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.424.16909 dotnet -System.Runtime.Intrinsics 8.0.424.16909 dotnet -System.Runtime.Loader 8.0.424.16909 dotnet -System.Runtime.Numerics 8.0.424.16909 dotnet -System.Runtime.Serialization 8.0.424.16909 dotnet -System.Runtime.Serialization.Formatters 8.0.424.16909 dotnet -System.Runtime.Serialization.Json 8.0.424.16909 dotnet -System.Runtime.Serialization.Primitives 8.0.424.16909 dotnet -System.Runtime.Serialization.Xml 8.0.424.16909 dotnet -System.Security 8.0.424.16909 dotnet -System.Security.AccessControl 8.0.424.16909 dotnet -System.Security.Claims 8.0.424.16909 dotnet -System.Security.Cryptography 8.0.424.16909 dotnet -System.Security.Cryptography.Algorithms 8.0.424.16909 dotnet -System.Security.Cryptography.Cng 8.0.424.16909 dotnet -System.Security.Cryptography.Csp 8.0.424.16909 dotnet -System.Security.Cryptography.Encoding 8.0.424.16909 dotnet -System.Security.Cryptography.OpenSsl 8.0.424.16909 dotnet +System.Linq.Expressions 8.0.524.21615 dotnet +System.Linq.Parallel 8.0.524.21615 dotnet +System.Linq.Queryable 8.0.524.21615 dotnet +System.Memory 8.0.524.21615 dotnet +System.Net 8.0.524.21615 dotnet +System.Net.Http 8.0.524.21615 dotnet +System.Net.Http.Json 8.0.524.21615 dotnet +System.Net.HttpListener 8.0.524.21615 dotnet +System.Net.Mail 8.0.524.21615 dotnet +System.Net.NameResolution 8.0.524.21615 dotnet +System.Net.NetworkInformation 8.0.524.21615 dotnet +System.Net.Ping 8.0.524.21615 dotnet +System.Net.Primitives 8.0.524.21615 dotnet +System.Net.Quic 8.0.524.21615 dotnet +System.Net.Requests 8.0.524.21615 dotnet +System.Net.Security 8.0.524.21615 dotnet +System.Net.ServicePoint 8.0.524.21615 dotnet +System.Net.Sockets 8.0.524.21615 dotnet +System.Net.WebClient 8.0.524.21615 dotnet +System.Net.WebHeaderCollection 8.0.524.21615 dotnet +System.Net.WebProxy 8.0.524.21615 dotnet +System.Net.WebSockets 8.0.524.21615 dotnet +System.Net.WebSockets.Client 8.0.524.21615 dotnet +System.Numerics 8.0.524.21615 dotnet +System.Numerics.Vectors 8.0.524.21615 dotnet +System.ObjectModel 8.0.524.21615 dotnet +System.Private.CoreLib 8.0.524.21615 dotnet +System.Private.DataContractSerialization 8.0.524.21615 dotnet +System.Private.Uri 8.0.524.21615 dotnet +System.Private.Xml 8.0.524.21615 dotnet +System.Private.Xml.Linq 8.0.524.21615 dotnet +System.Reflection 8.0.524.21615 dotnet +System.Reflection.DispatchProxy 8.0.524.21615 dotnet +System.Reflection.Emit 8.0.524.21615 dotnet +System.Reflection.Emit.ILGeneration 8.0.524.21615 dotnet +System.Reflection.Emit.Lightweight 8.0.524.21615 dotnet +System.Reflection.Extensions 8.0.524.21615 dotnet +System.Reflection.Metadata 8.0.524.21615 dotnet +System.Reflection.Primitives 8.0.524.21615 dotnet +System.Reflection.TypeExtensions 8.0.524.21615 dotnet +System.Resources.Reader 8.0.524.21615 dotnet +System.Resources.ResourceManager 8.0.524.21615 dotnet +System.Resources.Writer 8.0.524.21615 dotnet +System.Runtime 8.0.524.21615 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.524.21615 dotnet +System.Runtime.CompilerServices.VisualC 8.0.524.21615 dotnet +System.Runtime.Extensions 8.0.524.21615 dotnet +System.Runtime.Handles 8.0.524.21615 dotnet +System.Runtime.InteropServices 8.0.524.21615 dotnet +System.Runtime.InteropServices.JavaScript 8.0.524.21615 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.524.21615 dotnet +System.Runtime.Intrinsics 8.0.524.21615 dotnet +System.Runtime.Loader 8.0.524.21615 dotnet +System.Runtime.Numerics 8.0.524.21615 dotnet +System.Runtime.Serialization 8.0.524.21615 dotnet +System.Runtime.Serialization.Formatters 8.0.524.21615 dotnet +System.Runtime.Serialization.Json 8.0.524.21615 dotnet +System.Runtime.Serialization.Primitives 8.0.524.21615 dotnet +System.Runtime.Serialization.Xml 8.0.524.21615 dotnet +System.Security 8.0.524.21615 dotnet +System.Security.AccessControl 8.0.524.21615 dotnet +System.Security.Claims 8.0.524.21615 dotnet +System.Security.Cryptography 8.0.524.21615 dotnet +System.Security.Cryptography.Algorithms 8.0.524.21615 dotnet +System.Security.Cryptography.Cng 8.0.524.21615 dotnet +System.Security.Cryptography.Csp 8.0.524.21615 dotnet +System.Security.Cryptography.Encoding 8.0.524.21615 dotnet +System.Security.Cryptography.OpenSsl 8.0.524.21615 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.424.16909 dotnet -System.Security.Cryptography.X509Certificates 8.0.424.16909 dotnet -System.Security.Cryptography.Xml 8.0.23.53103 dotnet -System.Security.Principal 8.0.424.16909 dotnet -System.Security.Principal.Windows 8.0.424.16909 dotnet -System.Security.SecureString 8.0.424.16909 dotnet -System.ServiceModel.Web 8.0.424.16909 dotnet -System.ServiceProcess 8.0.424.16909 dotnet -System.Text.Encoding 8.0.424.16909 dotnet -System.Text.Encoding.CodePages 8.0.424.16909 dotnet -System.Text.Encoding.Extensions 8.0.424.16909 dotnet -System.Text.Encodings.Web 8.0.424.16909 dotnet -System.Text.Json 8.0.424.16909 dotnet -System.Text.RegularExpressions 8.0.424.16909 dotnet -System.Threading 8.0.424.16909 dotnet -System.Threading.Channels 8.0.424.16909 dotnet -System.Threading.Overlapped 8.0.424.16909 dotnet +System.Security.Cryptography.Primitives 8.0.524.21615 dotnet +System.Security.Cryptography.X509Certificates 8.0.524.21615 dotnet +System.Security.Cryptography.Xml 8.0.524.21615 dotnet +System.Security.Principal 8.0.524.21615 dotnet +System.Security.Principal.Windows 8.0.524.21615 dotnet +System.Security.SecureString 8.0.524.21615 dotnet +System.ServiceModel.Web 8.0.524.21615 dotnet +System.ServiceProcess 8.0.524.21615 dotnet +System.Text.Encoding 8.0.524.21615 dotnet +System.Text.Encoding.CodePages 8.0.524.21615 dotnet +System.Text.Encoding.Extensions 8.0.524.21615 dotnet +System.Text.Encodings.Web 8.0.524.21615 dotnet +System.Text.Json 8.0.524.21615 dotnet +System.Text.RegularExpressions 8.0.524.21615 dotnet +System.Threading 8.0.524.21615 dotnet +System.Threading.Channels 8.0.524.21615 dotnet +System.Threading.Overlapped 8.0.524.21615 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.424.16909 dotnet -System.Threading.Tasks.Dataflow 8.0.424.16909 dotnet -System.Threading.Tasks.Extensions 8.0.424.16909 dotnet -System.Threading.Tasks.Parallel 8.0.424.16909 dotnet -System.Threading.Thread 8.0.424.16909 dotnet -System.Threading.ThreadPool 8.0.424.16909 dotnet -System.Threading.Timer 8.0.424.16909 dotnet -System.Transactions 8.0.424.16909 dotnet -System.Transactions.Local 8.0.424.16909 dotnet -System.ValueTuple 8.0.424.16909 dotnet -System.Web 8.0.424.16909 dotnet -System.Web.HttpUtility 8.0.424.16909 dotnet -System.Windows 8.0.424.16909 dotnet -System.Xml 8.0.424.16909 dotnet -System.Xml.Linq 8.0.424.16909 dotnet -System.Xml.ReaderWriter 8.0.424.16909 dotnet -System.Xml.Serialization 8.0.424.16909 dotnet -System.Xml.XDocument 8.0.424.16909 dotnet -System.Xml.XPath 8.0.424.16909 dotnet -System.Xml.XPath.XDocument 8.0.424.16909 dotnet -System.Xml.XmlDocument 8.0.424.16909 dotnet -System.Xml.XmlSerializer 8.0.424.16909 dotnet +System.Threading.Tasks 8.0.524.21615 dotnet +System.Threading.Tasks.Dataflow 8.0.524.21615 dotnet +System.Threading.Tasks.Extensions 8.0.524.21615 dotnet +System.Threading.Tasks.Parallel 8.0.524.21615 dotnet +System.Threading.Thread 8.0.524.21615 dotnet +System.Threading.ThreadPool 8.0.524.21615 dotnet +System.Threading.Timer 8.0.524.21615 dotnet +System.Transactions 8.0.524.21615 dotnet +System.Transactions.Local 8.0.524.21615 dotnet +System.ValueTuple 8.0.524.21615 dotnet +System.Web 8.0.524.21615 dotnet +System.Web.HttpUtility 8.0.524.21615 dotnet +System.Windows 8.0.524.21615 dotnet +System.Xml 8.0.524.21615 dotnet +System.Xml.Linq 8.0.524.21615 dotnet +System.Xml.ReaderWriter 8.0.524.21615 dotnet +System.Xml.Serialization 8.0.524.21615 dotnet +System.Xml.XDocument 8.0.524.21615 dotnet +System.Xml.XPath 8.0.524.21615 dotnet +System.Xml.XPath.XDocument 8.0.524.21615 dotnet +System.Xml.XmlDocument 8.0.524.21615 dotnet +System.Xml.XmlSerializer 8.0.524.21615 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.424.16909 dotnet +WindowsBase 8.0.524.21615 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.1+ubu2204 deb +jellyfin 10.9.2+ubu2204 deb jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 10.9.1+ubu2204 deb -jellyfin-web 10.9.1+ubu2204 deb +jellyfin-server 10.9.2+ubu2204 deb +jellyfin-web 10.9.2+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb @@ -572,12 +572,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 8.0.424.16909 dotnet +mscorlib 8.0.524.21615 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.424.16909 dotnet +netstandard 8.0.524.21615 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.2 deb From 53f42d17ced4e9b7ca1bed280777eac77e572d36 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 18 May 2024 17:12:20 +0100 Subject: [PATCH 1995/2257] Check ffmepg path, use proper health endpoint --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index 6196b0f..d227ab9 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -1,4 +1,9 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash + +if [[ -z "${FFMPEG_PATH}" ]] || [[ ! -f "${FFMPEG_PATH}" ]]; then + FFMPEG_PATH=/usr/lib/jellyfin-ffmpeg/ffmpeg +fi export \ JELLYFIN_DATA_DIR="/config/data" \ @@ -8,6 +13,6 @@ export \ JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8096" \ + s6-notifyoncheck -d -n 300 -w 1000 -c "curl -s --output /dev/null http://localhost:8096/health" \ s6-setuidgid abc /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg + --ffmpeg="${FFMPEG_PATH}" From f70926cb0e2f3c921e01e88c04864c88b919cebe Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 18 May 2024 17:13:40 +0100 Subject: [PATCH 1996/2257] Check ffmepg path, use proper health endpoint --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index b1e90ce..d227ab9 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -1,6 +1,10 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash +if [[ -z "${FFMPEG_PATH}" ]] || [[ ! -f "${FFMPEG_PATH}" ]]; then + FFMPEG_PATH=/usr/lib/jellyfin-ffmpeg/ffmpeg +fi + export \ JELLYFIN_DATA_DIR="/config/data" \ JELLYFIN_CONFIG_DIR="/config" \ @@ -9,6 +13,6 @@ export \ JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" exec \ - s6-notifyoncheck -d -n 300 -w 1000 \ + s6-notifyoncheck -d -n 300 -w 1000 -c "curl -s --output /dev/null http://localhost:8096/health" \ s6-setuidgid abc /usr/bin/jellyfin \ - --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg + --ffmpeg="${FFMPEG_PATH}" From 048fd11f093d08c4cdb7f93a926b32427bc7989b Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 18 May 2024 17:15:41 +0100 Subject: [PATCH 1997/2257] Oh, it was already using the health endpoint --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index d227ab9..c9838e5 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -13,6 +13,6 @@ export \ JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "curl -s --output /dev/null http://localhost:8096/health" \ + s6-notifyoncheck -d -n 300 -w 1000 \ s6-setuidgid abc /usr/bin/jellyfin \ --ffmpeg="${FFMPEG_PATH}" From 72c8f9a3b4edbf7e4e8068b79122f53a8da424d3 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 18 May 2024 17:16:33 +0100 Subject: [PATCH 1998/2257] Move check to file to match master --- Dockerfile | 5 +++-- Dockerfile.aarch64 | 5 +++-- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check | 9 +++++++++ root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check diff --git a/Dockerfile b/Dockerfile index 0e6c46e..4684d63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,8 @@ RUN \ at \ jellyfin-server=${JELLYFIN_RELEASE} \ jellyfin-ffmpeg6 \ - mesa-va-drivers && \ + mesa-va-drivers \ + xmlstarlet && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ @@ -34,7 +35,7 @@ RUN \ /var/tmp/* # add local files -COPY root/ / +COPY root/ / # ports and volumes EXPOSE 8096 8920 diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 6c66d8c..2fa3997 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -28,7 +28,8 @@ RUN \ jellyfin-ffmpeg6 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ - libraspberrypi0 && \ + libraspberrypi0 \ + xmlstarlet && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ @@ -36,7 +37,7 @@ RUN \ /var/tmp/* # add local files -COPY root/ / +COPY root/ / # ports and volumes EXPOSE 8096 8920 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check new file mode 100755 index 0000000..2b7be3e --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check @@ -0,0 +1,9 @@ +#!/bin/bash + +PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) + +if [[ $(curl -sL "http://localhost:${PORT:-8096}/health" 2>/dev/null) = "Healthy" ]]; then + exit 0 +else + exit 1 +fi diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index d227ab9..c9838e5 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -13,6 +13,6 @@ export \ JELLYFIN_WEB_DIR="/usr/share/jellyfin/web" exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "curl -s --output /dev/null http://localhost:8096/health" \ + s6-notifyoncheck -d -n 300 -w 1000 \ s6-setuidgid abc /usr/bin/jellyfin \ --ffmpeg="${FFMPEG_PATH}" From ec28cb14559f2706c8be1daf722396126f67b523 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 18 May 2024 19:35:45 +0100 Subject: [PATCH 1999/2257] Don't try and read network.xml if it doesn't exist (like on first run) --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check index 2b7be3e..fa4205c 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check @@ -1,6 +1,8 @@ #!/bin/bash -PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) +if [[ -f "/config/network.xml" ]]; then + PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) +fi if [[ $(curl -sL "http://localhost:${PORT:-8096}/health" 2>/dev/null) = "Healthy" ]]; then exit 0 From 1c268525638dca31d5d823642d9ad9178651a9ae Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 18 May 2024 19:36:27 +0100 Subject: [PATCH 2000/2257] Don't try and read network.xml if it doesn't exist (like on first run) --- root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check index 2b7be3e..fa4205c 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/data/check @@ -1,6 +1,8 @@ #!/bin/bash -PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) +if [[ -f "/config/network.xml" ]]; then + PORT=$(xmlstarlet sel -T -t -v /NetworkConfiguration/HttpServerPortNumber /config/network.xml) +fi if [[ $(curl -sL "http://localhost:${PORT:-8096}/health" 2>/dev/null) = "Healthy" ]]; then exit 0 From 44bbab58749bf3262c5bacac02f365c69eb762a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 May 2024 19:10:45 +0000 Subject: [PATCH 2001/2257] Bot Updating Package Versions --- package_versions.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package_versions.txt b/package_versions.txt index 97c01ba..36c986c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -561,6 +561,7 @@ libxext6 2:1.3.4-1buil libxml2 2.9.13+dfsg-1ubuntu0.4 deb libxrender1 1:0.9.10-1build4 deb libxshmfence1 1.3-1build4 deb +libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb libxxhash0 0.8.1-1 deb libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb @@ -597,5 +598,6 @@ ubuntu-keyring 2021.03.26 ucf 3.0043 deb usrmerge 25ubuntu2 deb util-linux 2.37.2-4ubuntu3.4 deb +xmlstarlet 1.6.1-2.1 deb zlib.net 1.0.6.0 dotnet zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb From 80e75447311d43e6493f2445019fb1ffff08acff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 May 2024 12:20:36 +0000 Subject: [PATCH 2002/2257] Bot Updating Package Versions --- package_versions.txt | 560 +++++++++++++++++++++---------------------- 1 file changed, 280 insertions(+), 280 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 36c986c..96a787b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,112 +18,112 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.0 dotnet (+13 duplicates) +Jellyfin Server 10.10.0 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.0 dotnet -Jellyfin.Extensions.dll 10.9.0 dotnet +Jellyfin.Data.dll 10.10.0 dotnet +Jellyfin.Extensions.dll 10.10.0 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.0 dotnet +Jellyfin.Networking.dll 10.10.0 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.424.17014 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authorization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Server 8.0.424.17014 dotnet -Microsoft.AspNetCore.Components.Web 8.0.424.17014 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.424.17014 dotnet -Microsoft.AspNetCore.Cors 8.0.424.17014 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.424.17014 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.424.17014 dotnet -Microsoft.AspNetCore.DataProtection 8.0.424.17014 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.424.17014 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.424.17014 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.424.17014 dotnet -Microsoft.AspNetCore.Hosting 8.0.424.17014 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Features 8.0.424.17014 dotnet -Microsoft.AspNetCore.Http.Results 8.0.424.17014 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.424.17014 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.424.17014 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.424.17014 dotnet -Microsoft.AspNetCore.Identity 8.0.424.17014 dotnet -Microsoft.AspNetCore.Localization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.424.17014 dotnet -Microsoft.AspNetCore.Metadata 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.424.17014 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.424.17014 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.424.17014 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.424.17014 dotnet -Microsoft.AspNetCore.Razor 8.0.424.17014 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.424.17014 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.424.17014 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.424.17014 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.424.17014 dotnet -Microsoft.AspNetCore.Rewrite 8.0.424.17014 dotnet -Microsoft.AspNetCore.Routing 8.0.424.17014 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.424.17014 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.424.17014 dotnet -Microsoft.AspNetCore.Session 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.424.17014 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.424.17014 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.424.17014 dotnet -Microsoft.AspNetCore.WebSockets 8.0.424.17014 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.424.17014 dotnet +Microsoft.AspNetCore 8.0.524.22404 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authorization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Server 8.0.524.22404 dotnet +Microsoft.AspNetCore.Components.Web 8.0.524.22404 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.524.22404 dotnet +Microsoft.AspNetCore.Cors 8.0.524.22404 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.524.22404 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.524.22404 dotnet +Microsoft.AspNetCore.DataProtection 8.0.524.22404 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.524.22404 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.524.22404 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.524.22404 dotnet +Microsoft.AspNetCore.Hosting 8.0.524.22404 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Features 8.0.524.22404 dotnet +Microsoft.AspNetCore.Http.Results 8.0.524.22404 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.524.22404 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.524.22404 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.524.22404 dotnet +Microsoft.AspNetCore.Identity 8.0.524.22404 dotnet +Microsoft.AspNetCore.Localization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.524.22404 dotnet +Microsoft.AspNetCore.Metadata 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.524.22404 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.524.22404 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.524.22404 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.524.22404 dotnet +Microsoft.AspNetCore.Razor 8.0.524.22404 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.524.22404 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.524.22404 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.524.22404 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.524.22404 dotnet +Microsoft.AspNetCore.Rewrite 8.0.524.22404 dotnet +Microsoft.AspNetCore.Routing 8.0.524.22404 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.524.22404 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.524.22404 dotnet +Microsoft.AspNetCore.Session 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.524.22404 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.524.22404 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.524.22404 dotnet +Microsoft.AspNetCore.WebSockets 8.0.524.22404 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.524.22404 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.424.16909 dotnet -Microsoft.Data.Sqlite 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.424.16902 dotnet +Microsoft.CSharp 8.0.524.21615 dotnet +Microsoft.Data.Sqlite 8.0.524.21704 dotnet +Microsoft.EntityFrameworkCore 8.0.524.21704 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.524.21704 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.524.21704 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.524.21704 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -134,7 +134,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.424.17014 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.524.22404 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -142,22 +142,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.424.17014 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.424.17014 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.424.17014 dotnet -Microsoft.Extensions.Features 8.0.424.17014 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.524.22404 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.524.22404 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.524.22404 dotnet +Microsoft.Extensions.Features 8.0.524.22404 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.424.17014 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.524.22404 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.424.17014 dotnet -Microsoft.Extensions.Identity.Stores 8.0.424.17014 dotnet -Microsoft.Extensions.Localization 8.0.424.17014 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.424.17014 dotnet +Microsoft.Extensions.Identity.Core 8.0.524.22404 dotnet +Microsoft.Extensions.Identity.Stores 8.0.524.22404 dotnet +Microsoft.Extensions.Localization 8.0.524.22404 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.524.22404 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,19 +166,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.424.17014 dotnet +Microsoft.Extensions.ObjectPool 8.0.524.22404 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.424.17014 dotnet -Microsoft.JSInterop 8.0.424.17014 dotnet -Microsoft.Net.Http.Headers 8.0.424.17014 dotnet +Microsoft.Extensions.WebEncoders 8.0.524.22404 dotnet +Microsoft.JSInterop 8.0.524.22404 dotnet +Microsoft.Net.Http.Headers 8.0.524.22404 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.424.16909 dotnet -Microsoft.VisualBasic.Core 13.0.424.16909 dotnet -Microsoft.Win32.Primitives 8.0.424.16909 dotnet -Microsoft.Win32.Registry 8.0.424.16909 dotnet +Microsoft.VisualBasic 8.0.524.21615 dotnet +Microsoft.VisualBasic.Core 13.0.524.21615 dotnet +Microsoft.Win32.Primitives 8.0.524.21615 dotnet +Microsoft.Win32.Registry 8.0.524.21615 dotnet Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -211,178 +211,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.424.16909 dotnet -System.AppContext 8.0.424.16909 dotnet -System.Buffers 8.0.424.16909 dotnet -System.Collections 8.0.424.16909 dotnet -System.Collections.Concurrent 8.0.424.16909 dotnet -System.Collections.Immutable 8.0.424.16909 dotnet -System.Collections.NonGeneric 8.0.424.16909 dotnet -System.Collections.Specialized 8.0.424.16909 dotnet -System.ComponentModel 8.0.424.16909 dotnet -System.ComponentModel.Annotations 8.0.424.16909 dotnet -System.ComponentModel.DataAnnotations 8.0.424.16909 dotnet -System.ComponentModel.EventBasedAsync 8.0.424.16909 dotnet -System.ComponentModel.Primitives 8.0.424.16909 dotnet -System.ComponentModel.TypeConverter 8.0.424.16909 dotnet -System.Configuration 8.0.424.16909 dotnet -System.Console 8.0.424.16909 dotnet -System.Core 8.0.424.16909 dotnet -System.Data 8.0.424.16909 dotnet -System.Data.Common 8.0.424.16909 dotnet -System.Data.DataSetExtensions 8.0.424.16909 dotnet -System.Diagnostics.Contracts 8.0.424.16909 dotnet -System.Diagnostics.Debug 8.0.424.16909 dotnet -System.Diagnostics.DiagnosticSource 8.0.424.16909 dotnet +System 8.0.524.21615 dotnet +System.AppContext 8.0.524.21615 dotnet +System.Buffers 8.0.524.21615 dotnet +System.Collections 8.0.524.21615 dotnet +System.Collections.Concurrent 8.0.524.21615 dotnet +System.Collections.Immutable 8.0.524.21615 dotnet +System.Collections.NonGeneric 8.0.524.21615 dotnet +System.Collections.Specialized 8.0.524.21615 dotnet +System.ComponentModel 8.0.524.21615 dotnet +System.ComponentModel.Annotations 8.0.524.21615 dotnet +System.ComponentModel.DataAnnotations 8.0.524.21615 dotnet +System.ComponentModel.EventBasedAsync 8.0.524.21615 dotnet +System.ComponentModel.Primitives 8.0.524.21615 dotnet +System.ComponentModel.TypeConverter 8.0.524.21615 dotnet +System.Configuration 8.0.524.21615 dotnet +System.Console 8.0.524.21615 dotnet +System.Core 8.0.524.21615 dotnet +System.Data 8.0.524.21615 dotnet +System.Data.Common 8.0.524.21615 dotnet +System.Data.DataSetExtensions 8.0.524.21615 dotnet +System.Diagnostics.Contracts 8.0.524.21615 dotnet +System.Diagnostics.Debug 8.0.524.21615 dotnet +System.Diagnostics.DiagnosticSource 8.0.524.21615 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.424.16909 dotnet -System.Diagnostics.Process 8.0.424.16909 dotnet -System.Diagnostics.StackTrace 8.0.424.16909 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.424.16909 dotnet -System.Diagnostics.Tools 8.0.424.16909 dotnet -System.Diagnostics.TraceSource 8.0.424.16909 dotnet -System.Diagnostics.Tracing 8.0.424.16909 dotnet -System.Drawing 8.0.424.16909 dotnet +System.Diagnostics.FileVersionInfo 8.0.524.21615 dotnet +System.Diagnostics.Process 8.0.524.21615 dotnet +System.Diagnostics.StackTrace 8.0.524.21615 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.524.21615 dotnet +System.Diagnostics.Tools 8.0.524.21615 dotnet +System.Diagnostics.TraceSource 8.0.524.21615 dotnet +System.Diagnostics.Tracing 8.0.524.21615 dotnet +System.Drawing 8.0.524.21615 dotnet System.Drawing.Common 7.0.22.51805 dotnet -System.Drawing.Primitives 8.0.424.16909 dotnet -System.Dynamic.Runtime 8.0.424.16909 dotnet -System.Formats.Asn1 8.0.424.16909 dotnet -System.Formats.Tar 8.0.424.16909 dotnet -System.Globalization 8.0.424.16909 dotnet -System.Globalization.Calendars 8.0.424.16909 dotnet -System.Globalization.Extensions 8.0.424.16909 dotnet -System.IO 8.0.424.16909 dotnet -System.IO.Compression 8.0.424.16909 dotnet -System.IO.Compression.Brotli 8.0.424.16909 dotnet -System.IO.Compression.FileSystem 8.0.424.16909 dotnet -System.IO.Compression.ZipFile 8.0.424.16909 dotnet -System.IO.FileSystem 8.0.424.16909 dotnet -System.IO.FileSystem.AccessControl 8.0.424.16909 dotnet -System.IO.FileSystem.DriveInfo 8.0.424.16909 dotnet -System.IO.FileSystem.Primitives 8.0.424.16909 dotnet -System.IO.FileSystem.Watcher 8.0.424.16909 dotnet +System.Drawing.Primitives 8.0.524.21615 dotnet +System.Dynamic.Runtime 8.0.524.21615 dotnet +System.Formats.Asn1 8.0.524.21615 dotnet +System.Formats.Tar 8.0.524.21615 dotnet +System.Globalization 8.0.524.21615 dotnet +System.Globalization.Calendars 8.0.524.21615 dotnet +System.Globalization.Extensions 8.0.524.21615 dotnet +System.IO 8.0.524.21615 dotnet +System.IO.Compression 8.0.524.21615 dotnet +System.IO.Compression.Brotli 8.0.524.21615 dotnet +System.IO.Compression.FileSystem 8.0.524.21615 dotnet +System.IO.Compression.ZipFile 8.0.524.21615 dotnet +System.IO.FileSystem 8.0.524.21615 dotnet +System.IO.FileSystem.AccessControl 8.0.524.21615 dotnet +System.IO.FileSystem.DriveInfo 8.0.524.21615 dotnet +System.IO.FileSystem.Primitives 8.0.524.21615 dotnet +System.IO.FileSystem.Watcher 8.0.524.21615 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.424.16909 dotnet -System.IO.MemoryMappedFiles 8.0.424.16909 dotnet +System.IO.IsolatedStorage 8.0.524.21615 dotnet +System.IO.MemoryMappedFiles 8.0.524.21615 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.424.16909 dotnet -System.IO.Pipes.AccessControl 8.0.424.16909 dotnet -System.IO.UnmanagedMemoryStream 8.0.424.16909 dotnet -System.Linq 8.0.424.16909 dotnet +System.IO.Pipes 8.0.524.21615 dotnet +System.IO.Pipes.AccessControl 8.0.524.21615 dotnet +System.IO.UnmanagedMemoryStream 8.0.524.21615 dotnet +System.Linq 8.0.524.21615 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.424.16909 dotnet -System.Linq.Parallel 8.0.424.16909 dotnet -System.Linq.Queryable 8.0.424.16909 dotnet -System.Memory 8.0.424.16909 dotnet -System.Net 8.0.424.16909 dotnet -System.Net.Http 8.0.424.16909 dotnet -System.Net.Http.Json 8.0.424.16909 dotnet -System.Net.HttpListener 8.0.424.16909 dotnet -System.Net.Mail 8.0.424.16909 dotnet -System.Net.NameResolution 8.0.424.16909 dotnet -System.Net.NetworkInformation 8.0.424.16909 dotnet -System.Net.Ping 8.0.424.16909 dotnet -System.Net.Primitives 8.0.424.16909 dotnet -System.Net.Quic 8.0.424.16909 dotnet -System.Net.Requests 8.0.424.16909 dotnet -System.Net.Security 8.0.424.16909 dotnet -System.Net.ServicePoint 8.0.424.16909 dotnet -System.Net.Sockets 8.0.424.16909 dotnet -System.Net.WebClient 8.0.424.16909 dotnet -System.Net.WebHeaderCollection 8.0.424.16909 dotnet -System.Net.WebProxy 8.0.424.16909 dotnet -System.Net.WebSockets 8.0.424.16909 dotnet -System.Net.WebSockets.Client 8.0.424.16909 dotnet -System.Numerics 8.0.424.16909 dotnet -System.Numerics.Vectors 8.0.424.16909 dotnet -System.ObjectModel 8.0.424.16909 dotnet -System.Private.CoreLib 8.0.424.16909 dotnet -System.Private.DataContractSerialization 8.0.424.16909 dotnet -System.Private.Uri 8.0.424.16909 dotnet -System.Private.Xml 8.0.424.16909 dotnet -System.Private.Xml.Linq 8.0.424.16909 dotnet -System.Reflection 8.0.424.16909 dotnet -System.Reflection.DispatchProxy 8.0.424.16909 dotnet -System.Reflection.Emit 8.0.424.16909 dotnet -System.Reflection.Emit.ILGeneration 8.0.424.16909 dotnet -System.Reflection.Emit.Lightweight 8.0.424.16909 dotnet -System.Reflection.Extensions 8.0.424.16909 dotnet -System.Reflection.Metadata 8.0.424.16909 dotnet -System.Reflection.Primitives 8.0.424.16909 dotnet -System.Reflection.TypeExtensions 8.0.424.16909 dotnet -System.Resources.Reader 8.0.424.16909 dotnet -System.Resources.ResourceManager 8.0.424.16909 dotnet -System.Resources.Writer 8.0.424.16909 dotnet -System.Runtime 8.0.424.16909 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.424.16909 dotnet -System.Runtime.CompilerServices.VisualC 8.0.424.16909 dotnet -System.Runtime.Extensions 8.0.424.16909 dotnet -System.Runtime.Handles 8.0.424.16909 dotnet -System.Runtime.InteropServices 8.0.424.16909 dotnet -System.Runtime.InteropServices.JavaScript 8.0.424.16909 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.424.16909 dotnet -System.Runtime.Intrinsics 8.0.424.16909 dotnet -System.Runtime.Loader 8.0.424.16909 dotnet -System.Runtime.Numerics 8.0.424.16909 dotnet -System.Runtime.Serialization 8.0.424.16909 dotnet -System.Runtime.Serialization.Formatters 8.0.424.16909 dotnet -System.Runtime.Serialization.Json 8.0.424.16909 dotnet -System.Runtime.Serialization.Primitives 8.0.424.16909 dotnet -System.Runtime.Serialization.Xml 8.0.424.16909 dotnet -System.Security 8.0.424.16909 dotnet -System.Security.AccessControl 8.0.424.16909 dotnet -System.Security.Claims 8.0.424.16909 dotnet -System.Security.Cryptography 8.0.424.16909 dotnet -System.Security.Cryptography.Algorithms 8.0.424.16909 dotnet -System.Security.Cryptography.Cng 8.0.424.16909 dotnet -System.Security.Cryptography.Csp 8.0.424.16909 dotnet -System.Security.Cryptography.Encoding 8.0.424.16909 dotnet -System.Security.Cryptography.OpenSsl 8.0.424.16909 dotnet +System.Linq.Expressions 8.0.524.21615 dotnet +System.Linq.Parallel 8.0.524.21615 dotnet +System.Linq.Queryable 8.0.524.21615 dotnet +System.Memory 8.0.524.21615 dotnet +System.Net 8.0.524.21615 dotnet +System.Net.Http 8.0.524.21615 dotnet +System.Net.Http.Json 8.0.524.21615 dotnet +System.Net.HttpListener 8.0.524.21615 dotnet +System.Net.Mail 8.0.524.21615 dotnet +System.Net.NameResolution 8.0.524.21615 dotnet +System.Net.NetworkInformation 8.0.524.21615 dotnet +System.Net.Ping 8.0.524.21615 dotnet +System.Net.Primitives 8.0.524.21615 dotnet +System.Net.Quic 8.0.524.21615 dotnet +System.Net.Requests 8.0.524.21615 dotnet +System.Net.Security 8.0.524.21615 dotnet +System.Net.ServicePoint 8.0.524.21615 dotnet +System.Net.Sockets 8.0.524.21615 dotnet +System.Net.WebClient 8.0.524.21615 dotnet +System.Net.WebHeaderCollection 8.0.524.21615 dotnet +System.Net.WebProxy 8.0.524.21615 dotnet +System.Net.WebSockets 8.0.524.21615 dotnet +System.Net.WebSockets.Client 8.0.524.21615 dotnet +System.Numerics 8.0.524.21615 dotnet +System.Numerics.Vectors 8.0.524.21615 dotnet +System.ObjectModel 8.0.524.21615 dotnet +System.Private.CoreLib 8.0.524.21615 dotnet +System.Private.DataContractSerialization 8.0.524.21615 dotnet +System.Private.Uri 8.0.524.21615 dotnet +System.Private.Xml 8.0.524.21615 dotnet +System.Private.Xml.Linq 8.0.524.21615 dotnet +System.Reflection 8.0.524.21615 dotnet +System.Reflection.DispatchProxy 8.0.524.21615 dotnet +System.Reflection.Emit 8.0.524.21615 dotnet +System.Reflection.Emit.ILGeneration 8.0.524.21615 dotnet +System.Reflection.Emit.Lightweight 8.0.524.21615 dotnet +System.Reflection.Extensions 8.0.524.21615 dotnet +System.Reflection.Metadata 8.0.524.21615 dotnet +System.Reflection.Primitives 8.0.524.21615 dotnet +System.Reflection.TypeExtensions 8.0.524.21615 dotnet +System.Resources.Reader 8.0.524.21615 dotnet +System.Resources.ResourceManager 8.0.524.21615 dotnet +System.Resources.Writer 8.0.524.21615 dotnet +System.Runtime 8.0.524.21615 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.524.21615 dotnet +System.Runtime.CompilerServices.VisualC 8.0.524.21615 dotnet +System.Runtime.Extensions 8.0.524.21615 dotnet +System.Runtime.Handles 8.0.524.21615 dotnet +System.Runtime.InteropServices 8.0.524.21615 dotnet +System.Runtime.InteropServices.JavaScript 8.0.524.21615 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.524.21615 dotnet +System.Runtime.Intrinsics 8.0.524.21615 dotnet +System.Runtime.Loader 8.0.524.21615 dotnet +System.Runtime.Numerics 8.0.524.21615 dotnet +System.Runtime.Serialization 8.0.524.21615 dotnet +System.Runtime.Serialization.Formatters 8.0.524.21615 dotnet +System.Runtime.Serialization.Json 8.0.524.21615 dotnet +System.Runtime.Serialization.Primitives 8.0.524.21615 dotnet +System.Runtime.Serialization.Xml 8.0.524.21615 dotnet +System.Security 8.0.524.21615 dotnet +System.Security.AccessControl 8.0.524.21615 dotnet +System.Security.Claims 8.0.524.21615 dotnet +System.Security.Cryptography 8.0.524.21615 dotnet +System.Security.Cryptography.Algorithms 8.0.524.21615 dotnet +System.Security.Cryptography.Cng 8.0.524.21615 dotnet +System.Security.Cryptography.Csp 8.0.524.21615 dotnet +System.Security.Cryptography.Encoding 8.0.524.21615 dotnet +System.Security.Cryptography.OpenSsl 8.0.524.21615 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.424.16909 dotnet -System.Security.Cryptography.X509Certificates 8.0.424.16909 dotnet -System.Security.Cryptography.Xml 8.0.23.53103 dotnet -System.Security.Principal 8.0.424.16909 dotnet -System.Security.Principal.Windows 8.0.424.16909 dotnet -System.Security.SecureString 8.0.424.16909 dotnet -System.ServiceModel.Web 8.0.424.16909 dotnet -System.ServiceProcess 8.0.424.16909 dotnet -System.Text.Encoding 8.0.424.16909 dotnet -System.Text.Encoding.CodePages 8.0.424.16909 dotnet -System.Text.Encoding.Extensions 8.0.424.16909 dotnet -System.Text.Encodings.Web 8.0.424.16909 dotnet -System.Text.Json 8.0.424.16909 dotnet -System.Text.RegularExpressions 8.0.424.16909 dotnet -System.Threading 8.0.424.16909 dotnet -System.Threading.Channels 8.0.424.16909 dotnet -System.Threading.Overlapped 8.0.424.16909 dotnet +System.Security.Cryptography.Primitives 8.0.524.21615 dotnet +System.Security.Cryptography.X509Certificates 8.0.524.21615 dotnet +System.Security.Cryptography.Xml 8.0.524.21615 dotnet +System.Security.Principal 8.0.524.21615 dotnet +System.Security.Principal.Windows 8.0.524.21615 dotnet +System.Security.SecureString 8.0.524.21615 dotnet +System.ServiceModel.Web 8.0.524.21615 dotnet +System.ServiceProcess 8.0.524.21615 dotnet +System.Text.Encoding 8.0.524.21615 dotnet +System.Text.Encoding.CodePages 8.0.524.21615 dotnet +System.Text.Encoding.Extensions 8.0.524.21615 dotnet +System.Text.Encodings.Web 8.0.524.21615 dotnet +System.Text.Json 8.0.524.21615 dotnet +System.Text.RegularExpressions 8.0.524.21615 dotnet +System.Threading 8.0.524.21615 dotnet +System.Threading.Channels 8.0.524.21615 dotnet +System.Threading.Overlapped 8.0.524.21615 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.424.16909 dotnet -System.Threading.Tasks.Dataflow 8.0.424.16909 dotnet -System.Threading.Tasks.Extensions 8.0.424.16909 dotnet -System.Threading.Tasks.Parallel 8.0.424.16909 dotnet -System.Threading.Thread 8.0.424.16909 dotnet -System.Threading.ThreadPool 8.0.424.16909 dotnet -System.Threading.Timer 8.0.424.16909 dotnet -System.Transactions 8.0.424.16909 dotnet -System.Transactions.Local 8.0.424.16909 dotnet -System.ValueTuple 8.0.424.16909 dotnet -System.Web 8.0.424.16909 dotnet -System.Web.HttpUtility 8.0.424.16909 dotnet -System.Windows 8.0.424.16909 dotnet -System.Xml 8.0.424.16909 dotnet -System.Xml.Linq 8.0.424.16909 dotnet -System.Xml.ReaderWriter 8.0.424.16909 dotnet -System.Xml.Serialization 8.0.424.16909 dotnet -System.Xml.XDocument 8.0.424.16909 dotnet -System.Xml.XPath 8.0.424.16909 dotnet -System.Xml.XPath.XDocument 8.0.424.16909 dotnet -System.Xml.XmlDocument 8.0.424.16909 dotnet -System.Xml.XmlSerializer 8.0.424.16909 dotnet +System.Threading.Tasks 8.0.524.21615 dotnet +System.Threading.Tasks.Dataflow 8.0.524.21615 dotnet +System.Threading.Tasks.Extensions 8.0.524.21615 dotnet +System.Threading.Tasks.Parallel 8.0.524.21615 dotnet +System.Threading.Thread 8.0.524.21615 dotnet +System.Threading.ThreadPool 8.0.524.21615 dotnet +System.Threading.Timer 8.0.524.21615 dotnet +System.Transactions 8.0.524.21615 dotnet +System.Transactions.Local 8.0.524.21615 dotnet +System.ValueTuple 8.0.524.21615 dotnet +System.Web 8.0.524.21615 dotnet +System.Web.HttpUtility 8.0.524.21615 dotnet +System.Windows 8.0.524.21615 dotnet +System.Xml 8.0.524.21615 dotnet +System.Xml.Linq 8.0.524.21615 dotnet +System.Xml.ReaderWriter 8.0.524.21615 dotnet +System.Xml.Serialization 8.0.524.21615 dotnet +System.Xml.XDocument 8.0.524.21615 dotnet +System.Xml.XPath 8.0.524.21615 dotnet +System.Xml.XPath.XDocument 8.0.524.21615 dotnet +System.Xml.XmlDocument 8.0.524.21615 dotnet +System.Xml.XmlSerializer 8.0.524.21615 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.424.16909 dotnet +WindowsBase 8.0.524.21615 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 2024050906+ubu2204 deb -jellyfin-web 2024050906+ubu2204 deb +jellyfin-server 2024052005+ubu2204 deb +jellyfin-web 2024052005+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -573,12 +573,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 8.0.424.16909 dotnet +mscorlib 8.0.524.21615 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.424.16909 dotnet +netstandard 8.0.524.21615 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.2 deb From fc23fea9d357f1e78529952fe18aa54c75c1edde Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 May 2024 12:42:55 +0000 Subject: [PATCH 2003/2257] Bot Updating Templated Files --- Jenkinsfile | 41 +++++++++++------------------------------ 1 file changed, 11 insertions(+), 30 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f8307dc..e525f2b 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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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}:latest || : - docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest - docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 + done + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then - docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : - docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 - fi - token=$(curl -sX GET "https://ghcr.io/token?scope=repository%3Alinuxserver%2F${CONTAINER_NAME}%3Apull" | jq -r '.token') - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/linuxserver/${CONTAINER_NAME}/manifests/arm32v7-latest") - if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest || : - docker manifest create ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:amd64-latest - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest - fi - docker manifest push --purge ${MANIFESTIMAGE}:latest - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} - docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi done ''' From cba6871eb1e6e843df5d6325bc54ed46ee6bfd0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 May 2024 12:43:48 +0000 Subject: [PATCH 2004/2257] Bot Updating Templated Files --- Jenkinsfile | 41 +++++++++++------------------------------ 1 file changed, 11 insertions(+), 30 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 08b9919..752e230 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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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 1c8483967cc717678ff0b4cc2d06f47c007dfc1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 May 2024 12:45:51 +0000 Subject: [PATCH 2005/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e307aa..5079c09 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Find us at: # [linuxserver/jellyfin](https://github.com/linuxserver/docker-jellyfin) -[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fjellyfin?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fjellyfin) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fjellyfin?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-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/packages) From 2935b5772509bb7d7237e416c9e0268514215797 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 May 2024 12:45:58 +0000 Subject: [PATCH 2006/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9702eb6..a9b15bc 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Find us at: # [linuxserver/jellyfin](https://github.com/linuxserver/docker-jellyfin) -[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fjellyfin?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fjellyfin) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fjellyfin?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-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-jellyfin/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-jellyfin/packages) From e089601051a28574683fc8316f05d66399a45be1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 27 May 2024 00:42:48 +0000 Subject: [PATCH 2007/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b033af2..2eb6002 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,14 +18,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.2 dotnet (+13 duplicates) +Jellyfin Server 10.9.3 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.2 dotnet -Jellyfin.Extensions.dll 10.9.2 dotnet +Jellyfin.Data.dll 10.9.3 dotnet +Jellyfin.Extensions.dll 10.9.3 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.2 dotnet +Jellyfin.Networking.dll 10.9.3 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.2+ubu2204 deb -jellyfin-ffmpeg6 6.0.1-6-jammy deb -jellyfin-server 10.9.2+ubu2204 deb -jellyfin-web 10.9.2+ubu2204 deb +jellyfin 10.9.3+ubu2204 deb +jellyfin-ffmpeg6 6.0.1-7-jammy deb +jellyfin-server 10.9.3+ubu2204 deb +jellyfin-web 10.9.3+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb From 2b7c9b4601a4d28e9a010a0a8bb5795319530c33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 May 2024 12:45:24 +0000 Subject: [PATCH 2008/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 96a787b..7d4a308 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-6-jammy deb +jellyfin-ffmpeg6 6.0.1-7-jammy deb jellyfin-server 2024052005+ubu2204 deb jellyfin-web 2024052005+ubu2204 deb jq 1.6-2.1ubuntu3 deb From 40f93f0fe306ed6938702bc823e8a30d6080a2b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jun 2024 23:15:00 +0000 Subject: [PATCH 2009/2257] Bot Updating Package Versions --- package_versions.txt | 564 +++++++++++++++++++++---------------------- 1 file changed, 282 insertions(+), 282 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2eb6002..ca17047 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,119 +11,119 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.4.3.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.5.0.0 dotnet EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.2 dotnet ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.3 dotnet (+13 duplicates) +Jellyfin Server 10.9.4 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.3 dotnet -Jellyfin.Extensions.dll 10.9.3 dotnet +Jellyfin.Data.dll 10.9.4 dotnet +Jellyfin.Extensions.dll 10.9.4 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.3 dotnet +Jellyfin.Networking.dll 10.9.4 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.524.22404 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authorization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Server 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Web 8.0.524.22404 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.524.22404 dotnet -Microsoft.AspNetCore.Cors 8.0.524.22404 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.524.22404 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.524.22404 dotnet -Microsoft.AspNetCore.DataProtection 8.0.524.22404 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.524.22404 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.524.22404 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.524.22404 dotnet -Microsoft.AspNetCore.Hosting 8.0.524.22404 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Features 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Results 8.0.524.22404 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.524.22404 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.524.22404 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.524.22404 dotnet -Microsoft.AspNetCore.Identity 8.0.524.22404 dotnet -Microsoft.AspNetCore.Localization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.524.22404 dotnet -Microsoft.AspNetCore.Metadata 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.524.22404 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.524.22404 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.524.22404 dotnet -Microsoft.AspNetCore.Razor 8.0.524.22404 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.524.22404 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.524.22404 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.524.22404 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.524.22404 dotnet -Microsoft.AspNetCore.Rewrite 8.0.524.22404 dotnet -Microsoft.AspNetCore.Routing 8.0.524.22404 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.524.22404 dotnet -Microsoft.AspNetCore.Session 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.524.22404 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.524.22404 dotnet -Microsoft.AspNetCore.WebSockets 8.0.524.22404 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.524.22404 dotnet +Microsoft.AspNetCore 8.0.624.26909 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authorization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Server 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Web 8.0.624.26909 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.624.26909 dotnet +Microsoft.AspNetCore.Cors 8.0.624.26909 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.624.26909 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.624.26909 dotnet +Microsoft.AspNetCore.DataProtection 8.0.624.26909 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.624.26909 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.624.26909 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.624.26909 dotnet +Microsoft.AspNetCore.Hosting 8.0.624.26909 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Features 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Results 8.0.624.26909 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.624.26909 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.624.26909 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.624.26909 dotnet +Microsoft.AspNetCore.Identity 8.0.624.26909 dotnet +Microsoft.AspNetCore.Localization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.624.26909 dotnet +Microsoft.AspNetCore.Metadata 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.624.26909 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.624.26909 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.624.26909 dotnet +Microsoft.AspNetCore.Razor 8.0.624.26909 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.624.26909 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.624.26909 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.624.26909 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.624.26909 dotnet +Microsoft.AspNetCore.Rewrite 8.0.624.26909 dotnet +Microsoft.AspNetCore.Routing 8.0.624.26909 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.624.26909 dotnet +Microsoft.AspNetCore.Session 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.624.26909 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.624.26909 dotnet +Microsoft.AspNetCore.WebSockets 8.0.624.26909 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.624.26909 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.524.21615 dotnet -Microsoft.Data.Sqlite 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.424.16902 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.424.16902 dotnet +Microsoft.CSharp 8.0.624.26715 dotnet +Microsoft.Data.Sqlite 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.624.26904 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -134,7 +134,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.524.22404 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.624.26909 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -142,22 +142,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.524.22404 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.524.22404 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.424.17014 dotnet -Microsoft.Extensions.Features 8.0.524.22404 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.624.26909 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.624.26909 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.624.26909 dotnet +Microsoft.Extensions.Features 8.0.624.26909 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.524.22404 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.624.26909 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.524.22404 dotnet -Microsoft.Extensions.Identity.Stores 8.0.524.22404 dotnet -Microsoft.Extensions.Localization 8.0.524.22404 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.524.22404 dotnet +Microsoft.Extensions.Identity.Core 8.0.624.26909 dotnet +Microsoft.Extensions.Identity.Stores 8.0.624.26909 dotnet +Microsoft.Extensions.Localization 8.0.624.26909 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.624.26909 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,19 +166,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.524.22404 dotnet +Microsoft.Extensions.ObjectPool 8.0.624.26909 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.524.22404 dotnet -Microsoft.JSInterop 8.0.524.22404 dotnet -Microsoft.Net.Http.Headers 8.0.524.22404 dotnet +Microsoft.Extensions.WebEncoders 8.0.624.26909 dotnet +Microsoft.JSInterop 8.0.624.26909 dotnet +Microsoft.Net.Http.Headers 8.0.624.26909 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.524.21615 dotnet -Microsoft.VisualBasic.Core 13.0.524.21615 dotnet -Microsoft.Win32.Primitives 8.0.524.21615 dotnet -Microsoft.Win32.Registry 8.0.524.21615 dotnet +Microsoft.VisualBasic 8.0.624.26715 dotnet +Microsoft.VisualBasic.Core 13.0.624.26715 dotnet +Microsoft.Win32.Primitives 8.0.624.26715 dotnet +Microsoft.Win32.Registry 8.0.624.26715 dotnet Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -207,182 +207,182 @@ SkiaSharp.HarfBuzz 2.88.8.0 Svg.Custom 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet Svg.Model 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet Svg.Skia 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.524.21615 dotnet -System.AppContext 8.0.524.21615 dotnet -System.Buffers 8.0.524.21615 dotnet -System.Collections 8.0.524.21615 dotnet -System.Collections.Concurrent 8.0.524.21615 dotnet -System.Collections.Immutable 8.0.524.21615 dotnet -System.Collections.NonGeneric 8.0.524.21615 dotnet -System.Collections.Specialized 8.0.524.21615 dotnet -System.ComponentModel 8.0.524.21615 dotnet -System.ComponentModel.Annotations 8.0.524.21615 dotnet -System.ComponentModel.DataAnnotations 8.0.524.21615 dotnet -System.ComponentModel.EventBasedAsync 8.0.524.21615 dotnet -System.ComponentModel.Primitives 8.0.524.21615 dotnet -System.ComponentModel.TypeConverter 8.0.524.21615 dotnet -System.Configuration 8.0.524.21615 dotnet -System.Console 8.0.524.21615 dotnet -System.Core 8.0.524.21615 dotnet -System.Data 8.0.524.21615 dotnet -System.Data.Common 8.0.524.21615 dotnet -System.Data.DataSetExtensions 8.0.524.21615 dotnet -System.Diagnostics.Contracts 8.0.524.21615 dotnet -System.Diagnostics.Debug 8.0.524.21615 dotnet -System.Diagnostics.DiagnosticSource 8.0.524.21615 dotnet +System 8.0.624.26715 dotnet +System.AppContext 8.0.624.26715 dotnet +System.Buffers 8.0.624.26715 dotnet +System.Collections 8.0.624.26715 dotnet +System.Collections.Concurrent 8.0.624.26715 dotnet +System.Collections.Immutable 8.0.624.26715 dotnet +System.Collections.NonGeneric 8.0.624.26715 dotnet +System.Collections.Specialized 8.0.624.26715 dotnet +System.ComponentModel 8.0.624.26715 dotnet +System.ComponentModel.Annotations 8.0.624.26715 dotnet +System.ComponentModel.DataAnnotations 8.0.624.26715 dotnet +System.ComponentModel.EventBasedAsync 8.0.624.26715 dotnet +System.ComponentModel.Primitives 8.0.624.26715 dotnet +System.ComponentModel.TypeConverter 8.0.624.26715 dotnet +System.Configuration 8.0.624.26715 dotnet +System.Console 8.0.624.26715 dotnet +System.Core 8.0.624.26715 dotnet +System.Data 8.0.624.26715 dotnet +System.Data.Common 8.0.624.26715 dotnet +System.Data.DataSetExtensions 8.0.624.26715 dotnet +System.Diagnostics.Contracts 8.0.624.26715 dotnet +System.Diagnostics.Debug 8.0.624.26715 dotnet +System.Diagnostics.DiagnosticSource 8.0.624.26715 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.524.21615 dotnet -System.Diagnostics.Process 8.0.524.21615 dotnet -System.Diagnostics.StackTrace 8.0.524.21615 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.524.21615 dotnet -System.Diagnostics.Tools 8.0.524.21615 dotnet -System.Diagnostics.TraceSource 8.0.524.21615 dotnet -System.Diagnostics.Tracing 8.0.524.21615 dotnet -System.Drawing 8.0.524.21615 dotnet +System.Diagnostics.FileVersionInfo 8.0.624.26715 dotnet +System.Diagnostics.Process 8.0.624.26715 dotnet +System.Diagnostics.StackTrace 8.0.624.26715 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.624.26715 dotnet +System.Diagnostics.Tools 8.0.624.26715 dotnet +System.Diagnostics.TraceSource 8.0.624.26715 dotnet +System.Diagnostics.Tracing 8.0.624.26715 dotnet +System.Drawing 8.0.624.26715 dotnet System.Drawing.Common 7.0.22.51805 dotnet -System.Drawing.Primitives 8.0.524.21615 dotnet -System.Dynamic.Runtime 8.0.524.21615 dotnet -System.Formats.Asn1 8.0.524.21615 dotnet -System.Formats.Tar 8.0.524.21615 dotnet -System.Globalization 8.0.524.21615 dotnet -System.Globalization.Calendars 8.0.524.21615 dotnet -System.Globalization.Extensions 8.0.524.21615 dotnet -System.IO 8.0.524.21615 dotnet -System.IO.Compression 8.0.524.21615 dotnet -System.IO.Compression.Brotli 8.0.524.21615 dotnet -System.IO.Compression.FileSystem 8.0.524.21615 dotnet -System.IO.Compression.ZipFile 8.0.524.21615 dotnet -System.IO.FileSystem 8.0.524.21615 dotnet -System.IO.FileSystem.AccessControl 8.0.524.21615 dotnet -System.IO.FileSystem.DriveInfo 8.0.524.21615 dotnet -System.IO.FileSystem.Primitives 8.0.524.21615 dotnet -System.IO.FileSystem.Watcher 8.0.524.21615 dotnet +System.Drawing.Primitives 8.0.624.26715 dotnet +System.Dynamic.Runtime 8.0.624.26715 dotnet +System.Formats.Asn1 8.0.624.26715 dotnet +System.Formats.Tar 8.0.624.26715 dotnet +System.Globalization 8.0.624.26715 dotnet +System.Globalization.Calendars 8.0.624.26715 dotnet +System.Globalization.Extensions 8.0.624.26715 dotnet +System.IO 8.0.624.26715 dotnet +System.IO.Compression 8.0.624.26715 dotnet +System.IO.Compression.Brotli 8.0.624.26715 dotnet +System.IO.Compression.FileSystem 8.0.624.26715 dotnet +System.IO.Compression.ZipFile 8.0.624.26715 dotnet +System.IO.FileSystem 8.0.624.26715 dotnet +System.IO.FileSystem.AccessControl 8.0.624.26715 dotnet +System.IO.FileSystem.DriveInfo 8.0.624.26715 dotnet +System.IO.FileSystem.Primitives 8.0.624.26715 dotnet +System.IO.FileSystem.Watcher 8.0.624.26715 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.524.21615 dotnet -System.IO.MemoryMappedFiles 8.0.524.21615 dotnet +System.IO.IsolatedStorage 8.0.624.26715 dotnet +System.IO.MemoryMappedFiles 8.0.624.26715 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.524.21615 dotnet -System.IO.Pipes.AccessControl 8.0.524.21615 dotnet -System.IO.UnmanagedMemoryStream 8.0.524.21615 dotnet -System.Linq 8.0.524.21615 dotnet +System.IO.Pipes 8.0.624.26715 dotnet +System.IO.Pipes.AccessControl 8.0.624.26715 dotnet +System.IO.UnmanagedMemoryStream 8.0.624.26715 dotnet +System.Linq 8.0.624.26715 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.524.21615 dotnet -System.Linq.Parallel 8.0.524.21615 dotnet -System.Linq.Queryable 8.0.524.21615 dotnet -System.Memory 8.0.524.21615 dotnet -System.Net 8.0.524.21615 dotnet -System.Net.Http 8.0.524.21615 dotnet -System.Net.Http.Json 8.0.524.21615 dotnet -System.Net.HttpListener 8.0.524.21615 dotnet -System.Net.Mail 8.0.524.21615 dotnet -System.Net.NameResolution 8.0.524.21615 dotnet -System.Net.NetworkInformation 8.0.524.21615 dotnet -System.Net.Ping 8.0.524.21615 dotnet -System.Net.Primitives 8.0.524.21615 dotnet -System.Net.Quic 8.0.524.21615 dotnet -System.Net.Requests 8.0.524.21615 dotnet -System.Net.Security 8.0.524.21615 dotnet -System.Net.ServicePoint 8.0.524.21615 dotnet -System.Net.Sockets 8.0.524.21615 dotnet -System.Net.WebClient 8.0.524.21615 dotnet -System.Net.WebHeaderCollection 8.0.524.21615 dotnet -System.Net.WebProxy 8.0.524.21615 dotnet -System.Net.WebSockets 8.0.524.21615 dotnet -System.Net.WebSockets.Client 8.0.524.21615 dotnet -System.Numerics 8.0.524.21615 dotnet -System.Numerics.Vectors 8.0.524.21615 dotnet -System.ObjectModel 8.0.524.21615 dotnet -System.Private.CoreLib 8.0.524.21615 dotnet -System.Private.DataContractSerialization 8.0.524.21615 dotnet -System.Private.Uri 8.0.524.21615 dotnet -System.Private.Xml 8.0.524.21615 dotnet -System.Private.Xml.Linq 8.0.524.21615 dotnet -System.Reflection 8.0.524.21615 dotnet -System.Reflection.DispatchProxy 8.0.524.21615 dotnet -System.Reflection.Emit 8.0.524.21615 dotnet -System.Reflection.Emit.ILGeneration 8.0.524.21615 dotnet -System.Reflection.Emit.Lightweight 8.0.524.21615 dotnet -System.Reflection.Extensions 8.0.524.21615 dotnet -System.Reflection.Metadata 8.0.524.21615 dotnet -System.Reflection.Primitives 8.0.524.21615 dotnet -System.Reflection.TypeExtensions 8.0.524.21615 dotnet -System.Resources.Reader 8.0.524.21615 dotnet -System.Resources.ResourceManager 8.0.524.21615 dotnet -System.Resources.Writer 8.0.524.21615 dotnet -System.Runtime 8.0.524.21615 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.524.21615 dotnet -System.Runtime.CompilerServices.VisualC 8.0.524.21615 dotnet -System.Runtime.Extensions 8.0.524.21615 dotnet -System.Runtime.Handles 8.0.524.21615 dotnet -System.Runtime.InteropServices 8.0.524.21615 dotnet -System.Runtime.InteropServices.JavaScript 8.0.524.21615 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.524.21615 dotnet -System.Runtime.Intrinsics 8.0.524.21615 dotnet -System.Runtime.Loader 8.0.524.21615 dotnet -System.Runtime.Numerics 8.0.524.21615 dotnet -System.Runtime.Serialization 8.0.524.21615 dotnet -System.Runtime.Serialization.Formatters 8.0.524.21615 dotnet -System.Runtime.Serialization.Json 8.0.524.21615 dotnet -System.Runtime.Serialization.Primitives 8.0.524.21615 dotnet -System.Runtime.Serialization.Xml 8.0.524.21615 dotnet -System.Security 8.0.524.21615 dotnet -System.Security.AccessControl 8.0.524.21615 dotnet -System.Security.Claims 8.0.524.21615 dotnet -System.Security.Cryptography 8.0.524.21615 dotnet -System.Security.Cryptography.Algorithms 8.0.524.21615 dotnet -System.Security.Cryptography.Cng 8.0.524.21615 dotnet -System.Security.Cryptography.Csp 8.0.524.21615 dotnet -System.Security.Cryptography.Encoding 8.0.524.21615 dotnet -System.Security.Cryptography.OpenSsl 8.0.524.21615 dotnet +System.Linq.Expressions 8.0.624.26715 dotnet +System.Linq.Parallel 8.0.624.26715 dotnet +System.Linq.Queryable 8.0.624.26715 dotnet +System.Memory 8.0.624.26715 dotnet +System.Net 8.0.624.26715 dotnet +System.Net.Http 8.0.624.26715 dotnet +System.Net.Http.Json 8.0.624.26715 dotnet +System.Net.HttpListener 8.0.624.26715 dotnet +System.Net.Mail 8.0.624.26715 dotnet +System.Net.NameResolution 8.0.624.26715 dotnet +System.Net.NetworkInformation 8.0.624.26715 dotnet +System.Net.Ping 8.0.624.26715 dotnet +System.Net.Primitives 8.0.624.26715 dotnet +System.Net.Quic 8.0.624.26715 dotnet +System.Net.Requests 8.0.624.26715 dotnet +System.Net.Security 8.0.624.26715 dotnet +System.Net.ServicePoint 8.0.624.26715 dotnet +System.Net.Sockets 8.0.624.26715 dotnet +System.Net.WebClient 8.0.624.26715 dotnet +System.Net.WebHeaderCollection 8.0.624.26715 dotnet +System.Net.WebProxy 8.0.624.26715 dotnet +System.Net.WebSockets 8.0.624.26715 dotnet +System.Net.WebSockets.Client 8.0.624.26715 dotnet +System.Numerics 8.0.624.26715 dotnet +System.Numerics.Vectors 8.0.624.26715 dotnet +System.ObjectModel 8.0.624.26715 dotnet +System.Private.CoreLib 8.0.624.26715 dotnet +System.Private.DataContractSerialization 8.0.624.26715 dotnet +System.Private.Uri 8.0.624.26715 dotnet +System.Private.Xml 8.0.624.26715 dotnet +System.Private.Xml.Linq 8.0.624.26715 dotnet +System.Reflection 8.0.624.26715 dotnet +System.Reflection.DispatchProxy 8.0.624.26715 dotnet +System.Reflection.Emit 8.0.624.26715 dotnet +System.Reflection.Emit.ILGeneration 8.0.624.26715 dotnet +System.Reflection.Emit.Lightweight 8.0.624.26715 dotnet +System.Reflection.Extensions 8.0.624.26715 dotnet +System.Reflection.Metadata 8.0.624.26715 dotnet +System.Reflection.Primitives 8.0.624.26715 dotnet +System.Reflection.TypeExtensions 8.0.624.26715 dotnet +System.Resources.Reader 8.0.624.26715 dotnet +System.Resources.ResourceManager 8.0.624.26715 dotnet +System.Resources.Writer 8.0.624.26715 dotnet +System.Runtime 8.0.624.26715 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.624.26715 dotnet +System.Runtime.CompilerServices.VisualC 8.0.624.26715 dotnet +System.Runtime.Extensions 8.0.624.26715 dotnet +System.Runtime.Handles 8.0.624.26715 dotnet +System.Runtime.InteropServices 8.0.624.26715 dotnet +System.Runtime.InteropServices.JavaScript 8.0.624.26715 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.624.26715 dotnet +System.Runtime.Intrinsics 8.0.624.26715 dotnet +System.Runtime.Loader 8.0.624.26715 dotnet +System.Runtime.Numerics 8.0.624.26715 dotnet +System.Runtime.Serialization 8.0.624.26715 dotnet +System.Runtime.Serialization.Formatters 8.0.624.26715 dotnet +System.Runtime.Serialization.Json 8.0.624.26715 dotnet +System.Runtime.Serialization.Primitives 8.0.624.26715 dotnet +System.Runtime.Serialization.Xml 8.0.624.26715 dotnet +System.Security 8.0.624.26715 dotnet +System.Security.AccessControl 8.0.624.26715 dotnet +System.Security.Claims 8.0.624.26715 dotnet +System.Security.Cryptography 8.0.624.26715 dotnet +System.Security.Cryptography.Algorithms 8.0.624.26715 dotnet +System.Security.Cryptography.Cng 8.0.624.26715 dotnet +System.Security.Cryptography.Csp 8.0.624.26715 dotnet +System.Security.Cryptography.Encoding 8.0.624.26715 dotnet +System.Security.Cryptography.OpenSsl 8.0.624.26715 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.524.21615 dotnet -System.Security.Cryptography.X509Certificates 8.0.524.21615 dotnet +System.Security.Cryptography.Primitives 8.0.624.26715 dotnet +System.Security.Cryptography.X509Certificates 8.0.624.26715 dotnet System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.524.21615 dotnet -System.Security.Principal.Windows 8.0.524.21615 dotnet -System.Security.SecureString 8.0.524.21615 dotnet -System.ServiceModel.Web 8.0.524.21615 dotnet -System.ServiceProcess 8.0.524.21615 dotnet -System.Text.Encoding 8.0.524.21615 dotnet -System.Text.Encoding.CodePages 8.0.524.21615 dotnet -System.Text.Encoding.Extensions 8.0.524.21615 dotnet -System.Text.Encodings.Web 8.0.524.21615 dotnet -System.Text.Json 8.0.524.21615 dotnet -System.Text.RegularExpressions 8.0.524.21615 dotnet -System.Threading 8.0.524.21615 dotnet -System.Threading.Channels 8.0.524.21615 dotnet -System.Threading.Overlapped 8.0.524.21615 dotnet +System.Security.Principal 8.0.624.26715 dotnet +System.Security.Principal.Windows 8.0.624.26715 dotnet +System.Security.SecureString 8.0.624.26715 dotnet +System.ServiceModel.Web 8.0.624.26715 dotnet +System.ServiceProcess 8.0.624.26715 dotnet +System.Text.Encoding 8.0.624.26715 dotnet +System.Text.Encoding.CodePages 8.0.624.26715 dotnet +System.Text.Encoding.Extensions 8.0.624.26715 dotnet +System.Text.Encodings.Web 8.0.624.26715 dotnet +System.Text.Json 8.0.624.26715 dotnet +System.Text.RegularExpressions 8.0.624.26715 dotnet +System.Threading 8.0.624.26715 dotnet +System.Threading.Channels 8.0.624.26715 dotnet +System.Threading.Overlapped 8.0.624.26715 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.524.21615 dotnet -System.Threading.Tasks.Dataflow 8.0.524.21615 dotnet -System.Threading.Tasks.Extensions 8.0.524.21615 dotnet -System.Threading.Tasks.Parallel 8.0.524.21615 dotnet -System.Threading.Thread 8.0.524.21615 dotnet -System.Threading.ThreadPool 8.0.524.21615 dotnet -System.Threading.Timer 8.0.524.21615 dotnet -System.Transactions 8.0.524.21615 dotnet -System.Transactions.Local 8.0.524.21615 dotnet -System.ValueTuple 8.0.524.21615 dotnet -System.Web 8.0.524.21615 dotnet -System.Web.HttpUtility 8.0.524.21615 dotnet -System.Windows 8.0.524.21615 dotnet -System.Xml 8.0.524.21615 dotnet -System.Xml.Linq 8.0.524.21615 dotnet -System.Xml.ReaderWriter 8.0.524.21615 dotnet -System.Xml.Serialization 8.0.524.21615 dotnet -System.Xml.XDocument 8.0.524.21615 dotnet -System.Xml.XPath 8.0.524.21615 dotnet -System.Xml.XPath.XDocument 8.0.524.21615 dotnet -System.Xml.XmlDocument 8.0.524.21615 dotnet -System.Xml.XmlSerializer 8.0.524.21615 dotnet +System.Threading.Tasks 8.0.624.26715 dotnet +System.Threading.Tasks.Dataflow 8.0.624.26715 dotnet +System.Threading.Tasks.Extensions 8.0.624.26715 dotnet +System.Threading.Tasks.Parallel 8.0.624.26715 dotnet +System.Threading.Thread 8.0.624.26715 dotnet +System.Threading.ThreadPool 8.0.624.26715 dotnet +System.Threading.Timer 8.0.624.26715 dotnet +System.Transactions 8.0.624.26715 dotnet +System.Transactions.Local 8.0.624.26715 dotnet +System.ValueTuple 8.0.624.26715 dotnet +System.Web 8.0.624.26715 dotnet +System.Web.HttpUtility 8.0.624.26715 dotnet +System.Windows 8.0.624.26715 dotnet +System.Xml 8.0.624.26715 dotnet +System.Xml.Linq 8.0.624.26715 dotnet +System.Xml.ReaderWriter 8.0.624.26715 dotnet +System.Xml.Serialization 8.0.624.26715 dotnet +System.Xml.XDocument 8.0.624.26715 dotnet +System.Xml.XPath 8.0.624.26715 dotnet +System.Xml.XPath.XDocument 8.0.624.26715 dotnet +System.Xml.XmlDocument 8.0.624.26715 dotnet +System.Xml.XmlSerializer 8.0.624.26715 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.524.21615 dotnet +WindowsBase 8.0.624.26715 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.3+ubu2204 deb +jellyfin 10.9.4+ubu2204 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 10.9.3+ubu2204 deb -jellyfin-web 10.9.3+ubu2204 deb +jellyfin-server 10.9.4+ubu2204 deb +jellyfin-web 10.9.4+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb @@ -572,12 +572,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 8.0.524.21615 dotnet +mscorlib 8.0.624.26715 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.524.21615 dotnet +netstandard 8.0.624.26715 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.2 deb From fcc831920883d0644380cc518ecce652c87cf457 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Jun 2024 23:13:10 +0000 Subject: [PATCH 2010/2257] 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 ca17047..e46b974 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,14 +18,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.4 dotnet (+13 duplicates) +Jellyfin Server 10.9.5 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.4 dotnet -Jellyfin.Extensions.dll 10.9.4 dotnet +Jellyfin.Data.dll 10.9.5 dotnet +Jellyfin.Extensions.dll 10.9.5 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.4 dotnet +Jellyfin.Networking.dll 10.9.5 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.4+ubu2204 deb +jellyfin 10.9.5+ubu2204 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 10.9.4+ubu2204 deb -jellyfin-web 10.9.4+ubu2204 deb +jellyfin-server 10.9.5+ubu2204 deb +jellyfin-web 10.9.5+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb @@ -438,8 +438,8 @@ libbluray2 1:1.3.1-1 libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.7 deb -libc6 2.35-0ubuntu3.7 deb +libc-bin 2.35-0ubuntu3.8 deb +libc6 2.35-0ubuntu3.8 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -565,7 +565,7 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.7 deb +locales 2.35-0ubuntu3.8 deb login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb From 8b9f24ac5e026b0103a7b34fddb471d2927bbef2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Jun 2024 19:16:11 +0000 Subject: [PATCH 2011/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e46b974..ab791b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,14 +18,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.5 dotnet (+13 duplicates) +Jellyfin Server 10.9.6 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.5 dotnet -Jellyfin.Extensions.dll 10.9.5 dotnet +Jellyfin.Data.dll 10.9.6 dotnet +Jellyfin.Extensions.dll 10.9.6 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.5 dotnet +Jellyfin.Networking.dll 10.9.6 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.5+ubu2204 deb +jellyfin 10.9.6+ubu2204 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 10.9.5+ubu2204 deb -jellyfin-web 10.9.5+ubu2204 deb +jellyfin-server 10.9.6+ubu2204 deb +jellyfin-web 10.9.6+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb @@ -537,7 +537,7 @@ libuuid1 2.37.2-4ubunt libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb +libvpx7 1.11.0-2ubuntu2.3 deb libwebp7 1.2.2-2ubuntu0.22.04.2 deb libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb libx11-6 2:1.7.5-1ubuntu0.3 deb From 2b17da8d9f92f442c74aac03e0fa52b9cbd9c066 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Jun 2024 06:19:34 +0000 Subject: [PATCH 2012/2257] Bot Updating Package Versions --- package_versions.txt | 566 +++++++++++++++++++++---------------------- 1 file changed, 283 insertions(+), 283 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7d4a308..5b1da91 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.4.3.0 dotnet +EFCoreSecondLevelCacheInterceptor 4.5.0.0 dotnet EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.2 dotnet @@ -31,99 +31,99 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.524.22404 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authorization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Server 8.0.524.22404 dotnet -Microsoft.AspNetCore.Components.Web 8.0.524.22404 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.524.22404 dotnet -Microsoft.AspNetCore.Cors 8.0.524.22404 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.524.22404 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.524.22404 dotnet -Microsoft.AspNetCore.DataProtection 8.0.524.22404 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.524.22404 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.524.22404 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.524.22404 dotnet -Microsoft.AspNetCore.Hosting 8.0.524.22404 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Features 8.0.524.22404 dotnet -Microsoft.AspNetCore.Http.Results 8.0.524.22404 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.524.22404 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.524.22404 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.524.22404 dotnet -Microsoft.AspNetCore.Identity 8.0.524.22404 dotnet -Microsoft.AspNetCore.Localization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.524.22404 dotnet -Microsoft.AspNetCore.Metadata 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.524.22404 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.524.22404 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.524.22404 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.524.22404 dotnet -Microsoft.AspNetCore.Razor 8.0.524.22404 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.524.22404 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.524.22404 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.524.22404 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.524.22404 dotnet -Microsoft.AspNetCore.Rewrite 8.0.524.22404 dotnet -Microsoft.AspNetCore.Routing 8.0.524.22404 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.524.22404 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.524.22404 dotnet -Microsoft.AspNetCore.Session 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.524.22404 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.524.22404 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.524.22404 dotnet -Microsoft.AspNetCore.WebSockets 8.0.524.22404 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.524.22404 dotnet +Microsoft.AspNetCore 8.0.624.26909 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authorization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Server 8.0.624.26909 dotnet +Microsoft.AspNetCore.Components.Web 8.0.624.26909 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.624.26909 dotnet +Microsoft.AspNetCore.Cors 8.0.624.26909 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.624.26909 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.624.26909 dotnet +Microsoft.AspNetCore.DataProtection 8.0.624.26909 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.624.26909 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.624.26909 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.624.26909 dotnet +Microsoft.AspNetCore.Hosting 8.0.624.26909 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Features 8.0.624.26909 dotnet +Microsoft.AspNetCore.Http.Results 8.0.624.26909 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.624.26909 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.624.26909 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.624.26909 dotnet +Microsoft.AspNetCore.Identity 8.0.624.26909 dotnet +Microsoft.AspNetCore.Localization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.624.26909 dotnet +Microsoft.AspNetCore.Metadata 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.624.26909 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.624.26909 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.624.26909 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.624.26909 dotnet +Microsoft.AspNetCore.Razor 8.0.624.26909 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.624.26909 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.624.26909 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.624.26909 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.624.26909 dotnet +Microsoft.AspNetCore.Rewrite 8.0.624.26909 dotnet +Microsoft.AspNetCore.Routing 8.0.624.26909 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.624.26909 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.624.26909 dotnet +Microsoft.AspNetCore.Session 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.624.26909 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.624.26909 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.624.26909 dotnet +Microsoft.AspNetCore.WebSockets 8.0.624.26909 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.624.26909 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.524.21615 dotnet -Microsoft.Data.Sqlite 8.0.524.21704 dotnet -Microsoft.EntityFrameworkCore 8.0.524.21704 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.524.21704 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.524.21704 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.524.21704 dotnet +Microsoft.CSharp 8.0.624.26715 dotnet +Microsoft.Data.Sqlite 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.624.26904 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.624.26904 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -134,7 +134,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.524.22404 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.624.26909 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -142,22 +142,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.524.22404 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.524.22404 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.524.22404 dotnet -Microsoft.Extensions.Features 8.0.524.22404 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.624.26909 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.624.26909 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.624.26909 dotnet +Microsoft.Extensions.Features 8.0.624.26909 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.524.22404 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.624.26909 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.524.22404 dotnet -Microsoft.Extensions.Identity.Stores 8.0.524.22404 dotnet -Microsoft.Extensions.Localization 8.0.524.22404 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.524.22404 dotnet +Microsoft.Extensions.Identity.Core 8.0.624.26909 dotnet +Microsoft.Extensions.Identity.Stores 8.0.624.26909 dotnet +Microsoft.Extensions.Localization 8.0.624.26909 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.624.26909 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,19 +166,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.524.22404 dotnet +Microsoft.Extensions.ObjectPool 8.0.624.26909 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.524.22404 dotnet -Microsoft.JSInterop 8.0.524.22404 dotnet -Microsoft.Net.Http.Headers 8.0.524.22404 dotnet +Microsoft.Extensions.WebEncoders 8.0.624.26909 dotnet +Microsoft.JSInterop 8.0.624.26909 dotnet +Microsoft.Net.Http.Headers 8.0.624.26909 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.524.21615 dotnet -Microsoft.VisualBasic.Core 13.0.524.21615 dotnet -Microsoft.Win32.Primitives 8.0.524.21615 dotnet -Microsoft.Win32.Registry 8.0.524.21615 dotnet +Microsoft.VisualBasic 8.0.624.26715 dotnet +Microsoft.VisualBasic.Core 13.0.624.26715 dotnet +Microsoft.Win32.Primitives 8.0.624.26715 dotnet +Microsoft.Win32.Registry 8.0.624.26715 dotnet Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -188,14 +188,14 @@ Prometheus.NetStandard.dll 8.2.1 SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet SQLitePCLRaw.core 2.1.6.2060 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet -Serilog 3.1.1.0 dotnet +Serilog 4.0.0.0 dotnet Serilog.AspNetCore 8.0.1.0 dotnet Serilog.Enrichers.Thread 3.1.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.0.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet +Serilog.Settings.Configuration 8.0.1.0 dotnet +Serilog.Sinks.Async 2.0.0.0 dotnet Serilog.Sinks.Console 5.0.1.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet @@ -211,178 +211,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.524.21615 dotnet -System.AppContext 8.0.524.21615 dotnet -System.Buffers 8.0.524.21615 dotnet -System.Collections 8.0.524.21615 dotnet -System.Collections.Concurrent 8.0.524.21615 dotnet -System.Collections.Immutable 8.0.524.21615 dotnet -System.Collections.NonGeneric 8.0.524.21615 dotnet -System.Collections.Specialized 8.0.524.21615 dotnet -System.ComponentModel 8.0.524.21615 dotnet -System.ComponentModel.Annotations 8.0.524.21615 dotnet -System.ComponentModel.DataAnnotations 8.0.524.21615 dotnet -System.ComponentModel.EventBasedAsync 8.0.524.21615 dotnet -System.ComponentModel.Primitives 8.0.524.21615 dotnet -System.ComponentModel.TypeConverter 8.0.524.21615 dotnet -System.Configuration 8.0.524.21615 dotnet -System.Console 8.0.524.21615 dotnet -System.Core 8.0.524.21615 dotnet -System.Data 8.0.524.21615 dotnet -System.Data.Common 8.0.524.21615 dotnet -System.Data.DataSetExtensions 8.0.524.21615 dotnet -System.Diagnostics.Contracts 8.0.524.21615 dotnet -System.Diagnostics.Debug 8.0.524.21615 dotnet -System.Diagnostics.DiagnosticSource 8.0.524.21615 dotnet +System 8.0.624.26715 dotnet +System.AppContext 8.0.624.26715 dotnet +System.Buffers 8.0.624.26715 dotnet +System.Collections 8.0.624.26715 dotnet +System.Collections.Concurrent 8.0.624.26715 dotnet +System.Collections.Immutable 8.0.624.26715 dotnet +System.Collections.NonGeneric 8.0.624.26715 dotnet +System.Collections.Specialized 8.0.624.26715 dotnet +System.ComponentModel 8.0.624.26715 dotnet +System.ComponentModel.Annotations 8.0.624.26715 dotnet +System.ComponentModel.DataAnnotations 8.0.624.26715 dotnet +System.ComponentModel.EventBasedAsync 8.0.624.26715 dotnet +System.ComponentModel.Primitives 8.0.624.26715 dotnet +System.ComponentModel.TypeConverter 8.0.624.26715 dotnet +System.Configuration 8.0.624.26715 dotnet +System.Console 8.0.624.26715 dotnet +System.Core 8.0.624.26715 dotnet +System.Data 8.0.624.26715 dotnet +System.Data.Common 8.0.624.26715 dotnet +System.Data.DataSetExtensions 8.0.624.26715 dotnet +System.Diagnostics.Contracts 8.0.624.26715 dotnet +System.Diagnostics.Debug 8.0.624.26715 dotnet +System.Diagnostics.DiagnosticSource 8.0.624.26715 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.524.21615 dotnet -System.Diagnostics.Process 8.0.524.21615 dotnet -System.Diagnostics.StackTrace 8.0.524.21615 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.524.21615 dotnet -System.Diagnostics.Tools 8.0.524.21615 dotnet -System.Diagnostics.TraceSource 8.0.524.21615 dotnet -System.Diagnostics.Tracing 8.0.524.21615 dotnet -System.Drawing 8.0.524.21615 dotnet +System.Diagnostics.FileVersionInfo 8.0.624.26715 dotnet +System.Diagnostics.Process 8.0.624.26715 dotnet +System.Diagnostics.StackTrace 8.0.624.26715 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.624.26715 dotnet +System.Diagnostics.Tools 8.0.624.26715 dotnet +System.Diagnostics.TraceSource 8.0.624.26715 dotnet +System.Diagnostics.Tracing 8.0.624.26715 dotnet +System.Drawing 8.0.624.26715 dotnet System.Drawing.Common 7.0.22.51805 dotnet -System.Drawing.Primitives 8.0.524.21615 dotnet -System.Dynamic.Runtime 8.0.524.21615 dotnet -System.Formats.Asn1 8.0.524.21615 dotnet -System.Formats.Tar 8.0.524.21615 dotnet -System.Globalization 8.0.524.21615 dotnet -System.Globalization.Calendars 8.0.524.21615 dotnet -System.Globalization.Extensions 8.0.524.21615 dotnet -System.IO 8.0.524.21615 dotnet -System.IO.Compression 8.0.524.21615 dotnet -System.IO.Compression.Brotli 8.0.524.21615 dotnet -System.IO.Compression.FileSystem 8.0.524.21615 dotnet -System.IO.Compression.ZipFile 8.0.524.21615 dotnet -System.IO.FileSystem 8.0.524.21615 dotnet -System.IO.FileSystem.AccessControl 8.0.524.21615 dotnet -System.IO.FileSystem.DriveInfo 8.0.524.21615 dotnet -System.IO.FileSystem.Primitives 8.0.524.21615 dotnet -System.IO.FileSystem.Watcher 8.0.524.21615 dotnet +System.Drawing.Primitives 8.0.624.26715 dotnet +System.Dynamic.Runtime 8.0.624.26715 dotnet +System.Formats.Asn1 8.0.624.26715 dotnet +System.Formats.Tar 8.0.624.26715 dotnet +System.Globalization 8.0.624.26715 dotnet +System.Globalization.Calendars 8.0.624.26715 dotnet +System.Globalization.Extensions 8.0.624.26715 dotnet +System.IO 8.0.624.26715 dotnet +System.IO.Compression 8.0.624.26715 dotnet +System.IO.Compression.Brotli 8.0.624.26715 dotnet +System.IO.Compression.FileSystem 8.0.624.26715 dotnet +System.IO.Compression.ZipFile 8.0.624.26715 dotnet +System.IO.FileSystem 8.0.624.26715 dotnet +System.IO.FileSystem.AccessControl 8.0.624.26715 dotnet +System.IO.FileSystem.DriveInfo 8.0.624.26715 dotnet +System.IO.FileSystem.Primitives 8.0.624.26715 dotnet +System.IO.FileSystem.Watcher 8.0.624.26715 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.524.21615 dotnet -System.IO.MemoryMappedFiles 8.0.524.21615 dotnet +System.IO.IsolatedStorage 8.0.624.26715 dotnet +System.IO.MemoryMappedFiles 8.0.624.26715 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.524.21615 dotnet -System.IO.Pipes.AccessControl 8.0.524.21615 dotnet -System.IO.UnmanagedMemoryStream 8.0.524.21615 dotnet -System.Linq 8.0.524.21615 dotnet +System.IO.Pipes 8.0.624.26715 dotnet +System.IO.Pipes.AccessControl 8.0.624.26715 dotnet +System.IO.UnmanagedMemoryStream 8.0.624.26715 dotnet +System.Linq 8.0.624.26715 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.524.21615 dotnet -System.Linq.Parallel 8.0.524.21615 dotnet -System.Linq.Queryable 8.0.524.21615 dotnet -System.Memory 8.0.524.21615 dotnet -System.Net 8.0.524.21615 dotnet -System.Net.Http 8.0.524.21615 dotnet -System.Net.Http.Json 8.0.524.21615 dotnet -System.Net.HttpListener 8.0.524.21615 dotnet -System.Net.Mail 8.0.524.21615 dotnet -System.Net.NameResolution 8.0.524.21615 dotnet -System.Net.NetworkInformation 8.0.524.21615 dotnet -System.Net.Ping 8.0.524.21615 dotnet -System.Net.Primitives 8.0.524.21615 dotnet -System.Net.Quic 8.0.524.21615 dotnet -System.Net.Requests 8.0.524.21615 dotnet -System.Net.Security 8.0.524.21615 dotnet -System.Net.ServicePoint 8.0.524.21615 dotnet -System.Net.Sockets 8.0.524.21615 dotnet -System.Net.WebClient 8.0.524.21615 dotnet -System.Net.WebHeaderCollection 8.0.524.21615 dotnet -System.Net.WebProxy 8.0.524.21615 dotnet -System.Net.WebSockets 8.0.524.21615 dotnet -System.Net.WebSockets.Client 8.0.524.21615 dotnet -System.Numerics 8.0.524.21615 dotnet -System.Numerics.Vectors 8.0.524.21615 dotnet -System.ObjectModel 8.0.524.21615 dotnet -System.Private.CoreLib 8.0.524.21615 dotnet -System.Private.DataContractSerialization 8.0.524.21615 dotnet -System.Private.Uri 8.0.524.21615 dotnet -System.Private.Xml 8.0.524.21615 dotnet -System.Private.Xml.Linq 8.0.524.21615 dotnet -System.Reflection 8.0.524.21615 dotnet -System.Reflection.DispatchProxy 8.0.524.21615 dotnet -System.Reflection.Emit 8.0.524.21615 dotnet -System.Reflection.Emit.ILGeneration 8.0.524.21615 dotnet -System.Reflection.Emit.Lightweight 8.0.524.21615 dotnet -System.Reflection.Extensions 8.0.524.21615 dotnet -System.Reflection.Metadata 8.0.524.21615 dotnet -System.Reflection.Primitives 8.0.524.21615 dotnet -System.Reflection.TypeExtensions 8.0.524.21615 dotnet -System.Resources.Reader 8.0.524.21615 dotnet -System.Resources.ResourceManager 8.0.524.21615 dotnet -System.Resources.Writer 8.0.524.21615 dotnet -System.Runtime 8.0.524.21615 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.524.21615 dotnet -System.Runtime.CompilerServices.VisualC 8.0.524.21615 dotnet -System.Runtime.Extensions 8.0.524.21615 dotnet -System.Runtime.Handles 8.0.524.21615 dotnet -System.Runtime.InteropServices 8.0.524.21615 dotnet -System.Runtime.InteropServices.JavaScript 8.0.524.21615 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.524.21615 dotnet -System.Runtime.Intrinsics 8.0.524.21615 dotnet -System.Runtime.Loader 8.0.524.21615 dotnet -System.Runtime.Numerics 8.0.524.21615 dotnet -System.Runtime.Serialization 8.0.524.21615 dotnet -System.Runtime.Serialization.Formatters 8.0.524.21615 dotnet -System.Runtime.Serialization.Json 8.0.524.21615 dotnet -System.Runtime.Serialization.Primitives 8.0.524.21615 dotnet -System.Runtime.Serialization.Xml 8.0.524.21615 dotnet -System.Security 8.0.524.21615 dotnet -System.Security.AccessControl 8.0.524.21615 dotnet -System.Security.Claims 8.0.524.21615 dotnet -System.Security.Cryptography 8.0.524.21615 dotnet -System.Security.Cryptography.Algorithms 8.0.524.21615 dotnet -System.Security.Cryptography.Cng 8.0.524.21615 dotnet -System.Security.Cryptography.Csp 8.0.524.21615 dotnet -System.Security.Cryptography.Encoding 8.0.524.21615 dotnet -System.Security.Cryptography.OpenSsl 8.0.524.21615 dotnet +System.Linq.Expressions 8.0.624.26715 dotnet +System.Linq.Parallel 8.0.624.26715 dotnet +System.Linq.Queryable 8.0.624.26715 dotnet +System.Memory 8.0.624.26715 dotnet +System.Net 8.0.624.26715 dotnet +System.Net.Http 8.0.624.26715 dotnet +System.Net.Http.Json 8.0.624.26715 dotnet +System.Net.HttpListener 8.0.624.26715 dotnet +System.Net.Mail 8.0.624.26715 dotnet +System.Net.NameResolution 8.0.624.26715 dotnet +System.Net.NetworkInformation 8.0.624.26715 dotnet +System.Net.Ping 8.0.624.26715 dotnet +System.Net.Primitives 8.0.624.26715 dotnet +System.Net.Quic 8.0.624.26715 dotnet +System.Net.Requests 8.0.624.26715 dotnet +System.Net.Security 8.0.624.26715 dotnet +System.Net.ServicePoint 8.0.624.26715 dotnet +System.Net.Sockets 8.0.624.26715 dotnet +System.Net.WebClient 8.0.624.26715 dotnet +System.Net.WebHeaderCollection 8.0.624.26715 dotnet +System.Net.WebProxy 8.0.624.26715 dotnet +System.Net.WebSockets 8.0.624.26715 dotnet +System.Net.WebSockets.Client 8.0.624.26715 dotnet +System.Numerics 8.0.624.26715 dotnet +System.Numerics.Vectors 8.0.624.26715 dotnet +System.ObjectModel 8.0.624.26715 dotnet +System.Private.CoreLib 8.0.624.26715 dotnet +System.Private.DataContractSerialization 8.0.624.26715 dotnet +System.Private.Uri 8.0.624.26715 dotnet +System.Private.Xml 8.0.624.26715 dotnet +System.Private.Xml.Linq 8.0.624.26715 dotnet +System.Reflection 8.0.624.26715 dotnet +System.Reflection.DispatchProxy 8.0.624.26715 dotnet +System.Reflection.Emit 8.0.624.26715 dotnet +System.Reflection.Emit.ILGeneration 8.0.624.26715 dotnet +System.Reflection.Emit.Lightweight 8.0.624.26715 dotnet +System.Reflection.Extensions 8.0.624.26715 dotnet +System.Reflection.Metadata 8.0.624.26715 dotnet +System.Reflection.Primitives 8.0.624.26715 dotnet +System.Reflection.TypeExtensions 8.0.624.26715 dotnet +System.Resources.Reader 8.0.624.26715 dotnet +System.Resources.ResourceManager 8.0.624.26715 dotnet +System.Resources.Writer 8.0.624.26715 dotnet +System.Runtime 8.0.624.26715 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.624.26715 dotnet +System.Runtime.CompilerServices.VisualC 8.0.624.26715 dotnet +System.Runtime.Extensions 8.0.624.26715 dotnet +System.Runtime.Handles 8.0.624.26715 dotnet +System.Runtime.InteropServices 8.0.624.26715 dotnet +System.Runtime.InteropServices.JavaScript 8.0.624.26715 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.624.26715 dotnet +System.Runtime.Intrinsics 8.0.624.26715 dotnet +System.Runtime.Loader 8.0.624.26715 dotnet +System.Runtime.Numerics 8.0.624.26715 dotnet +System.Runtime.Serialization 8.0.624.26715 dotnet +System.Runtime.Serialization.Formatters 8.0.624.26715 dotnet +System.Runtime.Serialization.Json 8.0.624.26715 dotnet +System.Runtime.Serialization.Primitives 8.0.624.26715 dotnet +System.Runtime.Serialization.Xml 8.0.624.26715 dotnet +System.Security 8.0.624.26715 dotnet +System.Security.AccessControl 8.0.624.26715 dotnet +System.Security.Claims 8.0.624.26715 dotnet +System.Security.Cryptography 8.0.624.26715 dotnet +System.Security.Cryptography.Algorithms 8.0.624.26715 dotnet +System.Security.Cryptography.Cng 8.0.624.26715 dotnet +System.Security.Cryptography.Csp 8.0.624.26715 dotnet +System.Security.Cryptography.Encoding 8.0.624.26715 dotnet +System.Security.Cryptography.OpenSsl 8.0.624.26715 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.524.21615 dotnet -System.Security.Cryptography.X509Certificates 8.0.524.21615 dotnet +System.Security.Cryptography.Primitives 8.0.624.26715 dotnet +System.Security.Cryptography.X509Certificates 8.0.624.26715 dotnet System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.524.21615 dotnet -System.Security.Principal.Windows 8.0.524.21615 dotnet -System.Security.SecureString 8.0.524.21615 dotnet -System.ServiceModel.Web 8.0.524.21615 dotnet -System.ServiceProcess 8.0.524.21615 dotnet -System.Text.Encoding 8.0.524.21615 dotnet -System.Text.Encoding.CodePages 8.0.524.21615 dotnet -System.Text.Encoding.Extensions 8.0.524.21615 dotnet -System.Text.Encodings.Web 8.0.524.21615 dotnet -System.Text.Json 8.0.524.21615 dotnet -System.Text.RegularExpressions 8.0.524.21615 dotnet -System.Threading 8.0.524.21615 dotnet -System.Threading.Channels 8.0.524.21615 dotnet -System.Threading.Overlapped 8.0.524.21615 dotnet +System.Security.Principal 8.0.624.26715 dotnet +System.Security.Principal.Windows 8.0.624.26715 dotnet +System.Security.SecureString 8.0.624.26715 dotnet +System.ServiceModel.Web 8.0.624.26715 dotnet +System.ServiceProcess 8.0.624.26715 dotnet +System.Text.Encoding 8.0.624.26715 dotnet +System.Text.Encoding.CodePages 8.0.624.26715 dotnet +System.Text.Encoding.Extensions 8.0.624.26715 dotnet +System.Text.Encodings.Web 8.0.624.26715 dotnet +System.Text.Json 8.0.624.26715 dotnet +System.Text.RegularExpressions 8.0.624.26715 dotnet +System.Threading 8.0.624.26715 dotnet +System.Threading.Channels 8.0.624.26715 dotnet +System.Threading.Overlapped 8.0.624.26715 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.524.21615 dotnet -System.Threading.Tasks.Dataflow 8.0.524.21615 dotnet -System.Threading.Tasks.Extensions 8.0.524.21615 dotnet -System.Threading.Tasks.Parallel 8.0.524.21615 dotnet -System.Threading.Thread 8.0.524.21615 dotnet -System.Threading.ThreadPool 8.0.524.21615 dotnet -System.Threading.Timer 8.0.524.21615 dotnet -System.Transactions 8.0.524.21615 dotnet -System.Transactions.Local 8.0.524.21615 dotnet -System.ValueTuple 8.0.524.21615 dotnet -System.Web 8.0.524.21615 dotnet -System.Web.HttpUtility 8.0.524.21615 dotnet -System.Windows 8.0.524.21615 dotnet -System.Xml 8.0.524.21615 dotnet -System.Xml.Linq 8.0.524.21615 dotnet -System.Xml.ReaderWriter 8.0.524.21615 dotnet -System.Xml.Serialization 8.0.524.21615 dotnet -System.Xml.XDocument 8.0.524.21615 dotnet -System.Xml.XPath 8.0.524.21615 dotnet -System.Xml.XPath.XDocument 8.0.524.21615 dotnet -System.Xml.XmlDocument 8.0.524.21615 dotnet -System.Xml.XmlSerializer 8.0.524.21615 dotnet +System.Threading.Tasks 8.0.624.26715 dotnet +System.Threading.Tasks.Dataflow 8.0.624.26715 dotnet +System.Threading.Tasks.Extensions 8.0.624.26715 dotnet +System.Threading.Tasks.Parallel 8.0.624.26715 dotnet +System.Threading.Thread 8.0.624.26715 dotnet +System.Threading.ThreadPool 8.0.624.26715 dotnet +System.Threading.Timer 8.0.624.26715 dotnet +System.Transactions 8.0.624.26715 dotnet +System.Transactions.Local 8.0.624.26715 dotnet +System.ValueTuple 8.0.624.26715 dotnet +System.Web 8.0.624.26715 dotnet +System.Web.HttpUtility 8.0.624.26715 dotnet +System.Windows 8.0.624.26715 dotnet +System.Xml 8.0.624.26715 dotnet +System.Xml.Linq 8.0.624.26715 dotnet +System.Xml.ReaderWriter 8.0.624.26715 dotnet +System.Xml.Serialization 8.0.624.26715 dotnet +System.Xml.XDocument 8.0.624.26715 dotnet +System.Xml.XPath 8.0.624.26715 dotnet +System.Xml.XPath.XDocument 8.0.624.26715 dotnet +System.Xml.XmlDocument 8.0.624.26715 dotnet +System.Xml.XmlSerializer 8.0.624.26715 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.524.21615 dotnet +WindowsBase 8.0.624.26715 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024052005+ubu2204 deb -jellyfin-web 2024052005+ubu2204 deb +jellyfin-server 2024061005+ubu2204 deb +jellyfin-web 2024061005+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -439,8 +439,8 @@ libbluray2 1:1.3.1-1 libbrotli1 1.0.9-2build6 deb libbsd0 0.11.5-1 deb libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.7 deb -libc6 2.35-0ubuntu3.7 deb +libc-bin 2.35-0ubuntu3.8 deb +libc6 2.35-0ubuntu3.8 deb libcairo2 1.16.0-5ubuntu2 deb libcap-ng0 0.7.9-2.2build3 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb @@ -538,7 +538,7 @@ libuuid1 2.37.2-4ubunt libvorbis0a 1.3.7-1build2 deb libvorbisenc2 1.3.7-1build2 deb libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.2 deb +libvpx7 1.11.0-2ubuntu2.3 deb libwebp7 1.2.2-2ubuntu0.22.04.2 deb libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb libx11-6 2:1.7.5-1ubuntu0.3 deb @@ -566,19 +566,19 @@ libxxhash0 0.8.1-1 libzstd1 1.4.8+dfsg-3build1 deb libzvbi-common 0.2.35-19 deb libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.7 deb +locales 2.35-0ubuntu3.8 deb login 1:4.8.1-2ubuntu2.2 deb logsave 1.46.5-2ubuntu1.1 deb lsb-base 11.1.0ubuntu4 deb mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 8.0.524.21615 dotnet +mscorlib 8.0.624.26715 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.524.21615 dotnet +netstandard 8.0.624.26715 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.15 deb passwd 1:4.8.1-2ubuntu2.2 deb From 164d90034fe39b37ff3fa0e4fcfec3c9f569750a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Jun 2024 06:16:48 +0000 Subject: [PATCH 2013/2257] 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 5b1da91..60a2fd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,13 +190,13 @@ SQLitePCLRaw.core 2.1.6.2060 SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet Serilog 4.0.0.0 dotnet Serilog.AspNetCore 8.0.1.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog.Enrichers.Thread 4.0.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet Serilog.Settings.Configuration 8.0.1.0 dotnet Serilog.Sinks.Async 2.0.0.0 dotnet -Serilog.Sinks.Console 5.0.1.0 dotnet +Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 5.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024061005+ubu2204 deb -jellyfin-web 2024061005+ubu2204 deb +jellyfin-server 2024061705+ubu2204 deb +jellyfin-web 2024061705+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From fa5b899e5065031173d3bc93a56c1d9fd82ebd93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Jun 2024 06:18:26 +0000 Subject: [PATCH 2014/2257] 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 60a2fd7..bb9b14d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024061705+ubu2204 deb -jellyfin-web 2024061705+ubu2204 deb +jellyfin-server 2024062405+ubu2204 deb +jellyfin-web 2024062405+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From 0778f4cbd18412fb5ccfabb82a41656f1872a789 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Jun 2024 00:42:44 +0000 Subject: [PATCH 2015/2257] 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 ab791b8..33add46 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,14 +18,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.6 dotnet (+13 duplicates) +Jellyfin Server 10.9.7 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.6 dotnet -Jellyfin.Extensions.dll 10.9.6 dotnet +Jellyfin.Data.dll 10.9.7 dotnet +Jellyfin.Extensions.dll 10.9.7 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.6 dotnet +Jellyfin.Networking.dll 10.9.7 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.6+ubu2204 deb +jellyfin 10.9.7+ubu2204 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 10.9.6+ubu2204 deb -jellyfin-web 10.9.6+ubu2204 deb +jellyfin-server 10.9.7+ubu2204 deb +jellyfin-web 10.9.7+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb From 79d30dbcb47623c3918755b01309d14b496017d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jul 2024 06:18:09 +0000 Subject: [PATCH 2016/2257] 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 bb9b14d..366ac02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -198,7 +198,7 @@ Serilog.Settings.Configuration 8.0.1.0 Serilog.Sinks.Async 2.0.0.0 dotnet Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024062405+ubu2204 deb -jellyfin-web 2024062405+ubu2204 deb +jellyfin-server 2024070105+ubu2204 deb +jellyfin-web 2024070105+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb From eb8c4957c1a2eb33b036c2687b1c141caef31d93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Jul 2024 06:17:33 +0000 Subject: [PATCH 2017/2257] 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 366ac02..aa09749 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024070105+ubu2204 deb -jellyfin-web 2024070105+ubu2204 deb +jellyfin-server 2024070805+ubu2204 deb +jellyfin-web 2024070805+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -523,7 +523,7 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.15 deb +libssl3 3.0.2-0ubuntu1.16 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb @@ -580,7 +580,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 8.0.624.26715 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.15 deb +openssl 3.0.2-0ubuntu1.16 deb passwd 1:4.8.1-2ubuntu2.2 deb perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb From c77c882d9e1b88fd5cfcd340182b288fdbe4822f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jul 2024 12:49:06 +0000 Subject: [PATCH 2018/2257] 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 33add46..2c6b3b1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -522,7 +522,7 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.15 deb +libssl3 3.0.2-0ubuntu1.16 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb @@ -579,7 +579,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 8.0.624.26715 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.15 deb +openssl 3.0.2-0ubuntu1.16 deb passwd 1:4.8.1-2ubuntu2.2 deb perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb From b2d74a39b6f1a6549c79381ff12d17d3da4665b4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Jul 2024 06:15:00 +0000 Subject: [PATCH 2019/2257] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 752e230..1ebabff 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 895568268f294932dc68da7fc15dc2bf229ee11e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Jul 2024 06:16:36 +0000 Subject: [PATCH 2020/2257] Bot Updating Templated Files --- .github/workflows/permissions.yml | 2 ++ 1 file changed, 2 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 From ac773c39652de7ca35f467289a27e6eab9799c54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Jul 2024 06:20:46 +0000 Subject: [PATCH 2021/2257] Bot Updating Package Versions --- package_versions.txt | 560 +++++++++++++++++++++---------------------- 1 file changed, 280 insertions(+), 280 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index aa09749..6a3f554 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,133 +31,133 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.624.26909 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authorization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Server 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Web 8.0.624.26909 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.624.26909 dotnet -Microsoft.AspNetCore.Cors 8.0.624.26909 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.624.26909 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.624.26909 dotnet -Microsoft.AspNetCore.DataProtection 8.0.624.26909 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.624.26909 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.624.26909 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.624.26909 dotnet -Microsoft.AspNetCore.Hosting 8.0.624.26909 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Features 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Results 8.0.624.26909 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.624.26909 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.624.26909 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.624.26909 dotnet -Microsoft.AspNetCore.Identity 8.0.624.26909 dotnet -Microsoft.AspNetCore.Localization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.624.26909 dotnet -Microsoft.AspNetCore.Metadata 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.624.26909 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.624.26909 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.624.26909 dotnet -Microsoft.AspNetCore.Razor 8.0.624.26909 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.624.26909 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.624.26909 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.624.26909 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.624.26909 dotnet -Microsoft.AspNetCore.Rewrite 8.0.624.26909 dotnet -Microsoft.AspNetCore.Routing 8.0.624.26909 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.624.26909 dotnet -Microsoft.AspNetCore.Session 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.624.26909 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.624.26909 dotnet -Microsoft.AspNetCore.WebSockets 8.0.624.26909 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.624.26909 dotnet +Microsoft.AspNetCore 8.0.724.31402 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authorization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Server 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Web 8.0.724.31402 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.724.31402 dotnet +Microsoft.AspNetCore.Cors 8.0.724.31402 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.724.31402 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.724.31402 dotnet +Microsoft.AspNetCore.DataProtection 8.0.724.31402 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.724.31402 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.724.31402 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.724.31402 dotnet +Microsoft.AspNetCore.Hosting 8.0.724.31402 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Features 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Results 8.0.724.31402 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.724.31402 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.724.31402 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.724.31402 dotnet +Microsoft.AspNetCore.Identity 8.0.724.31402 dotnet +Microsoft.AspNetCore.Localization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.724.31402 dotnet +Microsoft.AspNetCore.Metadata 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.724.31402 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.724.31402 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.724.31402 dotnet +Microsoft.AspNetCore.Razor 8.0.724.31402 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.724.31402 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.724.31402 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.724.31402 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.724.31402 dotnet +Microsoft.AspNetCore.Rewrite 8.0.724.31402 dotnet +Microsoft.AspNetCore.Routing 8.0.724.31402 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.724.31402 dotnet +Microsoft.AspNetCore.Session 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.724.31402 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.724.31402 dotnet +Microsoft.AspNetCore.WebSockets 8.0.724.31402 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.724.31402 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.624.26715 dotnet -Microsoft.Data.Sqlite 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.624.26904 dotnet +Microsoft.CSharp 8.0.724.31311 dotnet +Microsoft.Data.Sqlite 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.724.31404 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Binder 8.0.123.58001 dotnet +Microsoft.Extensions.Configuration.Binder 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.624.26909 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.724.31402 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 dotnet -Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyModel 8.0.724.31311 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.624.26909 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.624.26909 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.624.26909 dotnet -Microsoft.Extensions.Features 8.0.624.26909 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.724.31402 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.724.31402 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.724.31402 dotnet +Microsoft.Extensions.Features 8.0.724.31402 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.624.26909 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.724.31402 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.624.26909 dotnet -Microsoft.Extensions.Identity.Stores 8.0.624.26909 dotnet -Microsoft.Extensions.Localization 8.0.624.26909 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.624.26909 dotnet +Microsoft.Extensions.Identity.Core 8.0.724.31402 dotnet +Microsoft.Extensions.Identity.Stores 8.0.724.31402 dotnet +Microsoft.Extensions.Localization 8.0.724.31402 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.724.31402 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,19 +166,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.624.26909 dotnet +Microsoft.Extensions.ObjectPool 8.0.724.31402 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.624.26909 dotnet -Microsoft.JSInterop 8.0.624.26909 dotnet -Microsoft.Net.Http.Headers 8.0.624.26909 dotnet +Microsoft.Extensions.WebEncoders 8.0.724.31402 dotnet +Microsoft.JSInterop 8.0.724.31402 dotnet +Microsoft.Net.Http.Headers 8.0.724.31402 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.624.26715 dotnet -Microsoft.VisualBasic.Core 13.0.624.26715 dotnet -Microsoft.Win32.Primitives 8.0.624.26715 dotnet -Microsoft.Win32.Registry 8.0.624.26715 dotnet +Microsoft.VisualBasic 8.0.724.31311 dotnet +Microsoft.VisualBasic.Core 13.0.724.31311 dotnet +Microsoft.Win32.Primitives 8.0.724.31311 dotnet +Microsoft.Win32.Registry 8.0.724.31311 dotnet Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -194,7 +194,7 @@ Serilog.Enrichers.Thread 4.0.0.0 Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.1.0 dotnet +Serilog.Settings.Configuration 8.0.2.0 dotnet Serilog.Sinks.Async 2.0.0.0 dotnet Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet @@ -211,178 +211,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.624.26715 dotnet -System.AppContext 8.0.624.26715 dotnet -System.Buffers 8.0.624.26715 dotnet -System.Collections 8.0.624.26715 dotnet -System.Collections.Concurrent 8.0.624.26715 dotnet -System.Collections.Immutable 8.0.624.26715 dotnet -System.Collections.NonGeneric 8.0.624.26715 dotnet -System.Collections.Specialized 8.0.624.26715 dotnet -System.ComponentModel 8.0.624.26715 dotnet -System.ComponentModel.Annotations 8.0.624.26715 dotnet -System.ComponentModel.DataAnnotations 8.0.624.26715 dotnet -System.ComponentModel.EventBasedAsync 8.0.624.26715 dotnet -System.ComponentModel.Primitives 8.0.624.26715 dotnet -System.ComponentModel.TypeConverter 8.0.624.26715 dotnet -System.Configuration 8.0.624.26715 dotnet -System.Console 8.0.624.26715 dotnet -System.Core 8.0.624.26715 dotnet -System.Data 8.0.624.26715 dotnet -System.Data.Common 8.0.624.26715 dotnet -System.Data.DataSetExtensions 8.0.624.26715 dotnet -System.Diagnostics.Contracts 8.0.624.26715 dotnet -System.Diagnostics.Debug 8.0.624.26715 dotnet -System.Diagnostics.DiagnosticSource 8.0.624.26715 dotnet +System 8.0.724.31311 dotnet +System.AppContext 8.0.724.31311 dotnet +System.Buffers 8.0.724.31311 dotnet +System.Collections 8.0.724.31311 dotnet +System.Collections.Concurrent 8.0.724.31311 dotnet +System.Collections.Immutable 8.0.724.31311 dotnet +System.Collections.NonGeneric 8.0.724.31311 dotnet +System.Collections.Specialized 8.0.724.31311 dotnet +System.ComponentModel 8.0.724.31311 dotnet +System.ComponentModel.Annotations 8.0.724.31311 dotnet +System.ComponentModel.DataAnnotations 8.0.724.31311 dotnet +System.ComponentModel.EventBasedAsync 8.0.724.31311 dotnet +System.ComponentModel.Primitives 8.0.724.31311 dotnet +System.ComponentModel.TypeConverter 8.0.724.31311 dotnet +System.Configuration 8.0.724.31311 dotnet +System.Console 8.0.724.31311 dotnet +System.Core 8.0.724.31311 dotnet +System.Data 8.0.724.31311 dotnet +System.Data.Common 8.0.724.31311 dotnet +System.Data.DataSetExtensions 8.0.724.31311 dotnet +System.Diagnostics.Contracts 8.0.724.31311 dotnet +System.Diagnostics.Debug 8.0.724.31311 dotnet +System.Diagnostics.DiagnosticSource 8.0.724.31311 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.624.26715 dotnet -System.Diagnostics.Process 8.0.624.26715 dotnet -System.Diagnostics.StackTrace 8.0.624.26715 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.624.26715 dotnet -System.Diagnostics.Tools 8.0.624.26715 dotnet -System.Diagnostics.TraceSource 8.0.624.26715 dotnet -System.Diagnostics.Tracing 8.0.624.26715 dotnet -System.Drawing 8.0.624.26715 dotnet +System.Diagnostics.FileVersionInfo 8.0.724.31311 dotnet +System.Diagnostics.Process 8.0.724.31311 dotnet +System.Diagnostics.StackTrace 8.0.724.31311 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.724.31311 dotnet +System.Diagnostics.Tools 8.0.724.31311 dotnet +System.Diagnostics.TraceSource 8.0.724.31311 dotnet +System.Diagnostics.Tracing 8.0.724.31311 dotnet +System.Drawing 8.0.724.31311 dotnet System.Drawing.Common 7.0.22.51805 dotnet -System.Drawing.Primitives 8.0.624.26715 dotnet -System.Dynamic.Runtime 8.0.624.26715 dotnet -System.Formats.Asn1 8.0.624.26715 dotnet -System.Formats.Tar 8.0.624.26715 dotnet -System.Globalization 8.0.624.26715 dotnet -System.Globalization.Calendars 8.0.624.26715 dotnet -System.Globalization.Extensions 8.0.624.26715 dotnet -System.IO 8.0.624.26715 dotnet -System.IO.Compression 8.0.624.26715 dotnet -System.IO.Compression.Brotli 8.0.624.26715 dotnet -System.IO.Compression.FileSystem 8.0.624.26715 dotnet -System.IO.Compression.ZipFile 8.0.624.26715 dotnet -System.IO.FileSystem 8.0.624.26715 dotnet -System.IO.FileSystem.AccessControl 8.0.624.26715 dotnet -System.IO.FileSystem.DriveInfo 8.0.624.26715 dotnet -System.IO.FileSystem.Primitives 8.0.624.26715 dotnet -System.IO.FileSystem.Watcher 8.0.624.26715 dotnet +System.Drawing.Primitives 8.0.724.31311 dotnet +System.Dynamic.Runtime 8.0.724.31311 dotnet +System.Formats.Asn1 8.0.724.31311 dotnet +System.Formats.Tar 8.0.724.31311 dotnet +System.Globalization 8.0.724.31311 dotnet +System.Globalization.Calendars 8.0.724.31311 dotnet +System.Globalization.Extensions 8.0.724.31311 dotnet +System.IO 8.0.724.31311 dotnet +System.IO.Compression 8.0.724.31311 dotnet +System.IO.Compression.Brotli 8.0.724.31311 dotnet +System.IO.Compression.FileSystem 8.0.724.31311 dotnet +System.IO.Compression.ZipFile 8.0.724.31311 dotnet +System.IO.FileSystem 8.0.724.31311 dotnet +System.IO.FileSystem.AccessControl 8.0.724.31311 dotnet +System.IO.FileSystem.DriveInfo 8.0.724.31311 dotnet +System.IO.FileSystem.Primitives 8.0.724.31311 dotnet +System.IO.FileSystem.Watcher 8.0.724.31311 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.624.26715 dotnet -System.IO.MemoryMappedFiles 8.0.624.26715 dotnet +System.IO.IsolatedStorage 8.0.724.31311 dotnet +System.IO.MemoryMappedFiles 8.0.724.31311 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.624.26715 dotnet -System.IO.Pipes.AccessControl 8.0.624.26715 dotnet -System.IO.UnmanagedMemoryStream 8.0.624.26715 dotnet -System.Linq 8.0.624.26715 dotnet +System.IO.Pipes 8.0.724.31311 dotnet +System.IO.Pipes.AccessControl 8.0.724.31311 dotnet +System.IO.UnmanagedMemoryStream 8.0.724.31311 dotnet +System.Linq 8.0.724.31311 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.624.26715 dotnet -System.Linq.Parallel 8.0.624.26715 dotnet -System.Linq.Queryable 8.0.624.26715 dotnet -System.Memory 8.0.624.26715 dotnet -System.Net 8.0.624.26715 dotnet -System.Net.Http 8.0.624.26715 dotnet -System.Net.Http.Json 8.0.624.26715 dotnet -System.Net.HttpListener 8.0.624.26715 dotnet -System.Net.Mail 8.0.624.26715 dotnet -System.Net.NameResolution 8.0.624.26715 dotnet -System.Net.NetworkInformation 8.0.624.26715 dotnet -System.Net.Ping 8.0.624.26715 dotnet -System.Net.Primitives 8.0.624.26715 dotnet -System.Net.Quic 8.0.624.26715 dotnet -System.Net.Requests 8.0.624.26715 dotnet -System.Net.Security 8.0.624.26715 dotnet -System.Net.ServicePoint 8.0.624.26715 dotnet -System.Net.Sockets 8.0.624.26715 dotnet -System.Net.WebClient 8.0.624.26715 dotnet -System.Net.WebHeaderCollection 8.0.624.26715 dotnet -System.Net.WebProxy 8.0.624.26715 dotnet -System.Net.WebSockets 8.0.624.26715 dotnet -System.Net.WebSockets.Client 8.0.624.26715 dotnet -System.Numerics 8.0.624.26715 dotnet -System.Numerics.Vectors 8.0.624.26715 dotnet -System.ObjectModel 8.0.624.26715 dotnet -System.Private.CoreLib 8.0.624.26715 dotnet -System.Private.DataContractSerialization 8.0.624.26715 dotnet -System.Private.Uri 8.0.624.26715 dotnet -System.Private.Xml 8.0.624.26715 dotnet -System.Private.Xml.Linq 8.0.624.26715 dotnet -System.Reflection 8.0.624.26715 dotnet -System.Reflection.DispatchProxy 8.0.624.26715 dotnet -System.Reflection.Emit 8.0.624.26715 dotnet -System.Reflection.Emit.ILGeneration 8.0.624.26715 dotnet -System.Reflection.Emit.Lightweight 8.0.624.26715 dotnet -System.Reflection.Extensions 8.0.624.26715 dotnet -System.Reflection.Metadata 8.0.624.26715 dotnet -System.Reflection.Primitives 8.0.624.26715 dotnet -System.Reflection.TypeExtensions 8.0.624.26715 dotnet -System.Resources.Reader 8.0.624.26715 dotnet -System.Resources.ResourceManager 8.0.624.26715 dotnet -System.Resources.Writer 8.0.624.26715 dotnet -System.Runtime 8.0.624.26715 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.624.26715 dotnet -System.Runtime.CompilerServices.VisualC 8.0.624.26715 dotnet -System.Runtime.Extensions 8.0.624.26715 dotnet -System.Runtime.Handles 8.0.624.26715 dotnet -System.Runtime.InteropServices 8.0.624.26715 dotnet -System.Runtime.InteropServices.JavaScript 8.0.624.26715 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.624.26715 dotnet -System.Runtime.Intrinsics 8.0.624.26715 dotnet -System.Runtime.Loader 8.0.624.26715 dotnet -System.Runtime.Numerics 8.0.624.26715 dotnet -System.Runtime.Serialization 8.0.624.26715 dotnet -System.Runtime.Serialization.Formatters 8.0.624.26715 dotnet -System.Runtime.Serialization.Json 8.0.624.26715 dotnet -System.Runtime.Serialization.Primitives 8.0.624.26715 dotnet -System.Runtime.Serialization.Xml 8.0.624.26715 dotnet -System.Security 8.0.624.26715 dotnet -System.Security.AccessControl 8.0.624.26715 dotnet -System.Security.Claims 8.0.624.26715 dotnet -System.Security.Cryptography 8.0.624.26715 dotnet -System.Security.Cryptography.Algorithms 8.0.624.26715 dotnet -System.Security.Cryptography.Cng 8.0.624.26715 dotnet -System.Security.Cryptography.Csp 8.0.624.26715 dotnet -System.Security.Cryptography.Encoding 8.0.624.26715 dotnet -System.Security.Cryptography.OpenSsl 8.0.624.26715 dotnet +System.Linq.Expressions 8.0.724.31311 dotnet +System.Linq.Parallel 8.0.724.31311 dotnet +System.Linq.Queryable 8.0.724.31311 dotnet +System.Memory 8.0.724.31311 dotnet +System.Net 8.0.724.31311 dotnet +System.Net.Http 8.0.724.31311 dotnet +System.Net.Http.Json 8.0.724.31311 dotnet +System.Net.HttpListener 8.0.724.31311 dotnet +System.Net.Mail 8.0.724.31311 dotnet +System.Net.NameResolution 8.0.724.31311 dotnet +System.Net.NetworkInformation 8.0.724.31311 dotnet +System.Net.Ping 8.0.724.31311 dotnet +System.Net.Primitives 8.0.724.31311 dotnet +System.Net.Quic 8.0.724.31311 dotnet +System.Net.Requests 8.0.724.31311 dotnet +System.Net.Security 8.0.724.31311 dotnet +System.Net.ServicePoint 8.0.724.31311 dotnet +System.Net.Sockets 8.0.724.31311 dotnet +System.Net.WebClient 8.0.724.31311 dotnet +System.Net.WebHeaderCollection 8.0.724.31311 dotnet +System.Net.WebProxy 8.0.724.31311 dotnet +System.Net.WebSockets 8.0.724.31311 dotnet +System.Net.WebSockets.Client 8.0.724.31311 dotnet +System.Numerics 8.0.724.31311 dotnet +System.Numerics.Vectors 8.0.724.31311 dotnet +System.ObjectModel 8.0.724.31311 dotnet +System.Private.CoreLib 8.0.724.31311 dotnet +System.Private.DataContractSerialization 8.0.724.31311 dotnet +System.Private.Uri 8.0.724.31311 dotnet +System.Private.Xml 8.0.724.31311 dotnet +System.Private.Xml.Linq 8.0.724.31311 dotnet +System.Reflection 8.0.724.31311 dotnet +System.Reflection.DispatchProxy 8.0.724.31311 dotnet +System.Reflection.Emit 8.0.724.31311 dotnet +System.Reflection.Emit.ILGeneration 8.0.724.31311 dotnet +System.Reflection.Emit.Lightweight 8.0.724.31311 dotnet +System.Reflection.Extensions 8.0.724.31311 dotnet +System.Reflection.Metadata 8.0.724.31311 dotnet +System.Reflection.Primitives 8.0.724.31311 dotnet +System.Reflection.TypeExtensions 8.0.724.31311 dotnet +System.Resources.Reader 8.0.724.31311 dotnet +System.Resources.ResourceManager 8.0.724.31311 dotnet +System.Resources.Writer 8.0.724.31311 dotnet +System.Runtime 8.0.724.31311 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.724.31311 dotnet +System.Runtime.CompilerServices.VisualC 8.0.724.31311 dotnet +System.Runtime.Extensions 8.0.724.31311 dotnet +System.Runtime.Handles 8.0.724.31311 dotnet +System.Runtime.InteropServices 8.0.724.31311 dotnet +System.Runtime.InteropServices.JavaScript 8.0.724.31311 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.724.31311 dotnet +System.Runtime.Intrinsics 8.0.724.31311 dotnet +System.Runtime.Loader 8.0.724.31311 dotnet +System.Runtime.Numerics 8.0.724.31311 dotnet +System.Runtime.Serialization 8.0.724.31311 dotnet +System.Runtime.Serialization.Formatters 8.0.724.31311 dotnet +System.Runtime.Serialization.Json 8.0.724.31311 dotnet +System.Runtime.Serialization.Primitives 8.0.724.31311 dotnet +System.Runtime.Serialization.Xml 8.0.724.31311 dotnet +System.Security 8.0.724.31311 dotnet +System.Security.AccessControl 8.0.724.31311 dotnet +System.Security.Claims 8.0.724.31311 dotnet +System.Security.Cryptography 8.0.724.31311 dotnet +System.Security.Cryptography.Algorithms 8.0.724.31311 dotnet +System.Security.Cryptography.Cng 8.0.724.31311 dotnet +System.Security.Cryptography.Csp 8.0.724.31311 dotnet +System.Security.Cryptography.Encoding 8.0.724.31311 dotnet +System.Security.Cryptography.OpenSsl 8.0.724.31311 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.624.26715 dotnet -System.Security.Cryptography.X509Certificates 8.0.624.26715 dotnet +System.Security.Cryptography.Primitives 8.0.724.31311 dotnet +System.Security.Cryptography.X509Certificates 8.0.724.31311 dotnet System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.624.26715 dotnet -System.Security.Principal.Windows 8.0.624.26715 dotnet -System.Security.SecureString 8.0.624.26715 dotnet -System.ServiceModel.Web 8.0.624.26715 dotnet -System.ServiceProcess 8.0.624.26715 dotnet -System.Text.Encoding 8.0.624.26715 dotnet -System.Text.Encoding.CodePages 8.0.624.26715 dotnet -System.Text.Encoding.Extensions 8.0.624.26715 dotnet -System.Text.Encodings.Web 8.0.624.26715 dotnet -System.Text.Json 8.0.624.26715 dotnet -System.Text.RegularExpressions 8.0.624.26715 dotnet -System.Threading 8.0.624.26715 dotnet -System.Threading.Channels 8.0.624.26715 dotnet -System.Threading.Overlapped 8.0.624.26715 dotnet +System.Security.Principal 8.0.724.31311 dotnet +System.Security.Principal.Windows 8.0.724.31311 dotnet +System.Security.SecureString 8.0.724.31311 dotnet +System.ServiceModel.Web 8.0.724.31311 dotnet +System.ServiceProcess 8.0.724.31311 dotnet +System.Text.Encoding 8.0.724.31311 dotnet +System.Text.Encoding.CodePages 8.0.724.31311 dotnet +System.Text.Encoding.Extensions 8.0.724.31311 dotnet +System.Text.Encodings.Web 8.0.724.31311 dotnet +System.Text.Json 8.0.724.31311 dotnet +System.Text.RegularExpressions 8.0.724.31311 dotnet +System.Threading 8.0.724.31311 dotnet +System.Threading.Channels 8.0.724.31311 dotnet +System.Threading.Overlapped 8.0.724.31311 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.624.26715 dotnet -System.Threading.Tasks.Dataflow 8.0.624.26715 dotnet -System.Threading.Tasks.Extensions 8.0.624.26715 dotnet -System.Threading.Tasks.Parallel 8.0.624.26715 dotnet -System.Threading.Thread 8.0.624.26715 dotnet -System.Threading.ThreadPool 8.0.624.26715 dotnet -System.Threading.Timer 8.0.624.26715 dotnet -System.Transactions 8.0.624.26715 dotnet -System.Transactions.Local 8.0.624.26715 dotnet -System.ValueTuple 8.0.624.26715 dotnet -System.Web 8.0.624.26715 dotnet -System.Web.HttpUtility 8.0.624.26715 dotnet -System.Windows 8.0.624.26715 dotnet -System.Xml 8.0.624.26715 dotnet -System.Xml.Linq 8.0.624.26715 dotnet -System.Xml.ReaderWriter 8.0.624.26715 dotnet -System.Xml.Serialization 8.0.624.26715 dotnet -System.Xml.XDocument 8.0.624.26715 dotnet -System.Xml.XPath 8.0.624.26715 dotnet -System.Xml.XPath.XDocument 8.0.624.26715 dotnet -System.Xml.XmlDocument 8.0.624.26715 dotnet -System.Xml.XmlSerializer 8.0.624.26715 dotnet +System.Threading.Tasks 8.0.724.31311 dotnet +System.Threading.Tasks.Dataflow 8.0.724.31311 dotnet +System.Threading.Tasks.Extensions 8.0.724.31311 dotnet +System.Threading.Tasks.Parallel 8.0.724.31311 dotnet +System.Threading.Thread 8.0.724.31311 dotnet +System.Threading.ThreadPool 8.0.724.31311 dotnet +System.Threading.Timer 8.0.724.31311 dotnet +System.Transactions 8.0.724.31311 dotnet +System.Transactions.Local 8.0.724.31311 dotnet +System.ValueTuple 8.0.724.31311 dotnet +System.Web 8.0.724.31311 dotnet +System.Web.HttpUtility 8.0.724.31311 dotnet +System.Windows 8.0.724.31311 dotnet +System.Xml 8.0.724.31311 dotnet +System.Xml.Linq 8.0.724.31311 dotnet +System.Xml.ReaderWriter 8.0.724.31311 dotnet +System.Xml.Serialization 8.0.724.31311 dotnet +System.Xml.XDocument 8.0.724.31311 dotnet +System.Xml.XPath 8.0.724.31311 dotnet +System.Xml.XPath.XDocument 8.0.724.31311 dotnet +System.Xml.XmlDocument 8.0.724.31311 dotnet +System.Xml.XmlSerializer 8.0.724.31311 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.624.26715 dotnet +WindowsBase 8.0.724.31311 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024070805+ubu2204 deb -jellyfin-web 2024070805+ubu2204 deb +jellyfin-server 2024071505+ubu2204 deb +jellyfin-web 2024071505+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -573,12 +573,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 8.0.624.26715 dotnet +mscorlib 8.0.724.31311 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.624.26715 dotnet +netstandard 8.0.724.31311 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.16 deb passwd 1:4.8.1-2ubuntu2.2 deb @@ -593,7 +593,7 @@ sensible-utils 0.0.17 sudo 1.9.9-1ubuntu2.4 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb -tzdata 2024a-0ubuntu0.22.04 deb +tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From bf077aeb0fdb0f9829d39f199c524e6953f228b7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 12:43:27 +0000 Subject: [PATCH 2022/2257] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e525f2b..7eef2de 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 8e8c4697eb4e0b5f3da09bcb6c246b1ac0d17146 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 12:45:00 +0000 Subject: [PATCH 2023/2257] Bot Updating Templated Files --- .github/workflows/permissions.yml | 2 ++ 1 file changed, 2 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 From b72bba5cbf7f8cb53310f1e4e6264f7eca458762 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Jul 2024 12:48:05 +0000 Subject: [PATCH 2024/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2c6b3b1..23f2996 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -591,7 +591,7 @@ sed 4.8-1ubuntu2 sensible-utils 0.0.17 deb sysvinit-utils 3.01-1ubuntu1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb -tzdata 2024a-0ubuntu0.22.04 deb +tzdata 2024a-0ubuntu0.22.04.1 deb ubuntu-keyring 2021.03.26 deb ucf 3.0043 deb usrmerge 25ubuntu2 deb From 4da6ce3a47411ec49af1903327f22c7cda1d5b72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jul 2024 06:15:17 +0000 Subject: [PATCH 2025/2257] Bot Updating Package Versions --- package_versions.txt | 572 +++++++++++++++++++++---------------------- 1 file changed, 286 insertions(+), 286 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 23f2996..b46e8de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,146 +18,146 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.7 dotnet (+13 duplicates) +Jellyfin Server 10.9.8 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.7 dotnet -Jellyfin.Extensions.dll 10.9.7 dotnet +Jellyfin.Data.dll 10.9.8 dotnet +Jellyfin.Extensions.dll 10.9.8 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.7 dotnet +Jellyfin.Networking.dll 10.9.8 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.624.26909 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authorization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Server 8.0.624.26909 dotnet -Microsoft.AspNetCore.Components.Web 8.0.624.26909 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.624.26909 dotnet -Microsoft.AspNetCore.Cors 8.0.624.26909 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.624.26909 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.624.26909 dotnet -Microsoft.AspNetCore.DataProtection 8.0.624.26909 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.624.26909 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.624.26909 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.624.26909 dotnet -Microsoft.AspNetCore.Hosting 8.0.624.26909 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Features 8.0.624.26909 dotnet -Microsoft.AspNetCore.Http.Results 8.0.624.26909 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.624.26909 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.624.26909 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.624.26909 dotnet -Microsoft.AspNetCore.Identity 8.0.624.26909 dotnet -Microsoft.AspNetCore.Localization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.624.26909 dotnet -Microsoft.AspNetCore.Metadata 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.624.26909 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.624.26909 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.624.26909 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.624.26909 dotnet -Microsoft.AspNetCore.Razor 8.0.624.26909 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.624.26909 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.624.26909 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.624.26909 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.624.26909 dotnet -Microsoft.AspNetCore.Rewrite 8.0.624.26909 dotnet -Microsoft.AspNetCore.Routing 8.0.624.26909 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.624.26909 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.624.26909 dotnet -Microsoft.AspNetCore.Session 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.624.26909 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.624.26909 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.624.26909 dotnet -Microsoft.AspNetCore.WebSockets 8.0.624.26909 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.624.26909 dotnet +Microsoft.AspNetCore 8.0.724.31402 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authorization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Server 8.0.724.31402 dotnet +Microsoft.AspNetCore.Components.Web 8.0.724.31402 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.724.31402 dotnet +Microsoft.AspNetCore.Cors 8.0.724.31402 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.724.31402 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.724.31402 dotnet +Microsoft.AspNetCore.DataProtection 8.0.724.31402 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.724.31402 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.724.31402 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.724.31402 dotnet +Microsoft.AspNetCore.Hosting 8.0.724.31402 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Features 8.0.724.31402 dotnet +Microsoft.AspNetCore.Http.Results 8.0.724.31402 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.724.31402 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.724.31402 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.724.31402 dotnet +Microsoft.AspNetCore.Identity 8.0.724.31402 dotnet +Microsoft.AspNetCore.Localization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.724.31402 dotnet +Microsoft.AspNetCore.Metadata 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.724.31402 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.724.31402 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.724.31402 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.724.31402 dotnet +Microsoft.AspNetCore.Razor 8.0.724.31402 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.724.31402 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.724.31402 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.724.31402 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.724.31402 dotnet +Microsoft.AspNetCore.Rewrite 8.0.724.31402 dotnet +Microsoft.AspNetCore.Routing 8.0.724.31402 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.724.31402 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.724.31402 dotnet +Microsoft.AspNetCore.Session 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.724.31402 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.724.31402 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.724.31402 dotnet +Microsoft.AspNetCore.WebSockets 8.0.724.31402 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.724.31402 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.624.26715 dotnet -Microsoft.Data.Sqlite 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.624.26904 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.624.26904 dotnet +Microsoft.CSharp 8.0.724.31311 dotnet +Microsoft.Data.Sqlite 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.724.31404 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.724.31404 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Binder 8.0.123.58001 dotnet +Microsoft.Extensions.Configuration.Binder 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.FileExtensions 8.0.23.53103 dotnet +Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.624.26909 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.724.31402 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 dotnet -Microsoft.Extensions.DependencyModel 8.0.23.53103 dotnet +Microsoft.Extensions.DependencyModel 8.0.724.31311 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.624.26909 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.624.26909 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.624.26909 dotnet -Microsoft.Extensions.Features 8.0.624.26909 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.724.31402 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.724.31402 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.724.31402 dotnet +Microsoft.Extensions.Features 8.0.724.31402 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.624.26909 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.724.31402 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.624.26909 dotnet -Microsoft.Extensions.Identity.Stores 8.0.624.26909 dotnet -Microsoft.Extensions.Localization 8.0.624.26909 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.624.26909 dotnet +Microsoft.Extensions.Identity.Core 8.0.724.31402 dotnet +Microsoft.Extensions.Identity.Stores 8.0.724.31402 dotnet +Microsoft.Extensions.Localization 8.0.724.31402 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.724.31402 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -166,19 +166,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.624.26909 dotnet +Microsoft.Extensions.ObjectPool 8.0.724.31402 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.624.26909 dotnet -Microsoft.JSInterop 8.0.624.26909 dotnet -Microsoft.Net.Http.Headers 8.0.624.26909 dotnet +Microsoft.Extensions.WebEncoders 8.0.724.31402 dotnet +Microsoft.JSInterop 8.0.724.31402 dotnet +Microsoft.Net.Http.Headers 8.0.724.31402 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.624.26715 dotnet -Microsoft.VisualBasic.Core 13.0.624.26715 dotnet -Microsoft.Win32.Primitives 8.0.624.26715 dotnet -Microsoft.Win32.Registry 8.0.624.26715 dotnet +Microsoft.VisualBasic 8.0.724.31311 dotnet +Microsoft.VisualBasic.Core 13.0.724.31311 dotnet +Microsoft.Win32.Primitives 8.0.724.31311 dotnet +Microsoft.Win32.Registry 8.0.724.31311 dotnet Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -194,7 +194,7 @@ Serilog.Enrichers.Thread 3.1.0.0 Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.0.0 dotnet +Serilog.Settings.Configuration 8.0.2.0 dotnet Serilog.Sinks.Async 1.5.0.0 dotnet Serilog.Sinks.Console 5.0.1.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet @@ -211,178 +211,178 @@ Swashbuckle.AspNetCore.ReDoc 6.6.2.401 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.624.26715 dotnet -System.AppContext 8.0.624.26715 dotnet -System.Buffers 8.0.624.26715 dotnet -System.Collections 8.0.624.26715 dotnet -System.Collections.Concurrent 8.0.624.26715 dotnet -System.Collections.Immutable 8.0.624.26715 dotnet -System.Collections.NonGeneric 8.0.624.26715 dotnet -System.Collections.Specialized 8.0.624.26715 dotnet -System.ComponentModel 8.0.624.26715 dotnet -System.ComponentModel.Annotations 8.0.624.26715 dotnet -System.ComponentModel.DataAnnotations 8.0.624.26715 dotnet -System.ComponentModel.EventBasedAsync 8.0.624.26715 dotnet -System.ComponentModel.Primitives 8.0.624.26715 dotnet -System.ComponentModel.TypeConverter 8.0.624.26715 dotnet -System.Configuration 8.0.624.26715 dotnet -System.Console 8.0.624.26715 dotnet -System.Core 8.0.624.26715 dotnet -System.Data 8.0.624.26715 dotnet -System.Data.Common 8.0.624.26715 dotnet -System.Data.DataSetExtensions 8.0.624.26715 dotnet -System.Diagnostics.Contracts 8.0.624.26715 dotnet -System.Diagnostics.Debug 8.0.624.26715 dotnet -System.Diagnostics.DiagnosticSource 8.0.624.26715 dotnet +System 8.0.724.31311 dotnet +System.AppContext 8.0.724.31311 dotnet +System.Buffers 8.0.724.31311 dotnet +System.Collections 8.0.724.31311 dotnet +System.Collections.Concurrent 8.0.724.31311 dotnet +System.Collections.Immutable 8.0.724.31311 dotnet +System.Collections.NonGeneric 8.0.724.31311 dotnet +System.Collections.Specialized 8.0.724.31311 dotnet +System.ComponentModel 8.0.724.31311 dotnet +System.ComponentModel.Annotations 8.0.724.31311 dotnet +System.ComponentModel.DataAnnotations 8.0.724.31311 dotnet +System.ComponentModel.EventBasedAsync 8.0.724.31311 dotnet +System.ComponentModel.Primitives 8.0.724.31311 dotnet +System.ComponentModel.TypeConverter 8.0.724.31311 dotnet +System.Configuration 8.0.724.31311 dotnet +System.Console 8.0.724.31311 dotnet +System.Core 8.0.724.31311 dotnet +System.Data 8.0.724.31311 dotnet +System.Data.Common 8.0.724.31311 dotnet +System.Data.DataSetExtensions 8.0.724.31311 dotnet +System.Diagnostics.Contracts 8.0.724.31311 dotnet +System.Diagnostics.Debug 8.0.724.31311 dotnet +System.Diagnostics.DiagnosticSource 8.0.724.31311 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.624.26715 dotnet -System.Diagnostics.Process 8.0.624.26715 dotnet -System.Diagnostics.StackTrace 8.0.624.26715 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.624.26715 dotnet -System.Diagnostics.Tools 8.0.624.26715 dotnet -System.Diagnostics.TraceSource 8.0.624.26715 dotnet -System.Diagnostics.Tracing 8.0.624.26715 dotnet -System.Drawing 8.0.624.26715 dotnet +System.Diagnostics.FileVersionInfo 8.0.724.31311 dotnet +System.Diagnostics.Process 8.0.724.31311 dotnet +System.Diagnostics.StackTrace 8.0.724.31311 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.724.31311 dotnet +System.Diagnostics.Tools 8.0.724.31311 dotnet +System.Diagnostics.TraceSource 8.0.724.31311 dotnet +System.Diagnostics.Tracing 8.0.724.31311 dotnet +System.Drawing 8.0.724.31311 dotnet System.Drawing.Common 7.0.22.51805 dotnet -System.Drawing.Primitives 8.0.624.26715 dotnet -System.Dynamic.Runtime 8.0.624.26715 dotnet -System.Formats.Asn1 8.0.624.26715 dotnet -System.Formats.Tar 8.0.624.26715 dotnet -System.Globalization 8.0.624.26715 dotnet -System.Globalization.Calendars 8.0.624.26715 dotnet -System.Globalization.Extensions 8.0.624.26715 dotnet -System.IO 8.0.624.26715 dotnet -System.IO.Compression 8.0.624.26715 dotnet -System.IO.Compression.Brotli 8.0.624.26715 dotnet -System.IO.Compression.FileSystem 8.0.624.26715 dotnet -System.IO.Compression.ZipFile 8.0.624.26715 dotnet -System.IO.FileSystem 8.0.624.26715 dotnet -System.IO.FileSystem.AccessControl 8.0.624.26715 dotnet -System.IO.FileSystem.DriveInfo 8.0.624.26715 dotnet -System.IO.FileSystem.Primitives 8.0.624.26715 dotnet -System.IO.FileSystem.Watcher 8.0.624.26715 dotnet +System.Drawing.Primitives 8.0.724.31311 dotnet +System.Dynamic.Runtime 8.0.724.31311 dotnet +System.Formats.Asn1 8.0.724.31311 dotnet +System.Formats.Tar 8.0.724.31311 dotnet +System.Globalization 8.0.724.31311 dotnet +System.Globalization.Calendars 8.0.724.31311 dotnet +System.Globalization.Extensions 8.0.724.31311 dotnet +System.IO 8.0.724.31311 dotnet +System.IO.Compression 8.0.724.31311 dotnet +System.IO.Compression.Brotli 8.0.724.31311 dotnet +System.IO.Compression.FileSystem 8.0.724.31311 dotnet +System.IO.Compression.ZipFile 8.0.724.31311 dotnet +System.IO.FileSystem 8.0.724.31311 dotnet +System.IO.FileSystem.AccessControl 8.0.724.31311 dotnet +System.IO.FileSystem.DriveInfo 8.0.724.31311 dotnet +System.IO.FileSystem.Primitives 8.0.724.31311 dotnet +System.IO.FileSystem.Watcher 8.0.724.31311 dotnet System.IO.Hashing 8.0.23.53103 dotnet -System.IO.IsolatedStorage 8.0.624.26715 dotnet -System.IO.MemoryMappedFiles 8.0.624.26715 dotnet +System.IO.IsolatedStorage 8.0.724.31311 dotnet +System.IO.MemoryMappedFiles 8.0.724.31311 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.624.26715 dotnet -System.IO.Pipes.AccessControl 8.0.624.26715 dotnet -System.IO.UnmanagedMemoryStream 8.0.624.26715 dotnet -System.Linq 8.0.624.26715 dotnet +System.IO.Pipes 8.0.724.31311 dotnet +System.IO.Pipes.AccessControl 8.0.724.31311 dotnet +System.IO.UnmanagedMemoryStream 8.0.724.31311 dotnet +System.Linq 8.0.724.31311 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.624.26715 dotnet -System.Linq.Parallel 8.0.624.26715 dotnet -System.Linq.Queryable 8.0.624.26715 dotnet -System.Memory 8.0.624.26715 dotnet -System.Net 8.0.624.26715 dotnet -System.Net.Http 8.0.624.26715 dotnet -System.Net.Http.Json 8.0.624.26715 dotnet -System.Net.HttpListener 8.0.624.26715 dotnet -System.Net.Mail 8.0.624.26715 dotnet -System.Net.NameResolution 8.0.624.26715 dotnet -System.Net.NetworkInformation 8.0.624.26715 dotnet -System.Net.Ping 8.0.624.26715 dotnet -System.Net.Primitives 8.0.624.26715 dotnet -System.Net.Quic 8.0.624.26715 dotnet -System.Net.Requests 8.0.624.26715 dotnet -System.Net.Security 8.0.624.26715 dotnet -System.Net.ServicePoint 8.0.624.26715 dotnet -System.Net.Sockets 8.0.624.26715 dotnet -System.Net.WebClient 8.0.624.26715 dotnet -System.Net.WebHeaderCollection 8.0.624.26715 dotnet -System.Net.WebProxy 8.0.624.26715 dotnet -System.Net.WebSockets 8.0.624.26715 dotnet -System.Net.WebSockets.Client 8.0.624.26715 dotnet -System.Numerics 8.0.624.26715 dotnet -System.Numerics.Vectors 8.0.624.26715 dotnet -System.ObjectModel 8.0.624.26715 dotnet -System.Private.CoreLib 8.0.624.26715 dotnet -System.Private.DataContractSerialization 8.0.624.26715 dotnet -System.Private.Uri 8.0.624.26715 dotnet -System.Private.Xml 8.0.624.26715 dotnet -System.Private.Xml.Linq 8.0.624.26715 dotnet -System.Reflection 8.0.624.26715 dotnet -System.Reflection.DispatchProxy 8.0.624.26715 dotnet -System.Reflection.Emit 8.0.624.26715 dotnet -System.Reflection.Emit.ILGeneration 8.0.624.26715 dotnet -System.Reflection.Emit.Lightweight 8.0.624.26715 dotnet -System.Reflection.Extensions 8.0.624.26715 dotnet -System.Reflection.Metadata 8.0.624.26715 dotnet -System.Reflection.Primitives 8.0.624.26715 dotnet -System.Reflection.TypeExtensions 8.0.624.26715 dotnet -System.Resources.Reader 8.0.624.26715 dotnet -System.Resources.ResourceManager 8.0.624.26715 dotnet -System.Resources.Writer 8.0.624.26715 dotnet -System.Runtime 8.0.624.26715 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.624.26715 dotnet -System.Runtime.CompilerServices.VisualC 8.0.624.26715 dotnet -System.Runtime.Extensions 8.0.624.26715 dotnet -System.Runtime.Handles 8.0.624.26715 dotnet -System.Runtime.InteropServices 8.0.624.26715 dotnet -System.Runtime.InteropServices.JavaScript 8.0.624.26715 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.624.26715 dotnet -System.Runtime.Intrinsics 8.0.624.26715 dotnet -System.Runtime.Loader 8.0.624.26715 dotnet -System.Runtime.Numerics 8.0.624.26715 dotnet -System.Runtime.Serialization 8.0.624.26715 dotnet -System.Runtime.Serialization.Formatters 8.0.624.26715 dotnet -System.Runtime.Serialization.Json 8.0.624.26715 dotnet -System.Runtime.Serialization.Primitives 8.0.624.26715 dotnet -System.Runtime.Serialization.Xml 8.0.624.26715 dotnet -System.Security 8.0.624.26715 dotnet -System.Security.AccessControl 8.0.624.26715 dotnet -System.Security.Claims 8.0.624.26715 dotnet -System.Security.Cryptography 8.0.624.26715 dotnet -System.Security.Cryptography.Algorithms 8.0.624.26715 dotnet -System.Security.Cryptography.Cng 8.0.624.26715 dotnet -System.Security.Cryptography.Csp 8.0.624.26715 dotnet -System.Security.Cryptography.Encoding 8.0.624.26715 dotnet -System.Security.Cryptography.OpenSsl 8.0.624.26715 dotnet +System.Linq.Expressions 8.0.724.31311 dotnet +System.Linq.Parallel 8.0.724.31311 dotnet +System.Linq.Queryable 8.0.724.31311 dotnet +System.Memory 8.0.724.31311 dotnet +System.Net 8.0.724.31311 dotnet +System.Net.Http 8.0.724.31311 dotnet +System.Net.Http.Json 8.0.724.31311 dotnet +System.Net.HttpListener 8.0.724.31311 dotnet +System.Net.Mail 8.0.724.31311 dotnet +System.Net.NameResolution 8.0.724.31311 dotnet +System.Net.NetworkInformation 8.0.724.31311 dotnet +System.Net.Ping 8.0.724.31311 dotnet +System.Net.Primitives 8.0.724.31311 dotnet +System.Net.Quic 8.0.724.31311 dotnet +System.Net.Requests 8.0.724.31311 dotnet +System.Net.Security 8.0.724.31311 dotnet +System.Net.ServicePoint 8.0.724.31311 dotnet +System.Net.Sockets 8.0.724.31311 dotnet +System.Net.WebClient 8.0.724.31311 dotnet +System.Net.WebHeaderCollection 8.0.724.31311 dotnet +System.Net.WebProxy 8.0.724.31311 dotnet +System.Net.WebSockets 8.0.724.31311 dotnet +System.Net.WebSockets.Client 8.0.724.31311 dotnet +System.Numerics 8.0.724.31311 dotnet +System.Numerics.Vectors 8.0.724.31311 dotnet +System.ObjectModel 8.0.724.31311 dotnet +System.Private.CoreLib 8.0.724.31311 dotnet +System.Private.DataContractSerialization 8.0.724.31311 dotnet +System.Private.Uri 8.0.724.31311 dotnet +System.Private.Xml 8.0.724.31311 dotnet +System.Private.Xml.Linq 8.0.724.31311 dotnet +System.Reflection 8.0.724.31311 dotnet +System.Reflection.DispatchProxy 8.0.724.31311 dotnet +System.Reflection.Emit 8.0.724.31311 dotnet +System.Reflection.Emit.ILGeneration 8.0.724.31311 dotnet +System.Reflection.Emit.Lightweight 8.0.724.31311 dotnet +System.Reflection.Extensions 8.0.724.31311 dotnet +System.Reflection.Metadata 8.0.724.31311 dotnet +System.Reflection.Primitives 8.0.724.31311 dotnet +System.Reflection.TypeExtensions 8.0.724.31311 dotnet +System.Resources.Reader 8.0.724.31311 dotnet +System.Resources.ResourceManager 8.0.724.31311 dotnet +System.Resources.Writer 8.0.724.31311 dotnet +System.Runtime 8.0.724.31311 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.724.31311 dotnet +System.Runtime.CompilerServices.VisualC 8.0.724.31311 dotnet +System.Runtime.Extensions 8.0.724.31311 dotnet +System.Runtime.Handles 8.0.724.31311 dotnet +System.Runtime.InteropServices 8.0.724.31311 dotnet +System.Runtime.InteropServices.JavaScript 8.0.724.31311 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.724.31311 dotnet +System.Runtime.Intrinsics 8.0.724.31311 dotnet +System.Runtime.Loader 8.0.724.31311 dotnet +System.Runtime.Numerics 8.0.724.31311 dotnet +System.Runtime.Serialization 8.0.724.31311 dotnet +System.Runtime.Serialization.Formatters 8.0.724.31311 dotnet +System.Runtime.Serialization.Json 8.0.724.31311 dotnet +System.Runtime.Serialization.Primitives 8.0.724.31311 dotnet +System.Runtime.Serialization.Xml 8.0.724.31311 dotnet +System.Security 8.0.724.31311 dotnet +System.Security.AccessControl 8.0.724.31311 dotnet +System.Security.Claims 8.0.724.31311 dotnet +System.Security.Cryptography 8.0.724.31311 dotnet +System.Security.Cryptography.Algorithms 8.0.724.31311 dotnet +System.Security.Cryptography.Cng 8.0.724.31311 dotnet +System.Security.Cryptography.Csp 8.0.724.31311 dotnet +System.Security.Cryptography.Encoding 8.0.724.31311 dotnet +System.Security.Cryptography.OpenSsl 8.0.724.31311 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.624.26715 dotnet -System.Security.Cryptography.X509Certificates 8.0.624.26715 dotnet +System.Security.Cryptography.Primitives 8.0.724.31311 dotnet +System.Security.Cryptography.X509Certificates 8.0.724.31311 dotnet System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.624.26715 dotnet -System.Security.Principal.Windows 8.0.624.26715 dotnet -System.Security.SecureString 8.0.624.26715 dotnet -System.ServiceModel.Web 8.0.624.26715 dotnet -System.ServiceProcess 8.0.624.26715 dotnet -System.Text.Encoding 8.0.624.26715 dotnet -System.Text.Encoding.CodePages 8.0.624.26715 dotnet -System.Text.Encoding.Extensions 8.0.624.26715 dotnet -System.Text.Encodings.Web 8.0.624.26715 dotnet -System.Text.Json 8.0.624.26715 dotnet -System.Text.RegularExpressions 8.0.624.26715 dotnet -System.Threading 8.0.624.26715 dotnet -System.Threading.Channels 8.0.624.26715 dotnet -System.Threading.Overlapped 8.0.624.26715 dotnet +System.Security.Principal 8.0.724.31311 dotnet +System.Security.Principal.Windows 8.0.724.31311 dotnet +System.Security.SecureString 8.0.724.31311 dotnet +System.ServiceModel.Web 8.0.724.31311 dotnet +System.ServiceProcess 8.0.724.31311 dotnet +System.Text.Encoding 8.0.724.31311 dotnet +System.Text.Encoding.CodePages 8.0.724.31311 dotnet +System.Text.Encoding.Extensions 8.0.724.31311 dotnet +System.Text.Encodings.Web 8.0.724.31311 dotnet +System.Text.Json 8.0.724.31311 dotnet +System.Text.RegularExpressions 8.0.724.31311 dotnet +System.Threading 8.0.724.31311 dotnet +System.Threading.Channels 8.0.724.31311 dotnet +System.Threading.Overlapped 8.0.724.31311 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.624.26715 dotnet -System.Threading.Tasks.Dataflow 8.0.624.26715 dotnet -System.Threading.Tasks.Extensions 8.0.624.26715 dotnet -System.Threading.Tasks.Parallel 8.0.624.26715 dotnet -System.Threading.Thread 8.0.624.26715 dotnet -System.Threading.ThreadPool 8.0.624.26715 dotnet -System.Threading.Timer 8.0.624.26715 dotnet -System.Transactions 8.0.624.26715 dotnet -System.Transactions.Local 8.0.624.26715 dotnet -System.ValueTuple 8.0.624.26715 dotnet -System.Web 8.0.624.26715 dotnet -System.Web.HttpUtility 8.0.624.26715 dotnet -System.Windows 8.0.624.26715 dotnet -System.Xml 8.0.624.26715 dotnet -System.Xml.Linq 8.0.624.26715 dotnet -System.Xml.ReaderWriter 8.0.624.26715 dotnet -System.Xml.Serialization 8.0.624.26715 dotnet -System.Xml.XDocument 8.0.624.26715 dotnet -System.Xml.XPath 8.0.624.26715 dotnet -System.Xml.XPath.XDocument 8.0.624.26715 dotnet -System.Xml.XmlDocument 8.0.624.26715 dotnet -System.Xml.XmlSerializer 8.0.624.26715 dotnet +System.Threading.Tasks 8.0.724.31311 dotnet +System.Threading.Tasks.Dataflow 8.0.724.31311 dotnet +System.Threading.Tasks.Extensions 8.0.724.31311 dotnet +System.Threading.Tasks.Parallel 8.0.724.31311 dotnet +System.Threading.Thread 8.0.724.31311 dotnet +System.Threading.ThreadPool 8.0.724.31311 dotnet +System.Threading.Timer 8.0.724.31311 dotnet +System.Transactions 8.0.724.31311 dotnet +System.Transactions.Local 8.0.724.31311 dotnet +System.ValueTuple 8.0.724.31311 dotnet +System.Web 8.0.724.31311 dotnet +System.Web.HttpUtility 8.0.724.31311 dotnet +System.Windows 8.0.724.31311 dotnet +System.Xml 8.0.724.31311 dotnet +System.Xml.Linq 8.0.724.31311 dotnet +System.Xml.ReaderWriter 8.0.724.31311 dotnet +System.Xml.Serialization 8.0.724.31311 dotnet +System.Xml.XDocument 8.0.724.31311 dotnet +System.Xml.XPath 8.0.724.31311 dotnet +System.Xml.XPath.XDocument 8.0.724.31311 dotnet +System.Xml.XmlDocument 8.0.724.31311 dotnet +System.Xml.XmlSerializer 8.0.724.31311 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.624.26715 dotnet +WindowsBase 8.0.724.31311 dotnet adduser 3.118ubuntu5 deb apt 2.4.12 deb apt-utils 2.4.12 deb @@ -421,10 +421,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.7+ubu2204 deb +jellyfin 10.9.8+ubu2204 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 10.9.7+ubu2204 deb -jellyfin-web 10.9.7+ubu2204 deb +jellyfin-server 10.9.8+ubu2204 deb +jellyfin-web 10.9.8+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb @@ -475,8 +475,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.3 deb libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -572,12 +572,12 @@ lsb-base 11.1.0ubuntu4 mawk 1.3.4.20200120-3 deb mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb mount 2.37.2-4ubuntu3.4 deb -mscorlib 8.0.624.26715 dotnet +mscorlib 8.0.724.31311 dotnet ncurses-base 6.3-2ubuntu0.1 deb ncurses-bin 6.3-2ubuntu0.1 deb netcat 1.218-4ubuntu1 deb netcat-openbsd 1.218-4ubuntu1 deb -netstandard 8.0.624.26715 dotnet +netstandard 8.0.724.31311 dotnet ocl-icd-libopencl1 2.2.14-3 deb openssl 3.0.2-0ubuntu1.16 deb passwd 1:4.8.1-2ubuntu2.2 deb From 49dbdcdca484bfbbee57d35164a9292cc93f788c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Jul 2024 06:16:49 +0000 Subject: [PATCH 2026/2257] 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 6a3f554..67b7b91 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,8 +422,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024071505+ubu2204 deb -jellyfin-web 2024071505+ubu2204 deb +jellyfin-server 2024072205+ubu2204 deb +jellyfin-web 2024072205+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -476,8 +476,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.3 deb libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.17+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.17+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb From a19bb1266c20cf8f1dec5ee3b6401f551eb5495e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 29 Jul 2024 06:16:48 +0000 Subject: [PATCH 2027/2257] 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 67b7b91..30b00ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -AsyncKeyedLock 6.4.2.0 dotnet +AsyncKeyedLock 7.0.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet @@ -179,7 +179,7 @@ Microsoft.VisualBasic 8.0.724.31311 Microsoft.VisualBasic.Core 13.0.724.31311 dotnet Microsoft.Win32.Primitives 8.0.724.31311 dotnet Microsoft.Win32.Registry 8.0.724.31311 dotnet -Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet +Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet @@ -201,12 +201,12 @@ Serilog.Sinks.Debug 2.0.0.0 Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +ShimSkiaSharp 2.0.0.0 dotnet SkiaSharp 2.88.8.0 dotnet SkiaSharp.HarfBuzz 2.88.8.0 dotnet -Svg.Custom 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet -Svg.Model 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet -Svg.Skia 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +Svg.Custom 2.0.0.0 dotnet +Svg.Model 2.0.0.0 dotnet +Svg.Skia 2.0.0.0 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -243,7 +243,7 @@ System.Diagnostics.Tools 8.0.724.31311 System.Diagnostics.TraceSource 8.0.724.31311 dotnet System.Diagnostics.Tracing 8.0.724.31311 dotnet System.Drawing 8.0.724.31311 dotnet -System.Drawing.Common 7.0.22.51805 dotnet +System.Drawing.Common 8.0.624.26909 dotnet System.Drawing.Primitives 8.0.724.31311 dotnet System.Dynamic.Runtime 8.0.724.31311 dotnet System.Formats.Asn1 8.0.724.31311 dotnet @@ -421,9 +421,9 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-7-jammy deb -jellyfin-server 2024072205+ubu2204 deb -jellyfin-web 2024072205+ubu2204 deb +jellyfin-ffmpeg6 6.0.1-8-jammy deb +jellyfin-server 2024072905+ubu2204 deb +jellyfin-web 2024072905+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -513,7 +513,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 4.0.5.1 dotnet +libse 4.0.7.45 dotnet libseccomp2 2.5.3-2ubuntu2 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb From 47d1c4d015598ace69bfdfe8051361fcb97ca310 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jul 2024 12:51:20 +0000 Subject: [PATCH 2028/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b46e8de..3a6bedc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,7 +422,7 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin 10.9.8+ubu2204 deb -jellyfin-ffmpeg6 6.0.1-7-jammy deb +jellyfin-ffmpeg6 6.0.1-8-jammy deb jellyfin-server 10.9.8+ubu2204 deb jellyfin-web 10.9.8+ubu2204 deb jq 1.6-2.1ubuntu3 deb From 538ca0953588503690a76fdc5b46dfa4d48f0a34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Aug 2024 03:13:06 +0000 Subject: [PATCH 2029/2257] Bot Updating Package Versions --- package_versions.txt | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3a6bedc..b8f19cc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,6 @@ AsyncKeyedLock 6.4.2.0 BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet -CacheManager.NET 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet @@ -11,21 +10,19 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.5.0.0 dotnet -EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.2 dotnet ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.8 dotnet (+13 duplicates) +Jellyfin Server 10.9.9 dotnet (+13 duplicates) Jellyfin.Api 22.4.0.0 dotnet -Jellyfin.Data.dll 10.9.8 dotnet -Jellyfin.Extensions.dll 10.9.8 dotnet +Jellyfin.Data.dll 10.9.9 dotnet +Jellyfin.Extensions.dll 10.9.9 dotnet Jellyfin.LiveTv 22.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.8 dotnet +Jellyfin.Networking.dll 10.9.9 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -179,7 +176,7 @@ Microsoft.VisualBasic 8.0.724.31311 Microsoft.VisualBasic.Core 13.0.724.31311 dotnet Microsoft.Win32.Primitives 8.0.724.31311 dotnet Microsoft.Win32.Registry 8.0.724.31311 dotnet -Microsoft.Win32.SystemEvents 7.0.22.51805 dotnet +Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet @@ -188,17 +185,17 @@ Prometheus.NetStandard.dll 8.2.1 SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet SQLitePCLRaw.core 2.1.6.2060 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet -Serilog 3.1.1.0 dotnet -Serilog.AspNetCore 8.0.1.0 dotnet +Serilog 4.0.0.0 dotnet +Serilog.AspNetCore 8.0.2.0 dotnet Serilog.Enrichers.Thread 3.1.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet Serilog.Settings.Configuration 8.0.2.0 dotnet -Serilog.Sinks.Async 1.5.0.0 dotnet -Serilog.Sinks.Console 5.0.1.0 dotnet +Serilog.Sinks.Async 2.0.0.0 dotnet +Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 5.0.0.0 dotnet +Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet @@ -243,7 +240,7 @@ System.Diagnostics.Tools 8.0.724.31311 System.Diagnostics.TraceSource 8.0.724.31311 dotnet System.Diagnostics.Tracing 8.0.724.31311 dotnet System.Drawing 8.0.724.31311 dotnet -System.Drawing.Common 7.0.22.51805 dotnet +System.Drawing.Common 8.0.624.26909 dotnet System.Drawing.Primitives 8.0.724.31311 dotnet System.Dynamic.Runtime 8.0.724.31311 dotnet System.Formats.Asn1 8.0.724.31311 dotnet @@ -261,7 +258,6 @@ System.IO.FileSystem.AccessControl 8.0.724.31311 System.IO.FileSystem.DriveInfo 8.0.724.31311 dotnet System.IO.FileSystem.Primitives 8.0.724.31311 dotnet System.IO.FileSystem.Watcher 8.0.724.31311 dotnet -System.IO.Hashing 8.0.23.53103 dotnet System.IO.IsolatedStorage 8.0.724.31311 dotnet System.IO.MemoryMappedFiles 8.0.724.31311 dotnet System.IO.Pipelines 8.0.23.53103 dotnet @@ -421,10 +417,10 @@ grep 3.7-1build1 gzip 1.10-4ubuntu4.1 deb hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb -jellyfin 10.9.8+ubu2204 deb +jellyfin 10.9.9+ubu2204 deb jellyfin-ffmpeg6 6.0.1-8-jammy deb -jellyfin-server 10.9.8+ubu2204 deb -jellyfin-web 10.9.8+ubu2204 deb +jellyfin-server 10.9.9+ubu2204 deb +jellyfin-web 10.9.9+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libacl1 2.3.1-1 deb @@ -475,8 +471,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.3 deb libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb @@ -512,7 +508,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb -libse 4.0.5.1 dotnet +libse 4.0.7.45 dotnet libseccomp2 2.5.3-2ubuntu2 deb libselinux1 3.3-1build2 deb libsemanage-common 3.3-1build2 deb From 07e078a75546f570617d92571b0cbc585677b771 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Aug 2024 06:16:25 +0000 Subject: [PATCH 2030/2257] Bot Updating Package Versions --- package_versions.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 30b00ed..2bdab58 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.0.0 dotnet +Audio Tools Library (ATL) for .NET 5.25.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet @@ -189,7 +190,7 @@ SQLitePCLRaw.batteries_v2 2.1.6.2060 SQLitePCLRaw.core 2.1.6.2060 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet Serilog 4.0.0.0 dotnet -Serilog.AspNetCore 8.0.1.0 dotnet +Serilog.AspNetCore 8.0.2.0 dotnet Serilog.Enrichers.Thread 4.0.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet @@ -381,6 +382,7 @@ System.Xml.XmlDocument 8.0.724.31311 System.Xml.XmlSerializer 8.0.724.31311 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet +Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 8.0.724.31311 dotnet adduser 3.118ubuntu5 deb @@ -422,8 +424,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-8-jammy deb -jellyfin-server 2024072905+ubu2204 deb -jellyfin-web 2024072905+ubu2204 deb +jellyfin-server 2024080505+ubu2204 deb +jellyfin-web 2024080505+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -476,8 +478,8 @@ libkeyutils1 1.6.1-2ubuntu libkrb5-3 1.19.2-2ubuntu0.3 deb libkrb5support0 1.19.2-2ubuntu0.3 deb libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.1 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.1 deb +libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb +libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb liblz4-1 1.9.3-2build2 deb liblzma5 5.2.5-2ubuntu1 deb From f73a8502fa10200c2636302c8efbe590a34c6bc9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 Aug 2024 06:19:15 +0000 Subject: [PATCH 2031/2257] Bot Updating Package Versions --- package_versions.txt | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2bdab58..c260bd3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,10 +1,9 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.0.0 dotnet -Audio Tools Library (ATL) for .NET 5.25.0.0 dotnet +Audio Tools Library (ATL) for .NET 5.26.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet -CacheManager.NET 1.2.0.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet @@ -12,8 +11,6 @@ DiscUtils.Iso9660 0.16.13.55129 DiscUtils.Streams 0.16.13.55129 dotnet DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -EFCoreSecondLevelCacheInterceptor 4.5.0.0 dotnet -EasyCaching.Core 1.9.2.0 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet HarfBuzzSharp 7.3.0.2 dotnet ICU4N 60.1.0 dotnet @@ -262,7 +259,6 @@ System.IO.FileSystem.AccessControl 8.0.724.31311 System.IO.FileSystem.DriveInfo 8.0.724.31311 dotnet System.IO.FileSystem.Primitives 8.0.724.31311 dotnet System.IO.FileSystem.Watcher 8.0.724.31311 dotnet -System.IO.Hashing 8.0.23.53103 dotnet System.IO.IsolatedStorage 8.0.724.31311 dotnet System.IO.MemoryMappedFiles 8.0.724.31311 dotnet System.IO.Pipelines 8.0.23.53103 dotnet @@ -397,7 +393,7 @@ ca-certificates 20230311ubunt catatonit 0.1.7-1 deb coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.16 deb +curl 7.81.0-1ubuntu1.17 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -424,8 +420,8 @@ gzip 1.10-4ubuntu4 hostname 3.23ubuntu2 deb init-system-helpers 1.62 deb jellyfin-ffmpeg6 6.0.1-8-jammy deb -jellyfin-server 2024080505+ubu2204 deb -jellyfin-web 2024080505+ubu2204 deb +jellyfin-server 2024081205+ubu2204 deb +jellyfin-web 2024081205+ubu2204 deb jq 1.6-2.1ubuntu3 deb karaoke --dev 2023.524.0.0 dotnet libaacs0 0.11.1-1 deb @@ -448,7 +444,7 @@ libcap-ng0 0.7.9-2.2buil libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.16 deb +libcurl4 7.81.0-1ubuntu1.17 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -525,7 +521,7 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.16 deb +libssl3 3.0.2-0ubuntu1.17 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb @@ -582,7 +578,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 8.0.724.31311 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.16 deb +openssl 3.0.2-0ubuntu1.17 deb passwd 1:4.8.1-2ubuntu2.2 deb perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb From 300986d08d5ba3e8950c155b8e3c0d94a6390df8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Aug 2024 12:50:42 +0000 Subject: [PATCH 2032/2257] 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 b8f19cc..6ffc304 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -391,7 +391,7 @@ ca-certificates 20230311ubunt catatonit 0.1.7-1 deb coreutils 8.32-4.1ubuntu1.2 deb cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.16 deb +curl 7.81.0-1ubuntu1.17 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb debconf 1.5.79ubuntu1 deb debianutils 5.5-1ubuntu2 deb @@ -441,7 +441,7 @@ libcap-ng0 0.7.9-2.2buil libcap2 1:2.44-1ubuntu0.22.04.1 deb libcom-err2 1.46.5-2ubuntu1.1 deb libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.16 deb +libcurl4 7.81.0-1ubuntu1.17 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb libdebconfclient0 0.261ubuntu1 deb libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb @@ -518,7 +518,7 @@ libsmartcols1 2.37.2-4ubunt libsqlite3-0 3.37.2-2ubuntu0.3 deb libss2 1.46.5-2ubuntu1.1 deb libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.16 deb +libssl3 3.0.2-0ubuntu1.17 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb libsystemd0 249.11-0ubuntu3.12 deb libtasn1-6 4.18.0-4build1 deb @@ -575,7 +575,7 @@ netcat 1.218-4ubuntu netcat-openbsd 1.218-4ubuntu1 deb netstandard 8.0.724.31311 dotnet ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.16 deb +openssl 3.0.2-0ubuntu1.17 deb passwd 1:4.8.1-2ubuntu2.2 deb perl-base 5.34.0-3ubuntu1.3 deb pinentry-curses 1.1.1-1build2 deb From 4459ec1edcdac0f57c81641728dfe672171c124e Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Tue, 13 Aug 2024 17:21:36 +0100 Subject: [PATCH 2033/2257] Rebase to noble --- Dockerfile | 9 +++++---- Dockerfile.aarch64 | 9 +++++---- Jenkinsfile | 4 ++-- README.md | 5 +++-- jenkins-vars.yml | 4 ++-- readme-vars.yml | 14 ++------------ .../s6-overlay/s6-rc.d/init-jellyfin-config/run | 1 + .../etc/s6-overlay/s6-rc.d/init-jellyfin-video/run | 1 + 8 files changed, 21 insertions(+), 26 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4684d63..de72a1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy +FROM ghcr.io/linuxserver/baseimage-ubuntu:noble # set version label ARG BUILD_DATE @@ -16,10 +16,10 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ curl -fSsL https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ - echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y \ @@ -28,6 +28,7 @@ RUN \ jellyfin-ffmpeg6 \ mesa-va-drivers \ xmlstarlet && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2fa3997..1ab9ab8 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble # set version label ARG BUILD_DATE @@ -16,10 +16,10 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ - echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ - echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble unstable' >> /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y \ @@ -30,6 +30,7 @@ RUN \ libomxil-bellagio-bin \ libraspberrypi0 \ xmlstarlet && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Jenkinsfile b/Jenkinsfile index 1ebabff..8c6f523 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,8 +31,8 @@ pipeline { CI_PORT='8096' CI_SSL='false' CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' + CI_DOCKERENV='' + CI_AUTH='' CI_WEBPATH='' } stages { diff --git a/README.md b/README.md index a9b15bc..d6ffa62 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ services: - TZ=Etc/UTC - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - - /path/to/library:/config + - /path/to/jellyfin/library:/config - /path/to/tvseries:/data/tvshows - /path/to/movies:/data/movies ports: @@ -170,7 +170,7 @@ docker run -d \ -p 8920:8920 `#optional` \ -p 7359:7359/udp `#optional` \ -p 1900:1900/udp `#optional` \ - -v /path/to/library:/config \ + -v /path/to/jellyfin/library:/config \ -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ --restart unless-stopped \ @@ -371,6 +371,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **13.08.24:** - Rebase to Ubuntu Noble. * **01.05.24:** - Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb. * **03.12.23:** - Switch nightly to ffmpeg6. * **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 80012d2..9f3c725 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -23,8 +23,8 @@ repo_vars: - CI_PORT='8096' - CI_SSL='false' - CI_DELAY='120' - - CI_DOCKERENV='TZ=US/Pacific' - - CI_AUTH='user:password' + - CI_DOCKERENV='' + - CI_AUTH='' - CI_WEBPATH='' sponsor_links: - { name: "Jellyfin", url: "https://opencollective.com/jellyfin" } diff --git a/readme-vars.yml b/readme-vars.yml index 810b3a2..907dcf2 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -20,7 +20,7 @@ common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} + - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} - {vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} - {vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} param_usage_include_ports: true @@ -31,17 +31,6 @@ param_usage_include_env: true opt_param_usage_include_env: true opt_param_env_vars: - {env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} -opt_param_usage_include_vols: false -opt_param_volumes: - - {vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*."} -opt_param_device_map: false -opt_param_devices: - - {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)."} - - {device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."} - - {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding."} - - {device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} - - {device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} - - {device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} opt_param_usage_include_ports: true opt_param_ports: - {external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)."} @@ -102,6 +91,7 @@ readme_hwaccel: true unraid_template_sync: false # changelog changelogs: + - {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."} - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb."} - {date: "03.12.23:", desc: "Switch nightly to ffmpeg6."} - {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run index b35c3f8..8b6a23e 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-config/run @@ -1,4 +1,5 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash # create directories mkdir -p \ diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run index daee144..fe7f828 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run +++ b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run @@ -1,4 +1,5 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) From 8a3b192fb40365c209830b5285f944e250111e27 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Tue, 13 Aug 2024 17:24:38 +0100 Subject: [PATCH 2034/2257] Fix logo url --- README.md | 2 +- readme-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6ffa62..1c8f0b5 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Find us at: [Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. -[![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://github.com/jellyfin/jellyfin) +[![jellyfin](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-logo.png)](https://github.com/jellyfin/jellyfin) ## Supported Architectures diff --git a/readme-vars.yml b/readme-vars.yml index 907dcf2..8fe294c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -3,7 +3,7 @@ # project information project_name: jellyfin project_url: "https://github.com/jellyfin/jellyfin" -project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true" +project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-logo.png" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." # supported architectures From 542c6539600b2e9bc365a3502c4f9ba29c13769f Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Tue, 13 Aug 2024 17:29:26 +0100 Subject: [PATCH 2035/2257] Rebase to noble --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 8 ++++---- Dockerfile.aarch64 | 9 +++++---- Jenkinsfile | 6 +++--- README.md | 5 +++-- jenkins-vars.yml | 6 +++--- readme-vars.yml | 16 +++------------- 7 files changed, 22 insertions(+), 30 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 3654ebd..8ed79c1 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -20,7 +20,7 @@ jobs: echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****" echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for jellyfin branch master" diff --git a/Dockerfile b/Dockerfile index 9882fe4..6f05aa2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy +FROM ghcr.io/linuxserver/baseimage-ubuntu:noble # set version label ARG BUILD_DATE @@ -16,9 +16,9 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ - echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ @@ -33,7 +33,7 @@ RUN \ /var/tmp/* # add local files -COPY root/ / +COPY root/ / # ports and volumes EXPOSE 8096 8920 diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 01b923a..279b0f4 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble # set version label ARG BUILD_DATE @@ -16,9 +16,9 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" RUN \ echo "**** install jellyfin *****" && \ curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \ - echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \ + echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble main' > /etc/apt/sources.list.d/jellyfin.list && \ if [ -z ${JELLYFIN_RELEASE+x} ]; then \ - JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ + JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ apt-get install -y --no-install-recommends \ @@ -28,6 +28,7 @@ RUN \ libomxil-bellagio-bin \ libraspberrypi0 \ xmlstarlet && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ @@ -35,7 +36,7 @@ RUN \ /var/tmp/* # add local files -COPY root/ / +COPY root/ / # ports and volumes EXPOSE 8096 8920 diff --git a/Jenkinsfile b/Jenkinsfile index 7eef2de..362182b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,8 +31,8 @@ pipeline { CI_PORT='8096' CI_SSL='false' CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' + CI_DOCKERENV='' + CI_AUTH='' CI_WEBPATH='' } stages { @@ -115,7 +115,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/README.md b/README.md index 5079c09..ded5036 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ services: - TZ=Etc/UTC - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - - /path/to/library:/config + - /path/to/jellyfin/library:/config - /path/to/tvseries:/data/tvshows - /path/to/movies:/data/movies ports: @@ -170,7 +170,7 @@ docker run -d \ -p 8920:8920 `#optional` \ -p 7359:7359/udp `#optional` \ -p 1900:1900/udp `#optional` \ - -v /path/to/library:/config \ + -v /path/to/jellyfin/library:/config \ -v /path/to/tvseries:/data/tvshows \ -v /path/to/movies:/data/movies \ --restart unless-stopped \ @@ -371,6 +371,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **13.08.24:** - Rebase to Ubuntu Noble. * **01.05.24:** - Increase verbosity of device permissions fixing. * **12.02.24:** - Use universal hardware acceleration blurb. * **12.09.23:** - Take ownership of plugin directories. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 1540742..e407127 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" release_type: stable release_tag: latest ls_branch: master @@ -22,8 +22,8 @@ repo_vars: - CI_PORT='8096' - CI_SSL='false' - CI_DELAY='120' - - CI_DOCKERENV='TZ=US/Pacific' - - CI_AUTH='user:password' + - CI_DOCKERENV='' + - CI_AUTH='' - CI_WEBPATH='' sponsor_links: - { name: "Jellyfin", url: "https://opencollective.com/jellyfin" } diff --git a/readme-vars.yml b/readme-vars.yml index 47025c6..f121ef9 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -3,7 +3,7 @@ # project information project_name: jellyfin project_url: "https://github.com/jellyfin/jellyfin" -project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true" +project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-logo.png" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." # supported architectures @@ -20,7 +20,7 @@ common_param_env_vars_enabled: true #PGID, PUID, etc param_container_name: "{{ project_name }}" param_usage_include_vols: true param_volumes: - - {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} + - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"} - {vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} - {vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."} param_usage_include_ports: true @@ -31,17 +31,6 @@ param_usage_include_env: true opt_param_usage_include_env: true opt_param_env_vars: - {env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} -opt_param_usage_include_vols: false -opt_param_volumes: - - {vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*."} -opt_param_device_map: false -opt_param_devices: - - {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)."} - - {device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."} - - {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding."} - - {device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} - - {device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} - - {device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."} opt_param_usage_include_ports: true opt_param_ports: - {external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)."} @@ -102,6 +91,7 @@ readme_hwaccel: true unraid_template_sync: false # changelog changelogs: + - {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."} - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing."} - {date: "12.02.24:", desc: "Use universal hardware acceleration blurb."} - {date: "12.09.23:", desc: "Take ownership of plugin directories."} From 79381855df8ba439a1db2295d40a31cfbfc8d96e Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Tue, 13 Aug 2024 17:34:41 +0100 Subject: [PATCH 2036/2257] Fix version command --- .github/workflows/external_trigger.yml | 2 +- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 97fcb0e..c21b361 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -20,7 +20,7 @@ jobs: echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\". ****" echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') + EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for jellyfin branch nightly" diff --git a/Jenkinsfile b/Jenkinsfile index 8c6f523..88a5547 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -115,7 +115,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', + script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 9f3c725..c3d60c8 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -3,7 +3,7 @@ # jenkins variables project_name: docker-jellyfin external_type: na -custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" +custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'" release_type: prerelease release_tag: nightly ls_branch: nightly From b4afafdf09b8a1d7937643ca437b7f11159ac773 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Aug 2024 18:31:33 +0000 Subject: [PATCH 2037/2257] Bot Updating Package Versions --- package_versions.txt | 427 +++++++++++++++++++++---------------------- 1 file changed, 212 insertions(+), 215 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c260bd3..d74d576 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,12 +17,12 @@ ICU4N 60.1.0 ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet Jellyfin Server 10.10.0 dotnet (+13 duplicates) -Jellyfin.Api 22.4.0.0 dotnet +Jellyfin.Api 24.4.0.0 dotnet Jellyfin.Data.dll 10.10.0 dotnet Jellyfin.Extensions.dll 10.10.0 dotnet -Jellyfin.LiveTv 22.4.0.0 dotnet -Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet +Jellyfin.LiveTv 24.4.0.0 dotnet +Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet Jellyfin.Networking.dll 10.10.0 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet @@ -381,221 +381,218 @@ TagLib# 2.3.0.0 Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 8.0.724.31311 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.12 deb -apt-utils 2.4.12 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.6 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1.1 deb -bsdutils 1:2.37.2-4ubuntu3.4 deb -ca-certificates 20230311ubuntu0.22.04.1 deb +adduser 3.137ubuntu1 deb +apt 2.7.14build2 deb +apt-utils 2.7.14build2 deb +at 3.2.5-2.1ubuntu3 deb +base-files 13ubuntu10 deb +base-passwd 3.6.3build1 deb +bash 5.2.21-2ubuntu4 deb +bsdutils 1:2.39.3-9ubuntu6 deb +ca-certificates 20240203 deb catatonit 0.1.7-1 deb -coreutils 8.32-4.1ubuntu1.2 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.17 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.3 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin-ffmpeg6 6.0.1-8-jammy deb -jellyfin-server 2024081205+ubu2204 deb -jellyfin-web 2024081205+ubu2204 deb -jq 1.6-2.1ubuntu3 deb +coreutils 9.4-3ubuntu6 deb +cron 3.0pl1-184ubuntu2 deb +cron-daemon-common 3.0pl1-184ubuntu2 deb +curl 8.5.0-2ubuntu10.2 deb +dash 0.5.12-6ubuntu5 deb +debconf 1.5.86ubuntu1 deb +debianutils 5.17build1 deb +diffutils 1:3.10-1build1 deb +dirmngr 2.4.4-2ubuntu17 deb +dpkg 1.22.6ubuntu6 deb +e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb +findutils 4.9.0-5build1 deb +fontconfig-config 2.15.0-1.1ubuntu2 deb +fonts-dejavu-core 2.37-8 deb +fonts-dejavu-mono 2.37-8 deb +gcc-14-base 14-20240412-0ubuntu1 deb +gnupg 2.4.4-2ubuntu17 deb +gnupg-l10n 2.4.4-2ubuntu17 deb +gnupg-utils 2.4.4-2ubuntu17 deb +gpg 2.4.4-2ubuntu17 deb +gpg-agent 2.4.4-2ubuntu17 deb +gpg-wks-client 2.4.4-2ubuntu17 deb +gpgconf 2.4.4-2ubuntu17 deb +gpgsm 2.4.4-2ubuntu17 deb +gpgv 2.4.4-2ubuntu17 deb +grep 3.11-4build1 deb +gzip 1.12-1ubuntu3 deb +hostname 3.23+nmu2ubuntu2 deb +init-system-helpers 1.66ubuntu1 deb +jellyfin-ffmpeg6 6.0.1-8-noble deb +jellyfin-server 2024081205+ubu2404 deb +jellyfin-web 2024081205+ubu2404 deb +jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet -libaacs0 0.11.1-1 deb -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.12 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libbdplus0 0.2.0-1 deb -libblkid1 2.37.2-4ubuntu3.4 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.8 deb -libc6 2.35-0ubuntu3.8 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.17 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.3 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.5 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.3 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.3 deb -libkrb5support0 1.19.2-2ubuntu0.3 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3.4 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.2 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.4 deb -libpam-modules-bin 1.4.0-11ubuntu2.4 deb -libpam-runtime 1.4.0-11ubuntu2.4 deb -libpam0g 1.4.0-11ubuntu2.4 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2.1 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +keyboxd 2.4.4-2ubuntu17 deb +krb5-locales 1.20.1-6ubuntu2 deb +libaacs0 0.11.1-2build1 deb +libacl1 2.3.2-1build1 deb +libapparmor1 4.0.1really4.0.0-beta3-0ubuntu0.1 deb +libapt-pkg6.0t64 2.7.14build2 deb +libassuan0 2.5.6-1build1 deb +libattr1 1:2.5.2-1build1 deb +libaudit-common 1:3.1.2-2.1build1 deb +libaudit1 1:3.1.2-2.1build1 deb +libbdplus0 0.2.0-3build1 deb +libblkid1 2.39.3-9ubuntu6 deb +libbluray2 1:1.3.4-1build1 deb +libbrotli1 1.1.0-2build2 deb +libbsd0 0.12.1-1build1 deb +libbz2-1.0 1.0.8-5.1 deb +libc-bin 2.39-0ubuntu8.2 deb +libc6 2.39-0ubuntu8.2 deb +libcairo2 1.18.0-3build1 deb +libcap-ng0 0.8.4-2build2 deb +libcap2 1:2.66-5ubuntu2 deb +libcom-err2 1.47.0-2.4~exp1ubuntu4 deb +libcrypt1 1:4.4.36-4build1 deb +libcurl4t64 8.5.0-2ubuntu10.2 deb +libdb5.3t64 5.3.28+dfsg2-7 deb +libdebconfclient0 0.271ubuntu3 deb +libdrm-amdgpu1 2.4.120-2build1 deb +libdrm-common 2.4.120-2build1 deb +libdrm-nouveau2 2.4.120-2build1 deb +libdrm-radeon1 2.4.120-2build1 deb +libdrm2 2.4.120-2build1 deb +libedit2 3.1-20230828-1build1 deb +libelf1t64 0.190-1.1build4 deb +libexpat1 2.6.1-2build1 deb +libext2fs2t64 1.47.0-2.4~exp1ubuntu4 deb +libffi8 3.4.6-1build1 deb +libfontconfig1 2.15.0-1.1ubuntu2 deb +libfreetype6 2.13.2+dfsg-1build3 deb +libgcc-s1 14-20240412-0ubuntu1 deb +libgcrypt20 1.10.3-2build1 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6 deb +libgnutls30t64 3.8.3-1.1ubuntu3.1 deb +libgpg-error0 1.47-3build2 deb +libgssapi-krb5-2 1.20.1-6ubuntu2 deb +libhogweed6t64 3.9.1-2.2build1 deb +libicu74 74.2-1ubuntu3 deb +libidn2-0 2.3.7-2build1 deb +libjq1 1.7.1-3build1 deb +libk5crypto3 1.20.1-6ubuntu2 deb +libkeyutils1 1.6.3-3build1 deb +libkrb5-3 1.20.1-6ubuntu2 deb +libkrb5support0 1.20.1-6ubuntu2 deb +libksba8 1.6.6-1build1 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb +libllvm17t64 1:17.0.6-9ubuntu1 deb +liblz4-1 1.9.4-1build1 deb +liblzma5 5.6.1+really5.4.5-1 deb +libmd0 1.1.0-2build1 deb +libmount1 2.39.3-9ubuntu6 deb +libmp3lame0 3.100-6build1 deb +libmpg123-0t64 1.32.5-1ubuntu1 deb +libncursesw6 6.4+20240113-1ubuntu2 deb +libnettle8t64 3.9.1-2.2build1 deb +libnghttp2-14 1.59.0-1ubuntu0.1 deb +libnpth0t64 1.6-3.1build1 deb +libnuma1 2.0.18-1build1 deb +libogg0 1.3.5-3build1 deb +libonig5 6.9.9-1build1 deb +libopenmpt0t64 0.7.3-1.1build3 deb +libopus0 1.4-1build1 deb +libp11-kit0 0.25.3-4ubuntu2 deb +libpam-modules 1.5.3-5ubuntu5.1 deb +libpam-modules-bin 1.5.3-5ubuntu5.1 deb +libpam-runtime 1.5.3-5ubuntu5.1 deb +libpam0g 1.5.3-5ubuntu5.1 deb +libpciaccess0 0.17-3build1 deb +libpcre2-8-0 10.42-4ubuntu2 deb +libpixman-1-0 0.42.2-1build1 deb +libpng16-16t64 1.6.43-5build1 deb +libproc2-0 2:4.0.4-4ubuntu3 deb +libpsl5t64 0.21.2-1.1build1 deb +libreadline8t64 8.2-4build1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb +libsasl2-2 2.1.28+dfsg1-5ubuntu3 deb +libsasl2-modules 2.1.28+dfsg1-5ubuntu3 deb +libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3 deb libse 4.0.7.45 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3.4 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.17 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.12 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.12 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3.4 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.3 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.4 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.8 deb -login 1:4.8.1-2ubuntu2.2 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3.4 deb +libseccomp2 2.5.5-1ubuntu3 deb +libselinux1 3.5-2ubuntu2 deb +libsemanage-common 3.5-1build5 deb +libsemanage2 3.5-1build5 deb +libsepol2 3.5-2build1 deb +libsharpyuv0 1.3.2-0.4build3 deb +libsmartcols1 2.39.3-9ubuntu6 deb +libsqlite3-0 3.45.1-1ubuntu2 deb +libss2 1.47.0-2.4~exp1ubuntu4 deb +libssh-4 0.10.6-2build2 deb +libssl3t64 3.0.13-0ubuntu3.2 deb +libstdc++6 14-20240412-0ubuntu1 deb +libsystemd0 255.4-1ubuntu8.2 deb +libtasn1-6 4.19.0-3build1 deb +libtheora0 1.1.1+dfsg.1-16.1build3 deb +libtinfo6 6.4+20240113-1ubuntu2 deb +libudev1 255.4-1ubuntu8.2 deb +libudfread0 1.1.2-1build1 deb +libunistring5 1.1-2build1 deb +libuuid1 2.39.3-9ubuntu6 deb +libvorbis0a 1.3.7-1build3 deb +libvorbisenc2 1.3.7-1build3 deb +libvorbisfile3 1.3.7-1build3 deb +libvpx9 1.14.0-1ubuntu2.1 deb +libwebp7 1.3.2-0.4build3 deb +libwebpmux3 1.3.2-0.4build3 deb +libx11-6 2:1.8.7-1build1 deb +libx11-data 2:1.8.7-1build1 deb +libx11-xcb1 2:1.8.7-1build1 deb +libx264-164 2:0.164.3108+git31e19f9-1 deb +libx265-199 3.5-2build1 deb +libxau6 1:1.0.9-1build6 deb +libxcb-dri2-0 1.15-1ubuntu2 deb +libxcb-dri3-0 1.15-1ubuntu2 deb +libxcb-present0 1.15-1ubuntu2 deb +libxcb-randr0 1.15-1ubuntu2 deb +libxcb-render0 1.15-1ubuntu2 deb +libxcb-shm0 1.15-1ubuntu2 deb +libxcb-sync1 1.15-1ubuntu2 deb +libxcb-xfixes0 1.15-1ubuntu2 deb +libxcb1 1.15-1ubuntu2 deb +libxdmcp6 1:1.1.3-0ubuntu6 deb +libxext6 2:1.3.4-1build2 deb +libxml2 2.9.14+dfsg-1.3ubuntu3 deb +libxrender1 1:0.9.10-1.1build1 deb +libxshmfence1 1.3-1build5 deb +libxslt1.1 1.1.39-0exp1build1 deb +libxxhash0 0.8.2-2build1 deb +libzstd1 1.5.5+dfsg2-2build1 deb +libzvbi-common 0.2.42-2 deb +libzvbi0t64 0.2.42-2 deb +locales 2.39-0ubuntu8.2 deb +login 1:4.13+dfsg1-4ubuntu3 deb +logsave 1.47.0-2.4~exp1ubuntu4 deb +mawk 1.3.4.20240123-1build1 deb +mesa-va-drivers 24.0.9-0ubuntu0.1 deb +mount 2.39.3-9ubuntu6 deb mscorlib 8.0.724.31311 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb +ncurses-base 6.4+20240113-1ubuntu2 deb +ncurses-bin 6.4+20240113-1ubuntu2 deb +netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.724.31311 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.17 deb -passwd 1:4.8.1-2ubuntu2.2 deb -perl-base 5.34.0-3ubuntu1.3 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2.1 deb +ocl-icd-libopencl1 2.3.2-1build1 deb +openssl 3.0.13-0ubuntu3.2 deb +passwd 1:4.13+dfsg1-4ubuntu3 deb +perl-base 5.38.2-3.2build2 deb +pinentry-curses 1.2.1-3ubuntu5 deb +procps 2:4.0.4-4ubuntu3 deb prometheus-net.DotNetRuntime 4.4.0.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sudo 1.9.9-1ubuntu2.4 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb -tzdata 2024a-0ubuntu0.22.04.1 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3.4 deb -xmlstarlet 1.6.1-2.1 deb +publicsuffix 20231001.0357-0.1 deb +readline-common 8.2-4build1 deb +sed 4.9-2build1 deb +sensible-utils 0.0.22 deb +sudo 1.9.15p5-3ubuntu5 deb +systemd-standalone-sysusers 255.4-1ubuntu8.2 deb +sysvinit-utils 3.08-6ubuntu3 deb +tar 1.35+dfsg-3build1 deb +tzdata 2024a-3ubuntu1.1 deb +ubuntu-keyring 2023.11.28.1 deb +util-linux 2.39.3-9ubuntu6 deb +xmlstarlet 1.6.1-4 deb zlib.net 1.0.6.0 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +zlib1g 1:1.3.dfsg-3.1ubuntu2 deb From ab59e8009c662fdf7b468b75df8afa53ba61c01d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Aug 2024 19:09:43 +0000 Subject: [PATCH 2038/2257] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ded5036..6762512 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Find us at: [Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. -[![jellyfin](https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true)](https://github.com/jellyfin/jellyfin) +[![jellyfin](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-logo.png)](https://github.com/jellyfin/jellyfin) ## Supported Architectures From ac78c099ced795efee20a3d0c49823c214f5338f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Aug 2024 19:13:01 +0000 Subject: [PATCH 2039/2257] Bot Updating Package Versions --- package_versions.txt | 422 +++++++++++++++++++++---------------------- 1 file changed, 209 insertions(+), 213 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6ffc304..41327de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,12 +16,12 @@ ICU4N 60.1.0 ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet Jellyfin Server 10.9.9 dotnet (+13 duplicates) -Jellyfin.Api 22.4.0.0 dotnet +Jellyfin.Api 24.4.0.0 dotnet Jellyfin.Data.dll 10.9.9 dotnet Jellyfin.Extensions.dll 10.9.9 dotnet -Jellyfin.LiveTv 22.4.0.0 dotnet -Jellyfin.MediaEncoding.Hls 22.4.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 22.4.0.0 dotnet +Jellyfin.LiveTv 24.4.0.0 dotnet +Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet +Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet Jellyfin.Networking.dll 10.9.9 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet @@ -379,219 +379,215 @@ TMDbLib 2.2.0.0 TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 8.0.724.31311 dotnet -adduser 3.118ubuntu5 deb -apt 2.4.12 deb -apt-utils 2.4.12 deb -at 3.2.5-1ubuntu1 deb -base-files 12ubuntu4.6 deb -base-passwd 3.5.52build1 deb -bash 5.1-6ubuntu1.1 deb -bsdutils 1:2.37.2-4ubuntu3.4 deb -ca-certificates 20230311ubuntu0.22.04.1 deb +adduser 3.137ubuntu1 deb +apt 2.7.14build2 deb +apt-utils 2.7.14build2 deb +at 3.2.5-2.1ubuntu3 deb +base-files 13ubuntu10 deb +base-passwd 3.6.3build1 deb +bash 5.2.21-2ubuntu4 deb +bsdutils 1:2.39.3-9ubuntu6 deb +ca-certificates 20240203 deb catatonit 0.1.7-1 deb -coreutils 8.32-4.1ubuntu1.2 deb -cron 3.0pl1-137ubuntu3 deb -curl 7.81.0-1ubuntu1.17 deb -dash 0.5.11+git20210903+057cd650a4ed-3build1 deb -debconf 1.5.79ubuntu1 deb -debianutils 5.5-1ubuntu2 deb -diffutils 1:3.8-0ubuntu2 deb -dirmngr 2.2.27-3ubuntu2.1 deb -dpkg 1.21.1ubuntu2.3 deb -e2fsprogs 1.46.5-2ubuntu1.1 deb -findutils 4.8.0-1ubuntu3 deb -fontconfig-config 2.13.1-4.2ubuntu5 deb -fonts-dejavu-core 2.37-2build1 deb -gcc-12-base 12.3.0-1ubuntu1~22.04 deb -gnupg 2.2.27-3ubuntu2.1 deb -gnupg-l10n 2.2.27-3ubuntu2.1 deb -gnupg-utils 2.2.27-3ubuntu2.1 deb -gpg 2.2.27-3ubuntu2.1 deb -gpg-agent 2.2.27-3ubuntu2.1 deb -gpg-wks-client 2.2.27-3ubuntu2.1 deb -gpg-wks-server 2.2.27-3ubuntu2.1 deb -gpgconf 2.2.27-3ubuntu2.1 deb -gpgsm 2.2.27-3ubuntu2.1 deb -gpgv 2.2.27-3ubuntu2.1 deb -grep 3.7-1build1 deb -gzip 1.10-4ubuntu4.1 deb -hostname 3.23ubuntu2 deb -init-system-helpers 1.62 deb -jellyfin 10.9.9+ubu2204 deb -jellyfin-ffmpeg6 6.0.1-8-jammy deb -jellyfin-server 10.9.9+ubu2204 deb -jellyfin-web 10.9.9+ubu2204 deb -jq 1.6-2.1ubuntu3 deb +coreutils 9.4-3ubuntu6 deb +cron 3.0pl1-184ubuntu2 deb +cron-daemon-common 3.0pl1-184ubuntu2 deb +curl 8.5.0-2ubuntu10.2 deb +dash 0.5.12-6ubuntu5 deb +debconf 1.5.86ubuntu1 deb +debianutils 5.17build1 deb +diffutils 1:3.10-1build1 deb +dirmngr 2.4.4-2ubuntu17 deb +dpkg 1.22.6ubuntu6 deb +e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb +findutils 4.9.0-5build1 deb +fontconfig-config 2.15.0-1.1ubuntu2 deb +fonts-dejavu-core 2.37-8 deb +fonts-dejavu-mono 2.37-8 deb +gcc-14-base 14-20240412-0ubuntu1 deb +gnupg 2.4.4-2ubuntu17 deb +gnupg-l10n 2.4.4-2ubuntu17 deb +gnupg-utils 2.4.4-2ubuntu17 deb +gpg 2.4.4-2ubuntu17 deb +gpg-agent 2.4.4-2ubuntu17 deb +gpg-wks-client 2.4.4-2ubuntu17 deb +gpgconf 2.4.4-2ubuntu17 deb +gpgsm 2.4.4-2ubuntu17 deb +gpgv 2.4.4-2ubuntu17 deb +grep 3.11-4build1 deb +gzip 1.12-1ubuntu3 deb +hostname 3.23+nmu2ubuntu2 deb +init-system-helpers 1.66ubuntu1 deb +jellyfin 10.9.9+ubu2404 deb +jellyfin-ffmpeg6 6.0.1-8-noble deb +jellyfin-server 10.9.9+ubu2404 deb +jellyfin-web 10.9.9+ubu2404 deb +jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet -libacl1 2.3.1-1 deb -libapt-pkg6.0 2.4.12 deb -libassuan0 2.5.5-1build1 deb -libattr1 1:2.5.1-1build1 deb -libaudit-common 1:3.0.7-1build1 deb -libaudit1 1:3.0.7-1build1 deb -libblkid1 2.37.2-4ubuntu3.4 deb -libbluray2 1:1.3.1-1 deb -libbrotli1 1.0.9-2build6 deb -libbsd0 0.11.5-1 deb -libbz2-1.0 1.0.8-5build1 deb -libc-bin 2.35-0ubuntu3.8 deb -libc6 2.35-0ubuntu3.8 deb -libcairo2 1.16.0-5ubuntu2 deb -libcap-ng0 0.7.9-2.2build3 deb -libcap2 1:2.44-1ubuntu0.22.04.1 deb -libcom-err2 1.46.5-2ubuntu1.1 deb -libcrypt1 1:4.4.27-1 deb -libcurl4 7.81.0-1ubuntu1.17 deb -libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb -libdebconfclient0 0.261ubuntu1 deb -libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb -libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb -libdrm2 2.4.113-2~ubuntu0.22.04.1 deb -libedit2 3.1-20210910-1build1 deb -libelf1 0.186-1build1 deb -libexpat1 2.4.7-1ubuntu0.3 deb -libext2fs2 1.46.5-2ubuntu1.1 deb -libffi8 3.4.2-4 deb -libfontconfig1 2.13.1-4.2ubuntu5 deb -libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb -libgcc-s1 12.3.0-1ubuntu1~22.04 deb -libgcrypt20 1.9.4-3ubuntu3 deb -libgmp10 2:6.2.1+dfsg-3ubuntu1 deb -libgnutls30 3.7.3-4ubuntu1.5 deb -libgpg-error0 1.43-3 deb -libgssapi-krb5-2 1.19.2-2ubuntu0.3 deb -libhogweed6 3.7.3-1build2 deb -libicu70 70.1-2 deb -libidn2-0 2.3.2-2build1 deb -libjq1 1.6-2.1ubuntu3 deb -libk5crypto3 1.19.2-2ubuntu0.3 deb -libkeyutils1 1.6.1-2ubuntu3 deb -libkrb5-3 1.19.2-2ubuntu0.3 deb -libkrb5support0 1.19.2-2ubuntu0.3 deb -libksba8 1.6.0-2ubuntu0.2 deb -libldap-2.5-0 2.5.18+dfsg-0ubuntu0.22.04.2 deb -libldap-common 2.5.18+dfsg-0ubuntu0.22.04.2 deb -libllvm15 1:15.0.7-0ubuntu0.22.04.3 deb -liblz4-1 1.9.3-2build2 deb -liblzma5 5.2.5-2ubuntu1 deb -libmd0 1.0.4-1build1 deb -libmount1 2.37.2-4ubuntu3.4 deb -libmp3lame0 3.100-3build2 deb -libmpg123-0 1.29.3-1build1 deb -libncurses6 6.3-2ubuntu0.1 deb -libncursesw6 6.3-2ubuntu0.1 deb -libnettle8 3.7.3-1build2 deb -libnghttp2-14 1.43.0-1ubuntu0.2 deb -libnpth0 1.6-3build2 deb -libnsl2 1.3.0-2build2 deb -libnuma1 2.0.14-3ubuntu2 deb -libogg0 1.3.5-0ubuntu3 deb -libonig5 6.9.7.1-2build1 deb -libopenmpt0 0.6.1-1 deb -libopus0 1.3.1-0.1build2 deb -libp11-kit0 0.24.0-6build1 deb -libpam-modules 1.4.0-11ubuntu2.4 deb -libpam-modules-bin 1.4.0-11ubuntu2.4 deb -libpam-runtime 1.4.0-11ubuntu2.4 deb -libpam0g 1.4.0-11ubuntu2.4 deb -libpciaccess0 0.16-3 deb -libpcre2-8-0 10.39-3ubuntu0.1 deb -libpcre3 2:8.39-13ubuntu0.22.04.1 deb -libpixman-1-0 0.40.0-1ubuntu0.22.04.1 deb -libpng16-16 1.6.37-3build5 deb -libprocps8 2:3.3.17-6ubuntu2.1 deb -libpsl5 0.21.0-1.2build2 deb -libreadline8 8.1.2-1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb -libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb -libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb +keyboxd 2.4.4-2ubuntu17 deb +krb5-locales 1.20.1-6ubuntu2 deb +libacl1 2.3.2-1build1 deb +libapt-pkg6.0t64 2.7.14build2 deb +libassuan0 2.5.6-1build1 deb +libattr1 1:2.5.2-1build1 deb +libaudit-common 1:3.1.2-2.1build1 deb +libaudit1 1:3.1.2-2.1build1 deb +libblkid1 2.39.3-9ubuntu6 deb +libbluray2 1:1.3.4-1build1 deb +libbrotli1 1.1.0-2build2 deb +libbsd0 0.12.1-1build1 deb +libbz2-1.0 1.0.8-5.1 deb +libc-bin 2.39-0ubuntu8.2 deb +libc6 2.39-0ubuntu8.2 deb +libcairo2 1.18.0-3build1 deb +libcap-ng0 0.8.4-2build2 deb +libcap2 1:2.66-5ubuntu2 deb +libcom-err2 1.47.0-2.4~exp1ubuntu4 deb +libcrypt1 1:4.4.36-4build1 deb +libcurl4t64 8.5.0-2ubuntu10.2 deb +libdb5.3t64 5.3.28+dfsg2-7 deb +libdebconfclient0 0.271ubuntu3 deb +libdrm-amdgpu1 2.4.120-2build1 deb +libdrm-common 2.4.120-2build1 deb +libdrm-nouveau2 2.4.120-2build1 deb +libdrm-radeon1 2.4.120-2build1 deb +libdrm2 2.4.120-2build1 deb +libedit2 3.1-20230828-1build1 deb +libelf1t64 0.190-1.1build4 deb +libexpat1 2.6.1-2build1 deb +libext2fs2t64 1.47.0-2.4~exp1ubuntu4 deb +libffi8 3.4.6-1build1 deb +libfontconfig1 2.15.0-1.1ubuntu2 deb +libfreetype6 2.13.2+dfsg-1build3 deb +libgcc-s1 14-20240412-0ubuntu1 deb +libgcrypt20 1.10.3-2build1 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6 deb +libgnutls30t64 3.8.3-1.1ubuntu3.1 deb +libgpg-error0 1.47-3build2 deb +libgssapi-krb5-2 1.20.1-6ubuntu2 deb +libhogweed6t64 3.9.1-2.2build1 deb +libicu74 74.2-1ubuntu3 deb +libidn2-0 2.3.7-2build1 deb +libjq1 1.7.1-3build1 deb +libk5crypto3 1.20.1-6ubuntu2 deb +libkeyutils1 1.6.3-3build1 deb +libkrb5-3 1.20.1-6ubuntu2 deb +libkrb5support0 1.20.1-6ubuntu2 deb +libksba8 1.6.6-1build1 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb +libllvm17t64 1:17.0.6-9ubuntu1 deb +liblz4-1 1.9.4-1build1 deb +liblzma5 5.6.1+really5.4.5-1 deb +libmd0 1.1.0-2build1 deb +libmount1 2.39.3-9ubuntu6 deb +libmp3lame0 3.100-6build1 deb +libmpg123-0t64 1.32.5-1ubuntu1 deb +libncursesw6 6.4+20240113-1ubuntu2 deb +libnettle8t64 3.9.1-2.2build1 deb +libnghttp2-14 1.59.0-1ubuntu0.1 deb +libnpth0t64 1.6-3.1build1 deb +libnuma1 2.0.18-1build1 deb +libogg0 1.3.5-3build1 deb +libonig5 6.9.9-1build1 deb +libopenmpt0t64 0.7.3-1.1build3 deb +libopus0 1.4-1build1 deb +libp11-kit0 0.25.3-4ubuntu2 deb +libpam-modules 1.5.3-5ubuntu5.1 deb +libpam-modules-bin 1.5.3-5ubuntu5.1 deb +libpam-runtime 1.5.3-5ubuntu5.1 deb +libpam0g 1.5.3-5ubuntu5.1 deb +libpciaccess0 0.17-3build1 deb +libpcre2-8-0 10.42-4ubuntu2 deb +libpixman-1-0 0.42.2-1build1 deb +libpng16-16t64 1.6.43-5build1 deb +libproc2-0 2:4.0.4-4ubuntu3 deb +libpsl5t64 0.21.2-1.1build1 deb +libreadline8t64 8.2-4build1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb +libsasl2-2 2.1.28+dfsg1-5ubuntu3 deb +libsasl2-modules 2.1.28+dfsg1-5ubuntu3 deb +libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3 deb libse 4.0.7.45 dotnet -libseccomp2 2.5.3-2ubuntu2 deb -libselinux1 3.3-1build2 deb -libsemanage-common 3.3-1build2 deb -libsemanage2 3.3-1build2 deb -libsepol2 3.3-1build1 deb -libsmartcols1 2.37.2-4ubuntu3.4 deb -libsqlite3-0 3.37.2-2ubuntu0.3 deb -libss2 1.46.5-2ubuntu1.1 deb -libssh-4 0.9.6-2ubuntu0.22.04.3 deb -libssl3 3.0.2-0ubuntu1.17 deb -libstdc++6 12.3.0-1ubuntu1~22.04 deb -libsystemd0 249.11-0ubuntu3.12 deb -libtasn1-6 4.18.0-4build1 deb -libtheora0 1.1.1+dfsg.1-15ubuntu4 deb -libtinfo6 6.3-2ubuntu0.1 deb -libtirpc-common 1.3.2-2ubuntu0.1 deb -libtirpc3 1.3.2-2ubuntu0.1 deb -libudev1 249.11-0ubuntu3.12 deb -libudfread0 1.1.2-1 deb -libunistring2 1.0-1 deb -libuuid1 2.37.2-4ubuntu3.4 deb -libvorbis0a 1.3.7-1build2 deb -libvorbisenc2 1.3.7-1build2 deb -libvorbisfile3 1.3.7-1build2 deb -libvpx7 1.11.0-2ubuntu2.3 deb -libwebp7 1.2.2-2ubuntu0.22.04.2 deb -libwebpmux3 1.2.2-2ubuntu0.22.04.2 deb -libx11-6 2:1.7.5-1ubuntu0.3 deb -libx11-data 2:1.7.5-1ubuntu0.3 deb -libx11-xcb1 2:1.7.5-1ubuntu0.3 deb -libx264-163 2:0.163.3060+git5db6aa6-2build1 deb -libx265-199 3.5-2 deb -libxau6 1:1.0.9-1build5 deb -libxcb-dri2-0 1.14-3ubuntu3 deb -libxcb-dri3-0 1.14-3ubuntu3 deb -libxcb-present0 1.14-3ubuntu3 deb -libxcb-randr0 1.14-3ubuntu3 deb -libxcb-render0 1.14-3ubuntu3 deb -libxcb-shm0 1.14-3ubuntu3 deb -libxcb-sync1 1.14-3ubuntu3 deb -libxcb-xfixes0 1.14-3ubuntu3 deb -libxcb1 1.14-3ubuntu3 deb -libxdmcp6 1:1.1.3-0ubuntu5 deb -libxext6 2:1.3.4-1build1 deb -libxml2 2.9.13+dfsg-1ubuntu0.4 deb -libxrender1 1:0.9.10-1build4 deb -libxshmfence1 1.3-1build4 deb -libxslt1.1 1.1.34-4ubuntu0.22.04.1 deb -libxxhash0 0.8.1-1 deb -libzstd1 1.4.8+dfsg-3build1 deb -libzvbi-common 0.2.35-19 deb -libzvbi0 0.2.35-19 deb -locales 2.35-0ubuntu3.8 deb -login 1:4.8.1-2ubuntu2.2 deb -logsave 1.46.5-2ubuntu1.1 deb -lsb-base 11.1.0ubuntu4 deb -mawk 1.3.4.20200120-3 deb -mesa-va-drivers 23.2.1-1ubuntu3.1~22.04.2 deb -mount 2.37.2-4ubuntu3.4 deb +libseccomp2 2.5.5-1ubuntu3 deb +libselinux1 3.5-2ubuntu2 deb +libsemanage-common 3.5-1build5 deb +libsemanage2 3.5-1build5 deb +libsepol2 3.5-2build1 deb +libsharpyuv0 1.3.2-0.4build3 deb +libsmartcols1 2.39.3-9ubuntu6 deb +libsqlite3-0 3.45.1-1ubuntu2 deb +libss2 1.47.0-2.4~exp1ubuntu4 deb +libssh-4 0.10.6-2build2 deb +libssl3t64 3.0.13-0ubuntu3.2 deb +libstdc++6 14-20240412-0ubuntu1 deb +libsystemd0 255.4-1ubuntu8.2 deb +libtasn1-6 4.19.0-3build1 deb +libtheora0 1.1.1+dfsg.1-16.1build3 deb +libtinfo6 6.4+20240113-1ubuntu2 deb +libudev1 255.4-1ubuntu8.2 deb +libudfread0 1.1.2-1build1 deb +libunistring5 1.1-2build1 deb +libuuid1 2.39.3-9ubuntu6 deb +libvorbis0a 1.3.7-1build3 deb +libvorbisenc2 1.3.7-1build3 deb +libvorbisfile3 1.3.7-1build3 deb +libvpx9 1.14.0-1ubuntu2.1 deb +libwebp7 1.3.2-0.4build3 deb +libwebpmux3 1.3.2-0.4build3 deb +libx11-6 2:1.8.7-1build1 deb +libx11-data 2:1.8.7-1build1 deb +libx11-xcb1 2:1.8.7-1build1 deb +libx264-164 2:0.164.3108+git31e19f9-1 deb +libx265-199 3.5-2build1 deb +libxau6 1:1.0.9-1build6 deb +libxcb-dri2-0 1.15-1ubuntu2 deb +libxcb-dri3-0 1.15-1ubuntu2 deb +libxcb-present0 1.15-1ubuntu2 deb +libxcb-randr0 1.15-1ubuntu2 deb +libxcb-render0 1.15-1ubuntu2 deb +libxcb-shm0 1.15-1ubuntu2 deb +libxcb-sync1 1.15-1ubuntu2 deb +libxcb-xfixes0 1.15-1ubuntu2 deb +libxcb1 1.15-1ubuntu2 deb +libxdmcp6 1:1.1.3-0ubuntu6 deb +libxext6 2:1.3.4-1build2 deb +libxml2 2.9.14+dfsg-1.3ubuntu3 deb +libxrender1 1:0.9.10-1.1build1 deb +libxshmfence1 1.3-1build5 deb +libxslt1.1 1.1.39-0exp1build1 deb +libxxhash0 0.8.2-2build1 deb +libzstd1 1.5.5+dfsg2-2build1 deb +libzvbi-common 0.2.42-2 deb +libzvbi0t64 0.2.42-2 deb +locales 2.39-0ubuntu8.2 deb +login 1:4.13+dfsg1-4ubuntu3 deb +logsave 1.47.0-2.4~exp1ubuntu4 deb +mawk 1.3.4.20240123-1build1 deb +mesa-va-drivers 24.0.9-0ubuntu0.1 deb +mount 2.39.3-9ubuntu6 deb mscorlib 8.0.724.31311 dotnet -ncurses-base 6.3-2ubuntu0.1 deb -ncurses-bin 6.3-2ubuntu0.1 deb -netcat 1.218-4ubuntu1 deb -netcat-openbsd 1.218-4ubuntu1 deb +ncurses-base 6.4+20240113-1ubuntu2 deb +ncurses-bin 6.4+20240113-1ubuntu2 deb +netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.724.31311 dotnet -ocl-icd-libopencl1 2.2.14-3 deb -openssl 3.0.2-0ubuntu1.17 deb -passwd 1:4.8.1-2ubuntu2.2 deb -perl-base 5.34.0-3ubuntu1.3 deb -pinentry-curses 1.1.1-1build2 deb -procps 2:3.3.17-6ubuntu2.1 deb +ocl-icd-libopencl1 2.3.2-1build1 deb +openssl 3.0.13-0ubuntu3.2 deb +passwd 1:4.13+dfsg1-4ubuntu3 deb +perl-base 5.38.2-3.2build2 deb +pinentry-curses 1.2.1-3ubuntu5 deb +procps 2:4.0.4-4ubuntu3 deb prometheus-net.DotNetRuntime 4.4.0.0 dotnet -publicsuffix 20211207.1025-1 deb -readline-common 8.1.2-1 deb -sed 4.8-1ubuntu2 deb -sensible-utils 0.0.17 deb -sysvinit-utils 3.01-1ubuntu1 deb -tar 1.34+dfsg-1ubuntu0.1.22.04.2 deb -tzdata 2024a-0ubuntu0.22.04.1 deb -ubuntu-keyring 2021.03.26 deb -ucf 3.0043 deb -usrmerge 25ubuntu2 deb -util-linux 2.37.2-4ubuntu3.4 deb -xmlstarlet 1.6.1-2.1 deb +publicsuffix 20231001.0357-0.1 deb +readline-common 8.2-4build1 deb +sed 4.9-2build1 deb +sensible-utils 0.0.22 deb +systemd-standalone-sysusers 255.4-1ubuntu8.2 deb +sysvinit-utils 3.08-6ubuntu3 deb +tar 1.35+dfsg-3build1 deb +tzdata 2024a-3ubuntu1.1 deb +ubuntu-keyring 2023.11.28.1 deb +util-linux 2.39.3-9ubuntu6 deb +xmlstarlet 1.6.1-4 deb zlib.net 1.0.6.0 dotnet -zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb +zlib1g 1:1.3.dfsg-3.1ubuntu2 deb From b11b9e1c56e5b5c16cab69630d40bfcde3d6d8ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Aug 2024 06:15:39 +0000 Subject: [PATCH 2040/2257] Bot Updating Templated Files --- Jenkinsfile | 62 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 88a5547..51c2dbf 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -36,9 +38,23 @@ pipeline { CI_WEBPATH='' } 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 6bc08a46002ee1507b9d2bfaae6039ec2a931ae0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Aug 2024 06:17:35 +0000 Subject: [PATCH 2041/2257] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 48 +++++++++---------- .../workflows/external_trigger_scheduler.yml | 24 +++++----- .github/workflows/package_trigger.yml | 22 ++++----- .../workflows/package_trigger_scheduler.yml | 18 +++---- 4 files changed, 55 insertions(+), 57 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index c21b361..4ced3bf 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-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_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_JELLYFIN_NIGHTLY\". ****" - echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_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_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') + 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 jellyfin branch nightly" GHA_TRIGGER_URL="https://github.com/linuxserver/docker-jellyfin/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/jellyfin" tag="nightly" token=$(curl -sX GET \ @@ -60,41 +62,37 @@ jobs: IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then - echo "**** Can't retrieve last pushed version, exiting ****" + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "Can't retrieve last pushed version, exiting" >> $GITHUB_STEP_SUMMARY FAILURE_REASON="Can't retrieve last pushed version for jellyfin 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-jellyfin/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 elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp') )) -lt $(( 6 * 3600000 )) ]]; then - echo "**** New version ${EXT_RELEASE} found; but the last build was less than 6 hours ago; skipping trigger ****" - echo "New version ${EXT_RELEASE} found; but the last build was less than 6 hours ago; skipping trigger" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; but the last build was less than 6 hours ago; skipping trigger" >> $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-jellyfin/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 056bc04..881ec67 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-jellyfin\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-jellyfin/${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-jellyfin/${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-jellyfin/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 f96d76a..97e46c2 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-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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_JELLYFIN_NIGHTLY\". ****" - echo "Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_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_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 3a72c0a..cb4f253 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-jellyfin\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-jellyfin/${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-jellyfin/${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-jellyfin/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 0d1ef4f5fa305aa5a6562c8b3bf17e90ee72de40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Aug 2024 06:20:59 +0000 Subject: [PATCH 2042/2257] Bot Updating Package Versions --- package_versions.txt | 560 +++++++++++++++++++++---------------------- 1 file changed, 280 insertions(+), 280 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d74d576..f39f5af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,99 +29,99 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.724.31402 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authorization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Server 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Web 8.0.724.31402 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.724.31402 dotnet -Microsoft.AspNetCore.Cors 8.0.724.31402 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.724.31402 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.724.31402 dotnet -Microsoft.AspNetCore.DataProtection 8.0.724.31402 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.724.31402 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.724.31402 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.724.31402 dotnet -Microsoft.AspNetCore.Hosting 8.0.724.31402 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Features 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Results 8.0.724.31402 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.724.31402 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.724.31402 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.724.31402 dotnet -Microsoft.AspNetCore.Identity 8.0.724.31402 dotnet -Microsoft.AspNetCore.Localization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.724.31402 dotnet -Microsoft.AspNetCore.Metadata 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.724.31402 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.724.31402 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.724.31402 dotnet -Microsoft.AspNetCore.Razor 8.0.724.31402 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.724.31402 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.724.31402 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.724.31402 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.724.31402 dotnet -Microsoft.AspNetCore.Rewrite 8.0.724.31402 dotnet -Microsoft.AspNetCore.Routing 8.0.724.31402 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.724.31402 dotnet -Microsoft.AspNetCore.Session 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.724.31402 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.724.31402 dotnet -Microsoft.AspNetCore.WebSockets 8.0.724.31402 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.724.31402 dotnet +Microsoft.AspNetCore 8.0.824.36908 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authorization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Server 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Web 8.0.824.36908 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.824.36908 dotnet +Microsoft.AspNetCore.Cors 8.0.824.36908 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.824.36908 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.824.36908 dotnet +Microsoft.AspNetCore.DataProtection 8.0.824.36908 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.824.36908 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.824.36908 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.824.36908 dotnet +Microsoft.AspNetCore.Hosting 8.0.824.36908 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Features 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Results 8.0.824.36908 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.824.36908 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.824.36908 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.824.36908 dotnet +Microsoft.AspNetCore.Identity 8.0.824.36908 dotnet +Microsoft.AspNetCore.Localization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.824.36908 dotnet +Microsoft.AspNetCore.Metadata 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.824.36908 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.824.36908 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.824.36908 dotnet +Microsoft.AspNetCore.Razor 8.0.824.36908 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.824.36908 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.824.36908 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.824.36908 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.824.36908 dotnet +Microsoft.AspNetCore.Rewrite 8.0.824.36908 dotnet +Microsoft.AspNetCore.Routing 8.0.824.36908 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.824.36908 dotnet +Microsoft.AspNetCore.Session 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.824.36908 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.824.36908 dotnet +Microsoft.AspNetCore.WebSockets 8.0.824.36908 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.824.36908 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.724.31311 dotnet -Microsoft.Data.Sqlite 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.724.31404 dotnet +Microsoft.CSharp 8.0.824.36612 dotnet +Microsoft.Data.Sqlite 8.0.824.36704 dotnet +Microsoft.EntityFrameworkCore 8.0.824.36704 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.824.36704 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.824.36704 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.824.36704 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -132,7 +132,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.724.31402 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.824.36908 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -140,22 +140,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.724.31311 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.724.31402 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.724.31402 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.724.31402 dotnet -Microsoft.Extensions.Features 8.0.724.31402 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.824.36908 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.824.36908 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.824.36908 dotnet +Microsoft.Extensions.Features 8.0.824.36908 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.724.31402 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.824.36908 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.724.31402 dotnet -Microsoft.Extensions.Identity.Stores 8.0.724.31402 dotnet -Microsoft.Extensions.Localization 8.0.724.31402 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.724.31402 dotnet +Microsoft.Extensions.Identity.Core 8.0.824.36908 dotnet +Microsoft.Extensions.Identity.Stores 8.0.824.36908 dotnet +Microsoft.Extensions.Localization 8.0.824.36908 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.824.36908 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -164,19 +164,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.724.31402 dotnet +Microsoft.Extensions.ObjectPool 8.0.824.36908 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.724.31402 dotnet -Microsoft.JSInterop 8.0.724.31402 dotnet -Microsoft.Net.Http.Headers 8.0.724.31402 dotnet +Microsoft.Extensions.WebEncoders 8.0.824.36908 dotnet +Microsoft.JSInterop 8.0.824.36908 dotnet +Microsoft.Net.Http.Headers 8.0.824.36908 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.724.31311 dotnet -Microsoft.VisualBasic.Core 13.0.724.31311 dotnet -Microsoft.Win32.Primitives 8.0.724.31311 dotnet -Microsoft.Win32.Registry 8.0.724.31311 dotnet +Microsoft.VisualBasic 8.0.824.36612 dotnet +Microsoft.VisualBasic.Core 13.0.824.36612 dotnet +Microsoft.Win32.Primitives 8.0.824.36612 dotnet +Microsoft.Win32.Registry 8.0.824.36612 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -209,178 +209,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.724.31311 dotnet -System.AppContext 8.0.724.31311 dotnet -System.Buffers 8.0.724.31311 dotnet -System.Collections 8.0.724.31311 dotnet -System.Collections.Concurrent 8.0.724.31311 dotnet -System.Collections.Immutable 8.0.724.31311 dotnet -System.Collections.NonGeneric 8.0.724.31311 dotnet -System.Collections.Specialized 8.0.724.31311 dotnet -System.ComponentModel 8.0.724.31311 dotnet -System.ComponentModel.Annotations 8.0.724.31311 dotnet -System.ComponentModel.DataAnnotations 8.0.724.31311 dotnet -System.ComponentModel.EventBasedAsync 8.0.724.31311 dotnet -System.ComponentModel.Primitives 8.0.724.31311 dotnet -System.ComponentModel.TypeConverter 8.0.724.31311 dotnet -System.Configuration 8.0.724.31311 dotnet -System.Console 8.0.724.31311 dotnet -System.Core 8.0.724.31311 dotnet -System.Data 8.0.724.31311 dotnet -System.Data.Common 8.0.724.31311 dotnet -System.Data.DataSetExtensions 8.0.724.31311 dotnet -System.Diagnostics.Contracts 8.0.724.31311 dotnet -System.Diagnostics.Debug 8.0.724.31311 dotnet -System.Diagnostics.DiagnosticSource 8.0.724.31311 dotnet +System 8.0.824.36612 dotnet +System.AppContext 8.0.824.36612 dotnet +System.Buffers 8.0.824.36612 dotnet +System.Collections 8.0.824.36612 dotnet +System.Collections.Concurrent 8.0.824.36612 dotnet +System.Collections.Immutable 8.0.824.36612 dotnet +System.Collections.NonGeneric 8.0.824.36612 dotnet +System.Collections.Specialized 8.0.824.36612 dotnet +System.ComponentModel 8.0.824.36612 dotnet +System.ComponentModel.Annotations 8.0.824.36612 dotnet +System.ComponentModel.DataAnnotations 8.0.824.36612 dotnet +System.ComponentModel.EventBasedAsync 8.0.824.36612 dotnet +System.ComponentModel.Primitives 8.0.824.36612 dotnet +System.ComponentModel.TypeConverter 8.0.824.36612 dotnet +System.Configuration 8.0.824.36612 dotnet +System.Console 8.0.824.36612 dotnet +System.Core 8.0.824.36612 dotnet +System.Data 8.0.824.36612 dotnet +System.Data.Common 8.0.824.36612 dotnet +System.Data.DataSetExtensions 8.0.824.36612 dotnet +System.Diagnostics.Contracts 8.0.824.36612 dotnet +System.Diagnostics.Debug 8.0.824.36612 dotnet +System.Diagnostics.DiagnosticSource 8.0.824.36612 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.724.31311 dotnet -System.Diagnostics.Process 8.0.724.31311 dotnet -System.Diagnostics.StackTrace 8.0.724.31311 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.724.31311 dotnet -System.Diagnostics.Tools 8.0.724.31311 dotnet -System.Diagnostics.TraceSource 8.0.724.31311 dotnet -System.Diagnostics.Tracing 8.0.724.31311 dotnet -System.Drawing 8.0.724.31311 dotnet +System.Diagnostics.FileVersionInfo 8.0.824.36612 dotnet +System.Diagnostics.Process 8.0.824.36612 dotnet +System.Diagnostics.StackTrace 8.0.824.36612 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.824.36612 dotnet +System.Diagnostics.Tools 8.0.824.36612 dotnet +System.Diagnostics.TraceSource 8.0.824.36612 dotnet +System.Diagnostics.Tracing 8.0.824.36612 dotnet +System.Drawing 8.0.824.36612 dotnet System.Drawing.Common 8.0.624.26909 dotnet -System.Drawing.Primitives 8.0.724.31311 dotnet -System.Dynamic.Runtime 8.0.724.31311 dotnet -System.Formats.Asn1 8.0.724.31311 dotnet -System.Formats.Tar 8.0.724.31311 dotnet -System.Globalization 8.0.724.31311 dotnet -System.Globalization.Calendars 8.0.724.31311 dotnet -System.Globalization.Extensions 8.0.724.31311 dotnet -System.IO 8.0.724.31311 dotnet -System.IO.Compression 8.0.724.31311 dotnet -System.IO.Compression.Brotli 8.0.724.31311 dotnet -System.IO.Compression.FileSystem 8.0.724.31311 dotnet -System.IO.Compression.ZipFile 8.0.724.31311 dotnet -System.IO.FileSystem 8.0.724.31311 dotnet -System.IO.FileSystem.AccessControl 8.0.724.31311 dotnet -System.IO.FileSystem.DriveInfo 8.0.724.31311 dotnet -System.IO.FileSystem.Primitives 8.0.724.31311 dotnet -System.IO.FileSystem.Watcher 8.0.724.31311 dotnet -System.IO.IsolatedStorage 8.0.724.31311 dotnet -System.IO.MemoryMappedFiles 8.0.724.31311 dotnet +System.Drawing.Primitives 8.0.824.36612 dotnet +System.Dynamic.Runtime 8.0.824.36612 dotnet +System.Formats.Asn1 8.0.824.36612 dotnet +System.Formats.Tar 8.0.824.36612 dotnet +System.Globalization 8.0.824.36612 dotnet +System.Globalization.Calendars 8.0.824.36612 dotnet +System.Globalization.Extensions 8.0.824.36612 dotnet +System.IO 8.0.824.36612 dotnet +System.IO.Compression 8.0.824.36612 dotnet +System.IO.Compression.Brotli 8.0.824.36612 dotnet +System.IO.Compression.FileSystem 8.0.824.36612 dotnet +System.IO.Compression.ZipFile 8.0.824.36612 dotnet +System.IO.FileSystem 8.0.824.36612 dotnet +System.IO.FileSystem.AccessControl 8.0.824.36612 dotnet +System.IO.FileSystem.DriveInfo 8.0.824.36612 dotnet +System.IO.FileSystem.Primitives 8.0.824.36612 dotnet +System.IO.FileSystem.Watcher 8.0.824.36612 dotnet +System.IO.IsolatedStorage 8.0.824.36612 dotnet +System.IO.MemoryMappedFiles 8.0.824.36612 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.724.31311 dotnet -System.IO.Pipes.AccessControl 8.0.724.31311 dotnet -System.IO.UnmanagedMemoryStream 8.0.724.31311 dotnet -System.Linq 8.0.724.31311 dotnet +System.IO.Pipes 8.0.824.36612 dotnet +System.IO.Pipes.AccessControl 8.0.824.36612 dotnet +System.IO.UnmanagedMemoryStream 8.0.824.36612 dotnet +System.Linq 8.0.824.36612 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.724.31311 dotnet -System.Linq.Parallel 8.0.724.31311 dotnet -System.Linq.Queryable 8.0.724.31311 dotnet -System.Memory 8.0.724.31311 dotnet -System.Net 8.0.724.31311 dotnet -System.Net.Http 8.0.724.31311 dotnet -System.Net.Http.Json 8.0.724.31311 dotnet -System.Net.HttpListener 8.0.724.31311 dotnet -System.Net.Mail 8.0.724.31311 dotnet -System.Net.NameResolution 8.0.724.31311 dotnet -System.Net.NetworkInformation 8.0.724.31311 dotnet -System.Net.Ping 8.0.724.31311 dotnet -System.Net.Primitives 8.0.724.31311 dotnet -System.Net.Quic 8.0.724.31311 dotnet -System.Net.Requests 8.0.724.31311 dotnet -System.Net.Security 8.0.724.31311 dotnet -System.Net.ServicePoint 8.0.724.31311 dotnet -System.Net.Sockets 8.0.724.31311 dotnet -System.Net.WebClient 8.0.724.31311 dotnet -System.Net.WebHeaderCollection 8.0.724.31311 dotnet -System.Net.WebProxy 8.0.724.31311 dotnet -System.Net.WebSockets 8.0.724.31311 dotnet -System.Net.WebSockets.Client 8.0.724.31311 dotnet -System.Numerics 8.0.724.31311 dotnet -System.Numerics.Vectors 8.0.724.31311 dotnet -System.ObjectModel 8.0.724.31311 dotnet -System.Private.CoreLib 8.0.724.31311 dotnet -System.Private.DataContractSerialization 8.0.724.31311 dotnet -System.Private.Uri 8.0.724.31311 dotnet -System.Private.Xml 8.0.724.31311 dotnet -System.Private.Xml.Linq 8.0.724.31311 dotnet -System.Reflection 8.0.724.31311 dotnet -System.Reflection.DispatchProxy 8.0.724.31311 dotnet -System.Reflection.Emit 8.0.724.31311 dotnet -System.Reflection.Emit.ILGeneration 8.0.724.31311 dotnet -System.Reflection.Emit.Lightweight 8.0.724.31311 dotnet -System.Reflection.Extensions 8.0.724.31311 dotnet -System.Reflection.Metadata 8.0.724.31311 dotnet -System.Reflection.Primitives 8.0.724.31311 dotnet -System.Reflection.TypeExtensions 8.0.724.31311 dotnet -System.Resources.Reader 8.0.724.31311 dotnet -System.Resources.ResourceManager 8.0.724.31311 dotnet -System.Resources.Writer 8.0.724.31311 dotnet -System.Runtime 8.0.724.31311 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.724.31311 dotnet -System.Runtime.CompilerServices.VisualC 8.0.724.31311 dotnet -System.Runtime.Extensions 8.0.724.31311 dotnet -System.Runtime.Handles 8.0.724.31311 dotnet -System.Runtime.InteropServices 8.0.724.31311 dotnet -System.Runtime.InteropServices.JavaScript 8.0.724.31311 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.724.31311 dotnet -System.Runtime.Intrinsics 8.0.724.31311 dotnet -System.Runtime.Loader 8.0.724.31311 dotnet -System.Runtime.Numerics 8.0.724.31311 dotnet -System.Runtime.Serialization 8.0.724.31311 dotnet -System.Runtime.Serialization.Formatters 8.0.724.31311 dotnet -System.Runtime.Serialization.Json 8.0.724.31311 dotnet -System.Runtime.Serialization.Primitives 8.0.724.31311 dotnet -System.Runtime.Serialization.Xml 8.0.724.31311 dotnet -System.Security 8.0.724.31311 dotnet -System.Security.AccessControl 8.0.724.31311 dotnet -System.Security.Claims 8.0.724.31311 dotnet -System.Security.Cryptography 8.0.724.31311 dotnet -System.Security.Cryptography.Algorithms 8.0.724.31311 dotnet -System.Security.Cryptography.Cng 8.0.724.31311 dotnet -System.Security.Cryptography.Csp 8.0.724.31311 dotnet -System.Security.Cryptography.Encoding 8.0.724.31311 dotnet -System.Security.Cryptography.OpenSsl 8.0.724.31311 dotnet +System.Linq.Expressions 8.0.824.36612 dotnet +System.Linq.Parallel 8.0.824.36612 dotnet +System.Linq.Queryable 8.0.824.36612 dotnet +System.Memory 8.0.824.36612 dotnet +System.Net 8.0.824.36612 dotnet +System.Net.Http 8.0.824.36612 dotnet +System.Net.Http.Json 8.0.824.36612 dotnet +System.Net.HttpListener 8.0.824.36612 dotnet +System.Net.Mail 8.0.824.36612 dotnet +System.Net.NameResolution 8.0.824.36612 dotnet +System.Net.NetworkInformation 8.0.824.36612 dotnet +System.Net.Ping 8.0.824.36612 dotnet +System.Net.Primitives 8.0.824.36612 dotnet +System.Net.Quic 8.0.824.36612 dotnet +System.Net.Requests 8.0.824.36612 dotnet +System.Net.Security 8.0.824.36612 dotnet +System.Net.ServicePoint 8.0.824.36612 dotnet +System.Net.Sockets 8.0.824.36612 dotnet +System.Net.WebClient 8.0.824.36612 dotnet +System.Net.WebHeaderCollection 8.0.824.36612 dotnet +System.Net.WebProxy 8.0.824.36612 dotnet +System.Net.WebSockets 8.0.824.36612 dotnet +System.Net.WebSockets.Client 8.0.824.36612 dotnet +System.Numerics 8.0.824.36612 dotnet +System.Numerics.Vectors 8.0.824.36612 dotnet +System.ObjectModel 8.0.824.36612 dotnet +System.Private.CoreLib 8.0.824.36612 dotnet +System.Private.DataContractSerialization 8.0.824.36612 dotnet +System.Private.Uri 8.0.824.36612 dotnet +System.Private.Xml 8.0.824.36612 dotnet +System.Private.Xml.Linq 8.0.824.36612 dotnet +System.Reflection 8.0.824.36612 dotnet +System.Reflection.DispatchProxy 8.0.824.36612 dotnet +System.Reflection.Emit 8.0.824.36612 dotnet +System.Reflection.Emit.ILGeneration 8.0.824.36612 dotnet +System.Reflection.Emit.Lightweight 8.0.824.36612 dotnet +System.Reflection.Extensions 8.0.824.36612 dotnet +System.Reflection.Metadata 8.0.824.36612 dotnet +System.Reflection.Primitives 8.0.824.36612 dotnet +System.Reflection.TypeExtensions 8.0.824.36612 dotnet +System.Resources.Reader 8.0.824.36612 dotnet +System.Resources.ResourceManager 8.0.824.36612 dotnet +System.Resources.Writer 8.0.824.36612 dotnet +System.Runtime 8.0.824.36612 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.824.36612 dotnet +System.Runtime.CompilerServices.VisualC 8.0.824.36612 dotnet +System.Runtime.Extensions 8.0.824.36612 dotnet +System.Runtime.Handles 8.0.824.36612 dotnet +System.Runtime.InteropServices 8.0.824.36612 dotnet +System.Runtime.InteropServices.JavaScript 8.0.824.36612 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.824.36612 dotnet +System.Runtime.Intrinsics 8.0.824.36612 dotnet +System.Runtime.Loader 8.0.824.36612 dotnet +System.Runtime.Numerics 8.0.824.36612 dotnet +System.Runtime.Serialization 8.0.824.36612 dotnet +System.Runtime.Serialization.Formatters 8.0.824.36612 dotnet +System.Runtime.Serialization.Json 8.0.824.36612 dotnet +System.Runtime.Serialization.Primitives 8.0.824.36612 dotnet +System.Runtime.Serialization.Xml 8.0.824.36612 dotnet +System.Security 8.0.824.36612 dotnet +System.Security.AccessControl 8.0.824.36612 dotnet +System.Security.Claims 8.0.824.36612 dotnet +System.Security.Cryptography 8.0.824.36612 dotnet +System.Security.Cryptography.Algorithms 8.0.824.36612 dotnet +System.Security.Cryptography.Cng 8.0.824.36612 dotnet +System.Security.Cryptography.Csp 8.0.824.36612 dotnet +System.Security.Cryptography.Encoding 8.0.824.36612 dotnet +System.Security.Cryptography.OpenSsl 8.0.824.36612 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.724.31311 dotnet -System.Security.Cryptography.X509Certificates 8.0.724.31311 dotnet +System.Security.Cryptography.Primitives 8.0.824.36612 dotnet +System.Security.Cryptography.X509Certificates 8.0.824.36612 dotnet System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.724.31311 dotnet -System.Security.Principal.Windows 8.0.724.31311 dotnet -System.Security.SecureString 8.0.724.31311 dotnet -System.ServiceModel.Web 8.0.724.31311 dotnet -System.ServiceProcess 8.0.724.31311 dotnet -System.Text.Encoding 8.0.724.31311 dotnet -System.Text.Encoding.CodePages 8.0.724.31311 dotnet -System.Text.Encoding.Extensions 8.0.724.31311 dotnet -System.Text.Encodings.Web 8.0.724.31311 dotnet -System.Text.Json 8.0.724.31311 dotnet -System.Text.RegularExpressions 8.0.724.31311 dotnet -System.Threading 8.0.724.31311 dotnet -System.Threading.Channels 8.0.724.31311 dotnet -System.Threading.Overlapped 8.0.724.31311 dotnet +System.Security.Principal 8.0.824.36612 dotnet +System.Security.Principal.Windows 8.0.824.36612 dotnet +System.Security.SecureString 8.0.824.36612 dotnet +System.ServiceModel.Web 8.0.824.36612 dotnet +System.ServiceProcess 8.0.824.36612 dotnet +System.Text.Encoding 8.0.824.36612 dotnet +System.Text.Encoding.CodePages 8.0.824.36612 dotnet +System.Text.Encoding.Extensions 8.0.824.36612 dotnet +System.Text.Encodings.Web 8.0.824.36612 dotnet +System.Text.Json 8.0.824.36612 dotnet +System.Text.RegularExpressions 8.0.824.36612 dotnet +System.Threading 8.0.824.36612 dotnet +System.Threading.Channels 8.0.824.36612 dotnet +System.Threading.Overlapped 8.0.824.36612 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.724.31311 dotnet -System.Threading.Tasks.Dataflow 8.0.724.31311 dotnet -System.Threading.Tasks.Extensions 8.0.724.31311 dotnet -System.Threading.Tasks.Parallel 8.0.724.31311 dotnet -System.Threading.Thread 8.0.724.31311 dotnet -System.Threading.ThreadPool 8.0.724.31311 dotnet -System.Threading.Timer 8.0.724.31311 dotnet -System.Transactions 8.0.724.31311 dotnet -System.Transactions.Local 8.0.724.31311 dotnet -System.ValueTuple 8.0.724.31311 dotnet -System.Web 8.0.724.31311 dotnet -System.Web.HttpUtility 8.0.724.31311 dotnet -System.Windows 8.0.724.31311 dotnet -System.Xml 8.0.724.31311 dotnet -System.Xml.Linq 8.0.724.31311 dotnet -System.Xml.ReaderWriter 8.0.724.31311 dotnet -System.Xml.Serialization 8.0.724.31311 dotnet -System.Xml.XDocument 8.0.724.31311 dotnet -System.Xml.XPath 8.0.724.31311 dotnet -System.Xml.XPath.XDocument 8.0.724.31311 dotnet -System.Xml.XmlDocument 8.0.724.31311 dotnet -System.Xml.XmlSerializer 8.0.724.31311 dotnet +System.Threading.Tasks 8.0.824.36612 dotnet +System.Threading.Tasks.Dataflow 8.0.824.36612 dotnet +System.Threading.Tasks.Extensions 8.0.824.36612 dotnet +System.Threading.Tasks.Parallel 8.0.824.36612 dotnet +System.Threading.Thread 8.0.824.36612 dotnet +System.Threading.ThreadPool 8.0.824.36612 dotnet +System.Threading.Timer 8.0.824.36612 dotnet +System.Transactions 8.0.824.36612 dotnet +System.Transactions.Local 8.0.824.36612 dotnet +System.ValueTuple 8.0.824.36612 dotnet +System.Web 8.0.824.36612 dotnet +System.Web.HttpUtility 8.0.824.36612 dotnet +System.Windows 8.0.824.36612 dotnet +System.Xml 8.0.824.36612 dotnet +System.Xml.Linq 8.0.824.36612 dotnet +System.Xml.ReaderWriter 8.0.824.36612 dotnet +System.Xml.Serialization 8.0.824.36612 dotnet +System.Xml.XDocument 8.0.824.36612 dotnet +System.Xml.XPath 8.0.824.36612 dotnet +System.Xml.XPath.XDocument 8.0.824.36612 dotnet +System.Xml.XmlDocument 8.0.824.36612 dotnet +System.Xml.XmlSerializer 8.0.824.36612 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.724.31311 dotnet +WindowsBase 8.0.824.36612 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -421,12 +421,12 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 2024081205+ubu2404 deb -jellyfin-web 2024081205+ubu2404 deb +jellyfin-server 2024081905+ubu2404 deb +jellyfin-web 2024081905+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2 deb +krb5-locales 1.20.1-6ubuntu2.1 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1 deb libapparmor1 4.0.1really4.0.0-beta3-0ubuntu0.1 deb @@ -468,15 +468,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.1 deb libgpg-error0 1.47-3build2 deb -libgssapi-krb5-2 1.20.1-6ubuntu2 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb libhogweed6t64 3.9.1-2.2build1 deb libicu74 74.2-1ubuntu3 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2 deb +libk5crypto3 1.20.1-6ubuntu2.1 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2 deb -libkrb5support0 1.20.1-6ubuntu2 deb +libkrb5-3 1.20.1-6ubuntu2.1 deb +libkrb5support0 1.20.1-6ubuntu2.1 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb @@ -570,11 +570,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.1 deb mount 2.39.3-9ubuntu6 deb -mscorlib 8.0.724.31311 dotnet +mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.724.31311 dotnet +netstandard 8.0.824.36612 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.2 deb passwd 1:4.13+dfsg1-4ubuntu3 deb From eaa175ad0a8c1569c2e4dfb10e3233ca0cc41351 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 12:47:33 +0000 Subject: [PATCH 2043/2257] Bot Updating Templated Files --- Jenkinsfile | 62 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 362182b..136fe72 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 = 'JELLYFIN_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-jellyfin' @@ -36,9 +38,23 @@ pipeline { CI_WEBPATH='' } 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 master",\ "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 1ae7b88dff52fd7ee1164cffb2781e254816d98d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 12:50:05 +0000 Subject: [PATCH 2044/2257] 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 8ed79c1..3767552 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/master' run: | + printf "# External trigger for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****" - echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY - echo "**** Retrieving external version ****" + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY + printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') + 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 jellyfin branch master" GHA_TRIGGER_URL="https://github.com/linuxserver/docker-jellyfin/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/jellyfin" tag="latest" 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 jellyfin tag latest" 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-jellyfin/job/master/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-jellyfin/job/master/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 056bc04..881ec67 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-jellyfin\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-jellyfin/${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-jellyfin/${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-jellyfin/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 1d260b8..ef81c67 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/master' run: | + printf "# Package trigger for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\". ****" - echo "Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 3a72c0a..cb4f253 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-jellyfin\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-jellyfin/${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-jellyfin/${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-jellyfin/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 63296e0009d63e721ef1d3d2f7a55dd6d8817da6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Aug 2024 12:53:54 +0000 Subject: [PATCH 2045/2257] 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 41327de..56040f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -425,7 +425,7 @@ jellyfin-web 10.9.9+ubu240 jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2 deb +krb5-locales 1.20.1-6ubuntu2.1 deb libacl1 2.3.2-1build1 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb @@ -464,15 +464,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.1 deb libgpg-error0 1.47-3build2 deb -libgssapi-krb5-2 1.20.1-6ubuntu2 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb libhogweed6t64 3.9.1-2.2build1 deb libicu74 74.2-1ubuntu3 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2 deb +libk5crypto3 1.20.1-6ubuntu2.1 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2 deb -libkrb5support0 1.20.1-6ubuntu2 deb +libkrb5-3 1.20.1-6ubuntu2.1 deb +libkrb5support0 1.20.1-6ubuntu2.1 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb From be32ff422865c1c1acc3e3ac5904e08acb1b7359 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 25 Aug 2024 07:12:25 +0000 Subject: [PATCH 2046/2257] Bot Updating Package Versions --- package_versions.txt | 552 +++++++++++++++++++++---------------------- 1 file changed, 276 insertions(+), 276 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 56040f4..3db49af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,107 +15,107 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.9 dotnet (+13 duplicates) +Jellyfin Server 10.9.10 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.9.9 dotnet -Jellyfin.Extensions.dll 10.9.9 dotnet +Jellyfin.Data.dll 10.9.10 dotnet +Jellyfin.Extensions.dll 10.9.10 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.9 dotnet +Jellyfin.Networking.dll 10.9.10 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.724.31402 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authorization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Server 8.0.724.31402 dotnet -Microsoft.AspNetCore.Components.Web 8.0.724.31402 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.724.31402 dotnet -Microsoft.AspNetCore.Cors 8.0.724.31402 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.724.31402 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.724.31402 dotnet -Microsoft.AspNetCore.DataProtection 8.0.724.31402 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.724.31402 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.724.31402 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.724.31402 dotnet -Microsoft.AspNetCore.Hosting 8.0.724.31402 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Features 8.0.724.31402 dotnet -Microsoft.AspNetCore.Http.Results 8.0.724.31402 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.724.31402 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.724.31402 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.724.31402 dotnet -Microsoft.AspNetCore.Identity 8.0.724.31402 dotnet -Microsoft.AspNetCore.Localization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.724.31402 dotnet -Microsoft.AspNetCore.Metadata 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.724.31402 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.724.31402 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.724.31402 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.724.31402 dotnet -Microsoft.AspNetCore.Razor 8.0.724.31402 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.724.31402 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.724.31402 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.724.31402 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.724.31402 dotnet -Microsoft.AspNetCore.Rewrite 8.0.724.31402 dotnet -Microsoft.AspNetCore.Routing 8.0.724.31402 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.724.31402 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.724.31402 dotnet -Microsoft.AspNetCore.Session 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.724.31402 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.724.31402 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.724.31402 dotnet -Microsoft.AspNetCore.WebSockets 8.0.724.31402 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.724.31402 dotnet +Microsoft.AspNetCore 8.0.824.36908 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authorization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Server 8.0.824.36908 dotnet +Microsoft.AspNetCore.Components.Web 8.0.824.36908 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.824.36908 dotnet +Microsoft.AspNetCore.Cors 8.0.824.36908 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.824.36908 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.824.36908 dotnet +Microsoft.AspNetCore.DataProtection 8.0.824.36908 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.824.36908 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.824.36908 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.824.36908 dotnet +Microsoft.AspNetCore.Hosting 8.0.824.36908 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Features 8.0.824.36908 dotnet +Microsoft.AspNetCore.Http.Results 8.0.824.36908 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.824.36908 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.824.36908 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.824.36908 dotnet +Microsoft.AspNetCore.Identity 8.0.824.36908 dotnet +Microsoft.AspNetCore.Localization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.824.36908 dotnet +Microsoft.AspNetCore.Metadata 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.824.36908 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.824.36908 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.824.36908 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.824.36908 dotnet +Microsoft.AspNetCore.Razor 8.0.824.36908 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.824.36908 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.824.36908 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.824.36908 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.824.36908 dotnet +Microsoft.AspNetCore.Rewrite 8.0.824.36908 dotnet +Microsoft.AspNetCore.Routing 8.0.824.36908 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.824.36908 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.824.36908 dotnet +Microsoft.AspNetCore.Session 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.824.36908 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.824.36908 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.824.36908 dotnet +Microsoft.AspNetCore.WebSockets 8.0.824.36908 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.824.36908 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.724.31311 dotnet +Microsoft.CSharp 8.0.824.36612 dotnet Microsoft.Data.Sqlite 8.0.724.31404 dotnet Microsoft.EntityFrameworkCore 8.0.724.31404 dotnet Microsoft.EntityFrameworkCore.Abstractions 8.0.724.31404 dotnet @@ -131,7 +131,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.724.31402 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.824.36908 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet @@ -139,22 +139,22 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 Microsoft.Extensions.DependencyModel 8.0.724.31311 dotnet Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.724.31402 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.724.31402 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.824.36908 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.824.36908 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.724.31402 dotnet -Microsoft.Extensions.Features 8.0.724.31402 dotnet +Microsoft.Extensions.Features 8.0.824.36908 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.724.31402 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.824.36908 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.23.53103 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.724.31402 dotnet -Microsoft.Extensions.Identity.Stores 8.0.724.31402 dotnet -Microsoft.Extensions.Localization 8.0.724.31402 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.724.31402 dotnet +Microsoft.Extensions.Identity.Core 8.0.824.36908 dotnet +Microsoft.Extensions.Identity.Stores 8.0.824.36908 dotnet +Microsoft.Extensions.Localization 8.0.824.36908 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.824.36908 dotnet Microsoft.Extensions.Logging 8.0.23.53103 dotnet Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet @@ -163,19 +163,19 @@ Microsoft.Extensions.Logging.Debug 8.0.23.53103 Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.724.31402 dotnet +Microsoft.Extensions.ObjectPool 8.0.824.36908 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.724.31402 dotnet -Microsoft.JSInterop 8.0.724.31402 dotnet -Microsoft.Net.Http.Headers 8.0.724.31402 dotnet +Microsoft.Extensions.WebEncoders 8.0.824.36908 dotnet +Microsoft.JSInterop 8.0.824.36908 dotnet +Microsoft.Net.Http.Headers 8.0.824.36908 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.724.31311 dotnet -Microsoft.VisualBasic.Core 13.0.724.31311 dotnet -Microsoft.Win32.Primitives 8.0.724.31311 dotnet -Microsoft.Win32.Registry 8.0.724.31311 dotnet +Microsoft.VisualBasic 8.0.824.36612 dotnet +Microsoft.VisualBasic.Core 13.0.824.36612 dotnet +Microsoft.Win32.Primitives 8.0.824.36612 dotnet +Microsoft.Win32.Registry 8.0.824.36612 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -208,177 +208,177 @@ Swashbuckle.AspNetCore.ReDoc 6.6.2.401 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.724.31311 dotnet -System.AppContext 8.0.724.31311 dotnet -System.Buffers 8.0.724.31311 dotnet -System.Collections 8.0.724.31311 dotnet -System.Collections.Concurrent 8.0.724.31311 dotnet -System.Collections.Immutable 8.0.724.31311 dotnet -System.Collections.NonGeneric 8.0.724.31311 dotnet -System.Collections.Specialized 8.0.724.31311 dotnet -System.ComponentModel 8.0.724.31311 dotnet -System.ComponentModel.Annotations 8.0.724.31311 dotnet -System.ComponentModel.DataAnnotations 8.0.724.31311 dotnet -System.ComponentModel.EventBasedAsync 8.0.724.31311 dotnet -System.ComponentModel.Primitives 8.0.724.31311 dotnet -System.ComponentModel.TypeConverter 8.0.724.31311 dotnet -System.Configuration 8.0.724.31311 dotnet -System.Console 8.0.724.31311 dotnet -System.Core 8.0.724.31311 dotnet -System.Data 8.0.724.31311 dotnet -System.Data.Common 8.0.724.31311 dotnet -System.Data.DataSetExtensions 8.0.724.31311 dotnet -System.Diagnostics.Contracts 8.0.724.31311 dotnet -System.Diagnostics.Debug 8.0.724.31311 dotnet -System.Diagnostics.DiagnosticSource 8.0.724.31311 dotnet +System 8.0.824.36612 dotnet +System.AppContext 8.0.824.36612 dotnet +System.Buffers 8.0.824.36612 dotnet +System.Collections 8.0.824.36612 dotnet +System.Collections.Concurrent 8.0.824.36612 dotnet +System.Collections.Immutable 8.0.824.36612 dotnet +System.Collections.NonGeneric 8.0.824.36612 dotnet +System.Collections.Specialized 8.0.824.36612 dotnet +System.ComponentModel 8.0.824.36612 dotnet +System.ComponentModel.Annotations 8.0.824.36612 dotnet +System.ComponentModel.DataAnnotations 8.0.824.36612 dotnet +System.ComponentModel.EventBasedAsync 8.0.824.36612 dotnet +System.ComponentModel.Primitives 8.0.824.36612 dotnet +System.ComponentModel.TypeConverter 8.0.824.36612 dotnet +System.Configuration 8.0.824.36612 dotnet +System.Console 8.0.824.36612 dotnet +System.Core 8.0.824.36612 dotnet +System.Data 8.0.824.36612 dotnet +System.Data.Common 8.0.824.36612 dotnet +System.Data.DataSetExtensions 8.0.824.36612 dotnet +System.Diagnostics.Contracts 8.0.824.36612 dotnet +System.Diagnostics.Debug 8.0.824.36612 dotnet +System.Diagnostics.DiagnosticSource 8.0.824.36612 dotnet System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.724.31311 dotnet -System.Diagnostics.Process 8.0.724.31311 dotnet -System.Diagnostics.StackTrace 8.0.724.31311 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.724.31311 dotnet -System.Diagnostics.Tools 8.0.724.31311 dotnet -System.Diagnostics.TraceSource 8.0.724.31311 dotnet -System.Diagnostics.Tracing 8.0.724.31311 dotnet -System.Drawing 8.0.724.31311 dotnet +System.Diagnostics.FileVersionInfo 8.0.824.36612 dotnet +System.Diagnostics.Process 8.0.824.36612 dotnet +System.Diagnostics.StackTrace 8.0.824.36612 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.824.36612 dotnet +System.Diagnostics.Tools 8.0.824.36612 dotnet +System.Diagnostics.TraceSource 8.0.824.36612 dotnet +System.Diagnostics.Tracing 8.0.824.36612 dotnet +System.Drawing 8.0.824.36612 dotnet System.Drawing.Common 8.0.624.26909 dotnet -System.Drawing.Primitives 8.0.724.31311 dotnet -System.Dynamic.Runtime 8.0.724.31311 dotnet -System.Formats.Asn1 8.0.724.31311 dotnet -System.Formats.Tar 8.0.724.31311 dotnet -System.Globalization 8.0.724.31311 dotnet -System.Globalization.Calendars 8.0.724.31311 dotnet -System.Globalization.Extensions 8.0.724.31311 dotnet -System.IO 8.0.724.31311 dotnet -System.IO.Compression 8.0.724.31311 dotnet -System.IO.Compression.Brotli 8.0.724.31311 dotnet -System.IO.Compression.FileSystem 8.0.724.31311 dotnet -System.IO.Compression.ZipFile 8.0.724.31311 dotnet -System.IO.FileSystem 8.0.724.31311 dotnet -System.IO.FileSystem.AccessControl 8.0.724.31311 dotnet -System.IO.FileSystem.DriveInfo 8.0.724.31311 dotnet -System.IO.FileSystem.Primitives 8.0.724.31311 dotnet -System.IO.FileSystem.Watcher 8.0.724.31311 dotnet -System.IO.IsolatedStorage 8.0.724.31311 dotnet -System.IO.MemoryMappedFiles 8.0.724.31311 dotnet +System.Drawing.Primitives 8.0.824.36612 dotnet +System.Dynamic.Runtime 8.0.824.36612 dotnet +System.Formats.Asn1 8.0.824.36612 dotnet +System.Formats.Tar 8.0.824.36612 dotnet +System.Globalization 8.0.824.36612 dotnet +System.Globalization.Calendars 8.0.824.36612 dotnet +System.Globalization.Extensions 8.0.824.36612 dotnet +System.IO 8.0.824.36612 dotnet +System.IO.Compression 8.0.824.36612 dotnet +System.IO.Compression.Brotli 8.0.824.36612 dotnet +System.IO.Compression.FileSystem 8.0.824.36612 dotnet +System.IO.Compression.ZipFile 8.0.824.36612 dotnet +System.IO.FileSystem 8.0.824.36612 dotnet +System.IO.FileSystem.AccessControl 8.0.824.36612 dotnet +System.IO.FileSystem.DriveInfo 8.0.824.36612 dotnet +System.IO.FileSystem.Primitives 8.0.824.36612 dotnet +System.IO.FileSystem.Watcher 8.0.824.36612 dotnet +System.IO.IsolatedStorage 8.0.824.36612 dotnet +System.IO.MemoryMappedFiles 8.0.824.36612 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.724.31311 dotnet -System.IO.Pipes.AccessControl 8.0.724.31311 dotnet -System.IO.UnmanagedMemoryStream 8.0.724.31311 dotnet -System.Linq 8.0.724.31311 dotnet +System.IO.Pipes 8.0.824.36612 dotnet +System.IO.Pipes.AccessControl 8.0.824.36612 dotnet +System.IO.UnmanagedMemoryStream 8.0.824.36612 dotnet +System.Linq 8.0.824.36612 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.724.31311 dotnet -System.Linq.Parallel 8.0.724.31311 dotnet -System.Linq.Queryable 8.0.724.31311 dotnet -System.Memory 8.0.724.31311 dotnet -System.Net 8.0.724.31311 dotnet -System.Net.Http 8.0.724.31311 dotnet -System.Net.Http.Json 8.0.724.31311 dotnet -System.Net.HttpListener 8.0.724.31311 dotnet -System.Net.Mail 8.0.724.31311 dotnet -System.Net.NameResolution 8.0.724.31311 dotnet -System.Net.NetworkInformation 8.0.724.31311 dotnet -System.Net.Ping 8.0.724.31311 dotnet -System.Net.Primitives 8.0.724.31311 dotnet -System.Net.Quic 8.0.724.31311 dotnet -System.Net.Requests 8.0.724.31311 dotnet -System.Net.Security 8.0.724.31311 dotnet -System.Net.ServicePoint 8.0.724.31311 dotnet -System.Net.Sockets 8.0.724.31311 dotnet -System.Net.WebClient 8.0.724.31311 dotnet -System.Net.WebHeaderCollection 8.0.724.31311 dotnet -System.Net.WebProxy 8.0.724.31311 dotnet -System.Net.WebSockets 8.0.724.31311 dotnet -System.Net.WebSockets.Client 8.0.724.31311 dotnet -System.Numerics 8.0.724.31311 dotnet -System.Numerics.Vectors 8.0.724.31311 dotnet -System.ObjectModel 8.0.724.31311 dotnet -System.Private.CoreLib 8.0.724.31311 dotnet -System.Private.DataContractSerialization 8.0.724.31311 dotnet -System.Private.Uri 8.0.724.31311 dotnet -System.Private.Xml 8.0.724.31311 dotnet -System.Private.Xml.Linq 8.0.724.31311 dotnet -System.Reflection 8.0.724.31311 dotnet -System.Reflection.DispatchProxy 8.0.724.31311 dotnet -System.Reflection.Emit 8.0.724.31311 dotnet -System.Reflection.Emit.ILGeneration 8.0.724.31311 dotnet -System.Reflection.Emit.Lightweight 8.0.724.31311 dotnet -System.Reflection.Extensions 8.0.724.31311 dotnet -System.Reflection.Metadata 8.0.724.31311 dotnet -System.Reflection.Primitives 8.0.724.31311 dotnet -System.Reflection.TypeExtensions 8.0.724.31311 dotnet -System.Resources.Reader 8.0.724.31311 dotnet -System.Resources.ResourceManager 8.0.724.31311 dotnet -System.Resources.Writer 8.0.724.31311 dotnet -System.Runtime 8.0.724.31311 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.724.31311 dotnet -System.Runtime.CompilerServices.VisualC 8.0.724.31311 dotnet -System.Runtime.Extensions 8.0.724.31311 dotnet -System.Runtime.Handles 8.0.724.31311 dotnet -System.Runtime.InteropServices 8.0.724.31311 dotnet -System.Runtime.InteropServices.JavaScript 8.0.724.31311 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.724.31311 dotnet -System.Runtime.Intrinsics 8.0.724.31311 dotnet -System.Runtime.Loader 8.0.724.31311 dotnet -System.Runtime.Numerics 8.0.724.31311 dotnet -System.Runtime.Serialization 8.0.724.31311 dotnet -System.Runtime.Serialization.Formatters 8.0.724.31311 dotnet -System.Runtime.Serialization.Json 8.0.724.31311 dotnet -System.Runtime.Serialization.Primitives 8.0.724.31311 dotnet -System.Runtime.Serialization.Xml 8.0.724.31311 dotnet -System.Security 8.0.724.31311 dotnet -System.Security.AccessControl 8.0.724.31311 dotnet -System.Security.Claims 8.0.724.31311 dotnet -System.Security.Cryptography 8.0.724.31311 dotnet -System.Security.Cryptography.Algorithms 8.0.724.31311 dotnet -System.Security.Cryptography.Cng 8.0.724.31311 dotnet -System.Security.Cryptography.Csp 8.0.724.31311 dotnet -System.Security.Cryptography.Encoding 8.0.724.31311 dotnet -System.Security.Cryptography.OpenSsl 8.0.724.31311 dotnet +System.Linq.Expressions 8.0.824.36612 dotnet +System.Linq.Parallel 8.0.824.36612 dotnet +System.Linq.Queryable 8.0.824.36612 dotnet +System.Memory 8.0.824.36612 dotnet +System.Net 8.0.824.36612 dotnet +System.Net.Http 8.0.824.36612 dotnet +System.Net.Http.Json 8.0.824.36612 dotnet +System.Net.HttpListener 8.0.824.36612 dotnet +System.Net.Mail 8.0.824.36612 dotnet +System.Net.NameResolution 8.0.824.36612 dotnet +System.Net.NetworkInformation 8.0.824.36612 dotnet +System.Net.Ping 8.0.824.36612 dotnet +System.Net.Primitives 8.0.824.36612 dotnet +System.Net.Quic 8.0.824.36612 dotnet +System.Net.Requests 8.0.824.36612 dotnet +System.Net.Security 8.0.824.36612 dotnet +System.Net.ServicePoint 8.0.824.36612 dotnet +System.Net.Sockets 8.0.824.36612 dotnet +System.Net.WebClient 8.0.824.36612 dotnet +System.Net.WebHeaderCollection 8.0.824.36612 dotnet +System.Net.WebProxy 8.0.824.36612 dotnet +System.Net.WebSockets 8.0.824.36612 dotnet +System.Net.WebSockets.Client 8.0.824.36612 dotnet +System.Numerics 8.0.824.36612 dotnet +System.Numerics.Vectors 8.0.824.36612 dotnet +System.ObjectModel 8.0.824.36612 dotnet +System.Private.CoreLib 8.0.824.36612 dotnet +System.Private.DataContractSerialization 8.0.824.36612 dotnet +System.Private.Uri 8.0.824.36612 dotnet +System.Private.Xml 8.0.824.36612 dotnet +System.Private.Xml.Linq 8.0.824.36612 dotnet +System.Reflection 8.0.824.36612 dotnet +System.Reflection.DispatchProxy 8.0.824.36612 dotnet +System.Reflection.Emit 8.0.824.36612 dotnet +System.Reflection.Emit.ILGeneration 8.0.824.36612 dotnet +System.Reflection.Emit.Lightweight 8.0.824.36612 dotnet +System.Reflection.Extensions 8.0.824.36612 dotnet +System.Reflection.Metadata 8.0.824.36612 dotnet +System.Reflection.Primitives 8.0.824.36612 dotnet +System.Reflection.TypeExtensions 8.0.824.36612 dotnet +System.Resources.Reader 8.0.824.36612 dotnet +System.Resources.ResourceManager 8.0.824.36612 dotnet +System.Resources.Writer 8.0.824.36612 dotnet +System.Runtime 8.0.824.36612 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.824.36612 dotnet +System.Runtime.CompilerServices.VisualC 8.0.824.36612 dotnet +System.Runtime.Extensions 8.0.824.36612 dotnet +System.Runtime.Handles 8.0.824.36612 dotnet +System.Runtime.InteropServices 8.0.824.36612 dotnet +System.Runtime.InteropServices.JavaScript 8.0.824.36612 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.824.36612 dotnet +System.Runtime.Intrinsics 8.0.824.36612 dotnet +System.Runtime.Loader 8.0.824.36612 dotnet +System.Runtime.Numerics 8.0.824.36612 dotnet +System.Runtime.Serialization 8.0.824.36612 dotnet +System.Runtime.Serialization.Formatters 8.0.824.36612 dotnet +System.Runtime.Serialization.Json 8.0.824.36612 dotnet +System.Runtime.Serialization.Primitives 8.0.824.36612 dotnet +System.Runtime.Serialization.Xml 8.0.824.36612 dotnet +System.Security 8.0.824.36612 dotnet +System.Security.AccessControl 8.0.824.36612 dotnet +System.Security.Claims 8.0.824.36612 dotnet +System.Security.Cryptography 8.0.824.36612 dotnet +System.Security.Cryptography.Algorithms 8.0.824.36612 dotnet +System.Security.Cryptography.Cng 8.0.824.36612 dotnet +System.Security.Cryptography.Csp 8.0.824.36612 dotnet +System.Security.Cryptography.Encoding 8.0.824.36612 dotnet +System.Security.Cryptography.OpenSsl 8.0.824.36612 dotnet System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.724.31311 dotnet -System.Security.Cryptography.X509Certificates 8.0.724.31311 dotnet +System.Security.Cryptography.Primitives 8.0.824.36612 dotnet +System.Security.Cryptography.X509Certificates 8.0.824.36612 dotnet System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.724.31311 dotnet -System.Security.Principal.Windows 8.0.724.31311 dotnet -System.Security.SecureString 8.0.724.31311 dotnet -System.ServiceModel.Web 8.0.724.31311 dotnet -System.ServiceProcess 8.0.724.31311 dotnet -System.Text.Encoding 8.0.724.31311 dotnet -System.Text.Encoding.CodePages 8.0.724.31311 dotnet -System.Text.Encoding.Extensions 8.0.724.31311 dotnet -System.Text.Encodings.Web 8.0.724.31311 dotnet -System.Text.Json 8.0.724.31311 dotnet -System.Text.RegularExpressions 8.0.724.31311 dotnet -System.Threading 8.0.724.31311 dotnet -System.Threading.Channels 8.0.724.31311 dotnet -System.Threading.Overlapped 8.0.724.31311 dotnet +System.Security.Principal 8.0.824.36612 dotnet +System.Security.Principal.Windows 8.0.824.36612 dotnet +System.Security.SecureString 8.0.824.36612 dotnet +System.ServiceModel.Web 8.0.824.36612 dotnet +System.ServiceProcess 8.0.824.36612 dotnet +System.Text.Encoding 8.0.824.36612 dotnet +System.Text.Encoding.CodePages 8.0.824.36612 dotnet +System.Text.Encoding.Extensions 8.0.824.36612 dotnet +System.Text.Encodings.Web 8.0.824.36612 dotnet +System.Text.Json 8.0.824.36612 dotnet +System.Text.RegularExpressions 8.0.824.36612 dotnet +System.Threading 8.0.824.36612 dotnet +System.Threading.Channels 8.0.824.36612 dotnet +System.Threading.Overlapped 8.0.824.36612 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.724.31311 dotnet -System.Threading.Tasks.Dataflow 8.0.724.31311 dotnet -System.Threading.Tasks.Extensions 8.0.724.31311 dotnet -System.Threading.Tasks.Parallel 8.0.724.31311 dotnet -System.Threading.Thread 8.0.724.31311 dotnet -System.Threading.ThreadPool 8.0.724.31311 dotnet -System.Threading.Timer 8.0.724.31311 dotnet -System.Transactions 8.0.724.31311 dotnet -System.Transactions.Local 8.0.724.31311 dotnet -System.ValueTuple 8.0.724.31311 dotnet -System.Web 8.0.724.31311 dotnet -System.Web.HttpUtility 8.0.724.31311 dotnet -System.Windows 8.0.724.31311 dotnet -System.Xml 8.0.724.31311 dotnet -System.Xml.Linq 8.0.724.31311 dotnet -System.Xml.ReaderWriter 8.0.724.31311 dotnet -System.Xml.Serialization 8.0.724.31311 dotnet -System.Xml.XDocument 8.0.724.31311 dotnet -System.Xml.XPath 8.0.724.31311 dotnet -System.Xml.XPath.XDocument 8.0.724.31311 dotnet -System.Xml.XmlDocument 8.0.724.31311 dotnet -System.Xml.XmlSerializer 8.0.724.31311 dotnet +System.Threading.Tasks 8.0.824.36612 dotnet +System.Threading.Tasks.Dataflow 8.0.824.36612 dotnet +System.Threading.Tasks.Extensions 8.0.824.36612 dotnet +System.Threading.Tasks.Parallel 8.0.824.36612 dotnet +System.Threading.Thread 8.0.824.36612 dotnet +System.Threading.ThreadPool 8.0.824.36612 dotnet +System.Threading.Timer 8.0.824.36612 dotnet +System.Transactions 8.0.824.36612 dotnet +System.Transactions.Local 8.0.824.36612 dotnet +System.ValueTuple 8.0.824.36612 dotnet +System.Web 8.0.824.36612 dotnet +System.Web.HttpUtility 8.0.824.36612 dotnet +System.Windows 8.0.824.36612 dotnet +System.Xml 8.0.824.36612 dotnet +System.Xml.Linq 8.0.824.36612 dotnet +System.Xml.ReaderWriter 8.0.824.36612 dotnet +System.Xml.Serialization 8.0.824.36612 dotnet +System.Xml.XDocument 8.0.824.36612 dotnet +System.Xml.XPath 8.0.824.36612 dotnet +System.Xml.XPath.XDocument 8.0.824.36612 dotnet +System.Xml.XmlDocument 8.0.824.36612 dotnet +System.Xml.XmlSerializer 8.0.824.36612 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.724.31311 dotnet +WindowsBase 8.0.824.36612 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -398,7 +398,7 @@ debconf 1.5.86ubuntu1 debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17 deb -dpkg 1.22.6ubuntu6 deb +dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb @@ -418,10 +418,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.9.9+ubu2404 deb +jellyfin 10.9.10+ubu2404 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 10.9.9+ubu2404 deb -jellyfin-web 10.9.9+ubu2404 deb +jellyfin-server 10.9.10+ubu2404 deb +jellyfin-web 10.9.10+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -466,7 +466,7 @@ libgnutls30t64 3.8.3-1.1ubun libgpg-error0 1.47-3build2 deb libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb libhogweed6t64 3.9.1-2.2build1 deb -libicu74 74.2-1ubuntu3 deb +libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb libk5crypto3 1.20.1-6ubuntu2.1 deb @@ -566,11 +566,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.1 deb mount 2.39.3-9ubuntu6 deb -mscorlib 8.0.724.31311 dotnet +mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.724.31311 dotnet +netstandard 8.0.824.36612 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.2 deb passwd 1:4.13+dfsg1-4ubuntu3 deb From bfdbf124a8caa11ac5ae9357ededdc7ecad814ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 Aug 2024 06:16:51 +0000 Subject: [PATCH 2047/2257] Bot Updating Package Versions --- package_versions.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f39f5af..61cf240 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE -AsyncKeyedLock 7.0.0.0 dotnet -Audio Tools Library (ATL) for .NET 5.26.0.0 dotnet +AsyncKeyedLock 7.0.1.0 dotnet +Audio Tools Library (ATL) for .NET 6.1.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.2.0 dotnet BlurHashSharp.SkiaSharp 1.3.2.0 dotnet @@ -202,6 +202,7 @@ Serilog.Sinks.Graylog.Core 1.0.0.0 ShimSkiaSharp 2.0.0.0 dotnet SkiaSharp 2.88.8.0 dotnet SkiaSharp.HarfBuzz 2.88.8.0 dotnet +SpawnDev.EBML 1.0.3.0 dotnet Svg.Custom 2.0.0.0 dotnet Svg.Model 2.0.0.0 dotnet Svg.Skia 2.0.0.0 dotnet @@ -400,7 +401,7 @@ debconf 1.5.86ubuntu1 debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17 deb -dpkg 1.22.6ubuntu6 deb +dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb @@ -421,8 +422,8 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 2024081905+ubu2404 deb -jellyfin-web 2024081905+ubu2404 deb +jellyfin-server 2024082605+ubu2404 deb +jellyfin-web 2024082605+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -470,7 +471,7 @@ libgnutls30t64 3.8.3-1.1ubun libgpg-error0 1.47-3build2 deb libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb libhogweed6t64 3.9.1-2.2build1 deb -libicu74 74.2-1ubuntu3 deb +libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb libk5crypto3 1.20.1-6ubuntu2.1 deb From 0aa345ea57a21d209222d50bf8def58313565742 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Sep 2024 06:17:55 +0000 Subject: [PATCH 2048/2257] 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 61cf240..b9a424c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -199,13 +199,13 @@ Serilog.Sinks.Debug 2.0.0.0 Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 2.0.0.0 dotnet +ShimSkiaSharp 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet SkiaSharp 2.88.8.0 dotnet SkiaSharp.HarfBuzz 2.88.8.0 dotnet SpawnDev.EBML 1.0.3.0 dotnet -Svg.Custom 2.0.0.0 dotnet -Svg.Model 2.0.0.0 dotnet -Svg.Skia 2.0.0.0 dotnet +Svg.Custom 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +Svg.Model 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +Svg.Skia 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -386,23 +386,23 @@ adduser 3.137ubuntu1 apt 2.7.14build2 deb apt-utils 2.7.14build2 deb at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10 deb +base-files 13ubuntu10.1 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6 deb +bsdutils 1:2.39.3-9ubuntu6.1 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.2 deb +curl 8.5.0-2ubuntu10.3 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17 deb dpkg 1.22.6ubuntu6.1 deb -e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb +e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb fonts-dejavu-core 2.37-8 deb @@ -422,10 +422,10 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 2024082605+ubu2404 deb -jellyfin-web 2024082605+ubu2404 deb +jellyfin-server 2024090205+ubu2404 deb +jellyfin-web 2024090205+ubu2404 deb jq 1.7.1-3build1 deb -karaoke --dev 2023.524.0.0 dotnet +karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb krb5-locales 1.20.1-6ubuntu2.1 deb libaacs0 0.11.1-2build1 deb @@ -437,19 +437,19 @@ libattr1 1:2.5.2-1buil libaudit-common 1:3.1.2-2.1build1 deb libaudit1 1:3.1.2-2.1build1 deb libbdplus0 0.2.0-3build1 deb -libblkid1 2.39.3-9ubuntu6 deb +libblkid1 2.39.3-9ubuntu6.1 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1 deb -libbz2-1.0 1.0.8-5.1 deb -libc-bin 2.39-0ubuntu8.2 deb -libc6 2.39-0ubuntu8.2 deb +libbz2-1.0 1.0.8-5.1build0.1 deb +libc-bin 2.39-0ubuntu8.3 deb +libc6 2.39-0ubuntu8.3 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2 deb -libcom-err2 1.47.0-2.4~exp1ubuntu4 deb +libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.2 deb +libcurl4t64 8.5.0-2ubuntu10.3 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb @@ -460,17 +460,17 @@ libdrm2 2.4.120-2buil libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb libexpat1 2.6.1-2build1 deb -libext2fs2t64 1.47.0-2.4~exp1ubuntu4 deb +libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb libfreetype6 2.13.2+dfsg-1build3 deb libgcc-s1 14-20240412-0ubuntu1 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6 deb -libgnutls30t64 3.8.3-1.1ubuntu3.1 deb +libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2 deb libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb -libhogweed6t64 3.9.1-2.2build1 deb +libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb @@ -482,14 +482,14 @@ libksba8 1.6.6-1build1 libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb libllvm17t64 1:17.0.6-9ubuntu1 deb -liblz4-1 1.9.4-1build1 deb -liblzma5 5.6.1+really5.4.5-1 deb +liblz4-1 1.9.4-1build1.1 deb +liblzma5 5.6.1+really5.4.5-1build0.1 deb libmd0 1.1.0-2build1 deb -libmount1 2.39.3-9ubuntu6 deb +libmount1 2.39.3-9ubuntu6.1 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1 deb libncursesw6 6.4+20240113-1ubuntu2 deb -libnettle8t64 3.9.1-2.2build1 deb +libnettle8t64 3.9.1-2.2build1.1 deb libnghttp2-14 1.59.0-1ubuntu0.1 deb libnpth0t64 1.6-3.1build1 deb libnuma1 2.0.18-1build1 deb @@ -497,7 +497,7 @@ libogg0 1.3.5-3build1 libonig5 6.9.9-1build1 deb libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb -libp11-kit0 0.25.3-4ubuntu2 deb +libp11-kit0 0.25.3-4ubuntu2.1 deb libpam-modules 1.5.3-5ubuntu5.1 deb libpam-modules-bin 1.5.3-5ubuntu5.1 deb libpam-runtime 1.5.3-5ubuntu5.1 deb @@ -510,30 +510,30 @@ libproc2-0 2:4.0.4-4ubun libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb -libsasl2-2 2.1.28+dfsg1-5ubuntu3 deb -libsasl2-modules 2.1.28+dfsg1-5ubuntu3 deb -libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3 deb +libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb libse 4.0.7.45 dotnet -libseccomp2 2.5.5-1ubuntu3 deb +libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6 deb +libsmartcols1 2.39.3-9ubuntu6.1 deb libsqlite3-0 3.45.1-1ubuntu2 deb -libss2 1.47.0-2.4~exp1ubuntu4 deb +libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.2 deb +libssl3t64 3.0.13-0ubuntu3.3 deb libstdc++6 14-20240412-0ubuntu1 deb -libsystemd0 255.4-1ubuntu8.2 deb +libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.2 deb +libudev1 255.4-1ubuntu8.4 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1 deb -libuuid1 2.39.3-9ubuntu6 deb +libuuid1 2.39.3-9ubuntu6.1 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -562,22 +562,22 @@ libxrender1 1:0.9.10-1.1b libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb libxxhash0 0.8.2-2build1 deb -libzstd1 1.5.5+dfsg2-2build1 deb +libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.2 deb +locales 2.39-0ubuntu8.3 deb login 1:4.13+dfsg1-4ubuntu3 deb -logsave 1.47.0-2.4~exp1ubuntu4 deb +logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.1 deb -mount 2.39.3-9ubuntu6 deb +mount 2.39.3-9ubuntu6.1 deb mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.824.36612 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.2 deb +openssl 3.0.13-0ubuntu3.3 deb passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb @@ -588,12 +588,12 @@ readline-common 8.2-4build1 sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5 deb -systemd-standalone-sysusers 255.4-1ubuntu8.2 deb +systemd-standalone-sysusers 255.4-1ubuntu8.4 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2024a-3ubuntu1.1 deb ubuntu-keyring 2023.11.28.1 deb -util-linux 2.39.3-9ubuntu6 deb +util-linux 2.39.3-9ubuntu6.1 deb xmlstarlet 1.6.1-4 deb zlib.net 1.0.6.0 dotnet -zlib1g 1:1.3.dfsg-3.1ubuntu2 deb +zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 462a18084cf09b88036810c0531da03331e97236 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Sep 2024 12:50:33 +0000 Subject: [PATCH 2049/2257] Bot Updating Package Versions --- package_versions.txt | 72 ++++++++++++++++++++++---------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3db49af..1bc35b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -383,23 +383,23 @@ adduser 3.137ubuntu1 apt 2.7.14build2 deb apt-utils 2.7.14build2 deb at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10 deb +base-files 13ubuntu10.1 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6 deb +bsdutils 1:2.39.3-9ubuntu6.1 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.2 deb +curl 8.5.0-2ubuntu10.3 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17 deb dpkg 1.22.6ubuntu6.1 deb -e2fsprogs 1.47.0-2.4~exp1ubuntu4 deb +e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb fonts-dejavu-core 2.37-8 deb @@ -432,19 +432,19 @@ libassuan0 2.5.6-1build1 libattr1 1:2.5.2-1build1 deb libaudit-common 1:3.1.2-2.1build1 deb libaudit1 1:3.1.2-2.1build1 deb -libblkid1 2.39.3-9ubuntu6 deb +libblkid1 2.39.3-9ubuntu6.1 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1 deb -libbz2-1.0 1.0.8-5.1 deb -libc-bin 2.39-0ubuntu8.2 deb -libc6 2.39-0ubuntu8.2 deb +libbz2-1.0 1.0.8-5.1build0.1 deb +libc-bin 2.39-0ubuntu8.3 deb +libc6 2.39-0ubuntu8.3 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2 deb -libcom-err2 1.47.0-2.4~exp1ubuntu4 deb +libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.2 deb +libcurl4t64 8.5.0-2ubuntu10.3 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb @@ -455,17 +455,17 @@ libdrm2 2.4.120-2buil libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb libexpat1 2.6.1-2build1 deb -libext2fs2t64 1.47.0-2.4~exp1ubuntu4 deb +libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb libfreetype6 2.13.2+dfsg-1build3 deb libgcc-s1 14-20240412-0ubuntu1 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6 deb -libgnutls30t64 3.8.3-1.1ubuntu3.1 deb +libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2 deb libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb -libhogweed6t64 3.9.1-2.2build1 deb +libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb @@ -477,14 +477,14 @@ libksba8 1.6.6-1build1 libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb libllvm17t64 1:17.0.6-9ubuntu1 deb -liblz4-1 1.9.4-1build1 deb -liblzma5 5.6.1+really5.4.5-1 deb +liblz4-1 1.9.4-1build1.1 deb +liblzma5 5.6.1+really5.4.5-1build0.1 deb libmd0 1.1.0-2build1 deb -libmount1 2.39.3-9ubuntu6 deb +libmount1 2.39.3-9ubuntu6.1 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1 deb libncursesw6 6.4+20240113-1ubuntu2 deb -libnettle8t64 3.9.1-2.2build1 deb +libnettle8t64 3.9.1-2.2build1.1 deb libnghttp2-14 1.59.0-1ubuntu0.1 deb libnpth0t64 1.6-3.1build1 deb libnuma1 2.0.18-1build1 deb @@ -492,7 +492,7 @@ libogg0 1.3.5-3build1 libonig5 6.9.9-1build1 deb libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb -libp11-kit0 0.25.3-4ubuntu2 deb +libp11-kit0 0.25.3-4ubuntu2.1 deb libpam-modules 1.5.3-5ubuntu5.1 deb libpam-modules-bin 1.5.3-5ubuntu5.1 deb libpam-runtime 1.5.3-5ubuntu5.1 deb @@ -505,30 +505,30 @@ libproc2-0 2:4.0.4-4ubun libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb -libsasl2-2 2.1.28+dfsg1-5ubuntu3 deb -libsasl2-modules 2.1.28+dfsg1-5ubuntu3 deb -libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3 deb +libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb libse 4.0.7.45 dotnet -libseccomp2 2.5.5-1ubuntu3 deb +libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6 deb +libsmartcols1 2.39.3-9ubuntu6.1 deb libsqlite3-0 3.45.1-1ubuntu2 deb -libss2 1.47.0-2.4~exp1ubuntu4 deb +libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.2 deb +libssl3t64 3.0.13-0ubuntu3.3 deb libstdc++6 14-20240412-0ubuntu1 deb -libsystemd0 255.4-1ubuntu8.2 deb +libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.2 deb +libudev1 255.4-1ubuntu8.4 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1 deb -libuuid1 2.39.3-9ubuntu6 deb +libuuid1 2.39.3-9ubuntu6.1 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -557,22 +557,22 @@ libxrender1 1:0.9.10-1.1b libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb libxxhash0 0.8.2-2build1 deb -libzstd1 1.5.5+dfsg2-2build1 deb +libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.2 deb +locales 2.39-0ubuntu8.3 deb login 1:4.13+dfsg1-4ubuntu3 deb -logsave 1.47.0-2.4~exp1ubuntu4 deb +logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.1 deb -mount 2.39.3-9ubuntu6 deb +mount 2.39.3-9ubuntu6.1 deb mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.824.36612 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.2 deb +openssl 3.0.13-0ubuntu3.3 deb passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb @@ -582,12 +582,12 @@ publicsuffix 20231001.0357 readline-common 8.2-4build1 deb sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.2 deb +systemd-standalone-sysusers 255.4-1ubuntu8.4 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2024a-3ubuntu1.1 deb ubuntu-keyring 2023.11.28.1 deb -util-linux 2.39.3-9ubuntu6 deb +util-linux 2.39.3-9ubuntu6.1 deb xmlstarlet 1.6.1-4 deb zlib.net 1.0.6.0 dotnet -zlib1g 1:1.3.dfsg-3.1ubuntu2 deb +zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From a82f52c8a79bf105f58c17ba5873816adbb84d91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Sep 2024 23:12:51 +0000 Subject: [PATCH 2050/2257] 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 1bc35b3..def33f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,14 +15,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.10 dotnet (+13 duplicates) +Jellyfin Server 10.9.11 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.9.10 dotnet -Jellyfin.Extensions.dll 10.9.10 dotnet +Jellyfin.Data.dll 10.9.11 dotnet +Jellyfin.Extensions.dll 10.9.11 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.10 dotnet +Jellyfin.Networking.dll 10.9.11 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -418,10 +418,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.9.10+ubu2404 deb +jellyfin 10.9.11+ubu2404 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 10.9.10+ubu2404 deb -jellyfin-web 10.9.10+ubu2404 deb +jellyfin-server 10.9.11+ubu2404 deb +jellyfin-web 10.9.11+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2023.524.0.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -519,7 +519,7 @@ libsmartcols1 2.39.3-9ubunt libsqlite3-0 3.45.1-1ubuntu2 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.3 deb +libssl3t64 3.0.13-0ubuntu3.4 deb libstdc++6 14-20240412-0ubuntu1 deb libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb @@ -572,7 +572,7 @@ ncurses-bin 6.4+20240113- netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.824.36612 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.3 deb +openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb From dca6cd9e7062e04c87297acff2542a145fd0dcf9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Sep 2024 06:17:50 +0000 Subject: [PATCH 2051/2257] Bot Updating Package Versions --- package_versions.txt | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b9a424c..ce08892 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,9 +1,9 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.1.0 dotnet -Audio Tools Library (ATL) for .NET 6.1.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.4.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet -BlurHashSharp 1.3.2.0 dotnet -BlurHashSharp.SkiaSharp 1.3.2.0 dotnet +BlurHashSharp 1.3.3.0 dotnet +BlurHashSharp.SkiaSharp 1.3.3.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet @@ -202,7 +202,6 @@ Serilog.Sinks.Graylog.Core 1.0.0.0 ShimSkiaSharp 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet SkiaSharp 2.88.8.0 dotnet SkiaSharp.HarfBuzz 2.88.8.0 dotnet -SpawnDev.EBML 1.0.3.0 dotnet Svg.Custom 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet Svg.Model 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet Svg.Skia 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet @@ -242,7 +241,7 @@ System.Diagnostics.Tools 8.0.824.36612 System.Diagnostics.TraceSource 8.0.824.36612 dotnet System.Diagnostics.Tracing 8.0.824.36612 dotnet System.Drawing 8.0.824.36612 dotnet -System.Drawing.Common 8.0.624.26909 dotnet +System.Drawing.Common 8.0.824.36606 dotnet System.Drawing.Primitives 8.0.824.36612 dotnet System.Dynamic.Runtime 8.0.824.36612 dotnet System.Formats.Asn1 8.0.824.36612 dotnet @@ -422,8 +421,8 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 2024090205+ubu2404 deb -jellyfin-web 2024090205+ubu2404 deb +jellyfin-server 2024090905+ubu2404 deb +jellyfin-web 2024090905+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -513,7 +512,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.7.45 dotnet +libse 4.0.8.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb @@ -524,7 +523,7 @@ libsmartcols1 2.39.3-9ubunt libsqlite3-0 3.45.1-1ubuntu2 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.3 deb +libssl3t64 3.0.13-0ubuntu3.4 deb libstdc++6 14-20240412-0ubuntu1 deb libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb @@ -577,7 +576,7 @@ ncurses-bin 6.4+20240113- netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.824.36612 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.3 deb +openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb @@ -595,5 +594,5 @@ tzdata 2024a-3ubuntu ubuntu-keyring 2023.11.28.1 deb util-linux 2.39.3-9ubuntu6.1 deb xmlstarlet 1.6.1-4 deb -zlib.net 1.0.6.0 dotnet +zlib.net 1.0.8.0 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From b18559e735b3a7673677393ae30d7dcdf966c3a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Sep 2024 06:19:46 +0000 Subject: [PATCH 2052/2257] Bot Updating Package Versions --- package_versions.txt | 221 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 217 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ce08892..38047a4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -382,9 +382,14 @@ Ude.NetStandard.dll 1.2 UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 8.0.824.36612 dotnet adduser 3.137ubuntu1 deb +adwaita-icon-theme 46.0-1 deb +alsa-topology-conf 1.2.5.1-2 deb +alsa-ucm-conf 1.2.10-1ubuntu5 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb at 3.2.5-2.1ubuntu3 deb +at-spi2-common 2.52.0-1build1 deb +at-spi2-core 2.52.0-1build1 deb base-files 13ubuntu10.1 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb @@ -396,17 +401,31 @@ cron 3.0pl1-184ubu cron-daemon-common 3.0pl1-184ubuntu2 deb curl 8.5.0-2ubuntu10.3 deb dash 0.5.12-6ubuntu5 deb +dbus 1.14.10-4ubuntu4.1 deb +dbus-bin 1.14.10-4ubuntu4.1 deb +dbus-daemon 1.14.10-4ubuntu4.1 deb +dbus-python 1.3.2 python +dbus-session-bus-common 1.14.10-4ubuntu4.1 deb +dbus-system-bus-common 1.14.10-4ubuntu4.1 deb +dbus-user-session 1.14.10-4ubuntu4.1 deb +dconf-gsettings-backend 0.40.0-4build2 deb +dconf-service 0.40.0-4build2 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17 deb +dmsetup 2:1.02.185-3ubuntu3.1 deb dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb +ffmpeg 7:6.1.1-3ubuntu5 deb findutils 4.9.0-5build1 deb +fontconfig 2.15.0-1.1ubuntu2 deb fontconfig-config 2.15.0-1.1ubuntu2 deb fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14-20240412-0ubuntu1 deb +gir1.2-girepository-2.0 1.80.1-1 deb +gir1.2-glib-2.0 2.80.0-6ubuntu3.1 deb gnupg 2.4.4-2ubuntu17 deb gnupg-l10n 2.4.4-2ubuntu17 deb gnupg-utils 2.4.4-2ubuntu17 deb @@ -417,126 +436,278 @@ gpgconf 2.4.4-2ubuntu gpgsm 2.4.4-2ubuntu17 deb gpgv 2.4.4-2ubuntu17 deb grep 3.11-4build1 deb +gsettings-desktop-schemas 46.1-0ubuntu1 deb +gtk-update-icon-cache 3.24.41-4ubuntu1.1 deb gzip 1.12-1ubuntu3 deb +hicolor-icon-theme 0.17-2 deb hostname 3.23+nmu2ubuntu2 deb +humanity-icon-theme 0.6.16 deb init-system-helpers 1.66ubuntu1 deb jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 2024090905+ubu2404 deb -jellyfin-web 2024090905+ubu2404 deb +jellyfin-server 2024091605+ubu2404 deb +jellyfin-web 2024091605+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb krb5-locales 1.20.1-6ubuntu2.1 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1 deb +libaom3 3.8.2-2ubuntu0.1 deb libapparmor1 4.0.1really4.0.0-beta3-0ubuntu0.1 deb libapt-pkg6.0t64 2.7.14build2 deb +libargon2-1 0~20190702+dfsg-4build1 deb +libasound2-data 1.2.11-1build2 deb +libasound2t64 1.2.11-1build2 deb +libass9 1:0.17.1-2build1 deb libassuan0 2.5.6-1build1 deb +libasyncns0 0.8-6build4 deb +libatk-bridge2.0-0t64 2.52.0-1build1 deb +libatk1.0-0t64 2.52.0-1build1 deb +libatspi2.0-0t64 2.52.0-1build1 deb libattr1 1:2.5.2-1build1 deb libaudit-common 1:3.1.2-2.1build1 deb libaudit1 1:3.1.2-2.1build1 deb +libavahi-client3 0.8-13ubuntu6 deb +libavahi-common-data 0.8-13ubuntu6 deb +libavahi-common3 0.8-13ubuntu6 deb +libavc1394-0 0.5.4-5build3 deb +libavcodec60 7:6.1.1-3ubuntu5 deb +libavdevice60 7:6.1.1-3ubuntu5 deb +libavfilter9 7:6.1.1-3ubuntu5 deb +libavformat60 7:6.1.1-3ubuntu5 deb +libavutil58 7:6.1.1-3ubuntu5 deb libbdplus0 0.2.0-3build1 deb +libblas3 3.12.0-3build1.1 deb libblkid1 2.39.3-9ubuntu6.1 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb +libbs2b0 3.1.0+dfsg-7build1 deb libbsd0 0.12.1-1build1 deb libbz2-1.0 1.0.8-5.1build0.1 deb libc-bin 2.39-0ubuntu8.3 deb libc6 2.39-0ubuntu8.3 deb +libcaca0 0.99.beta20-4build2 deb +libcairo-gobject2 1.18.0-3build1 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2 deb +libcdio-cdda2t64 10.2+2.0.1-1.1build2 deb +libcdio-paranoia2t64 10.2+2.0.1-1.1build2 deb +libcdio19t64 2.1.0-4.1ubuntu1.2 deb +libchromaprint1 1.5.1-5 deb +libcjson1 1.7.17-1 deb +libcodec2-1.2 1.2.0-2build1 deb +libcolord2 1.4.7-1build2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb +libcryptsetup12 2:2.7.0-1ubuntu4.1 deb +libcups2t64 2.4.7-1.2ubuntu7.2 deb libcurl4t64 8.5.0-2ubuntu10.3 deb +libdatrie1 0.2.13-3build1 deb +libdav1d7 1.4.1-1build1 deb libdb5.3t64 5.3.28+dfsg2-7 deb +libdbus-1-3 1.14.10-4ubuntu4.1 deb +libdc1394-25 2.2.6-4build1 deb +libdconf1 0.40.0-4build2 deb libdebconfclient0 0.271ubuntu3 deb +libdecor-0-0 0.2.2-1build2 deb +libdecor-0-plugin-1-gtk 0.2.2-1build2 deb +libdeflate0 1.19-1build1.1 deb +libdevmapper1.02.1 2:1.02.185-3ubuntu3.1 deb libdrm-amdgpu1 2.4.120-2build1 deb libdrm-common 2.4.120-2build1 deb +libdrm-intel1 2.4.120-2build1 deb libdrm-nouveau2 2.4.120-2build1 deb libdrm-radeon1 2.4.120-2build1 deb libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb -libexpat1 2.6.1-2build1 deb +libepoxy0 1.5.10-1build1 deb +libexpat1 2.6.1-2ubuntu0.1 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb +libfdisk1 2.39.3-9ubuntu6.1 deb libffi8 3.4.6-1build1 deb +libfftw3-double3 3.3.10-1ubuntu3 deb +libflac12t64 1.4.3+ds-2.1ubuntu2 deb +libflite1 2.2-6build3 deb libfontconfig1 2.15.0-1.1ubuntu2 deb libfreetype6 2.13.2+dfsg-1build3 deb +libfribidi0 1.0.13-3build1 deb +libgbm1 24.0.9-0ubuntu0.1 deb libgcc-s1 14-20240412-0ubuntu1 deb libgcrypt20 1.10.3-2build1 deb +libgdk-pixbuf-2.0-0 2.42.10+dfsg-3ubuntu3.1 deb +libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 deb +libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 deb +libgfortran5 14-20240412-0ubuntu1 deb +libgirepository-1.0-1 1.80.1-1 deb +libgl1 1.7.0-1build1 deb +libgl1-amber-dri 21.3.9-0ubuntu2 deb +libgl1-mesa-dri 24.0.9-0ubuntu0.1 deb +libglapi-mesa 24.0.9-0ubuntu0.1 deb +libglib2.0-0t64 2.80.0-6ubuntu3.1 deb +libglib2.0-data 2.80.0-6ubuntu3.1 deb +libglvnd0 1.7.0-1build1 deb +libglx-mesa0 24.0.9-0ubuntu0.1 deb +libglx0 1.7.0-1build1 deb +libgme0 0.6.3-7build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb +libgomp1 14-20240412-0ubuntu1 deb libgpg-error0 1.47-3build2 deb +libgraphite2-3 1.3.14-2build1 deb +libgsm1 1.0.22-1build1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb +libgtk-3-0t64 3.24.41-4ubuntu1.1 deb +libgtk-3-bin 3.24.41-4ubuntu1.1 deb +libgtk-3-common 3.24.41-4ubuntu1.1 deb +libharfbuzz0b 8.3.0-2build2 deb libhogweed6t64 3.9.1-2.2build1.1 deb +libhwy1t64 1.0.7-8.1build1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb +libiec61883-0 1.2.0-6build1 deb +libjack-jackd2-0 1.9.21~dfsg-3ubuntu3 deb +libjbig0 2.1-6.1ubuntu2 deb +libjpeg-turbo8 2.1.5-2ubuntu2 deb +libjpeg8 8c-2ubuntu11 deb libjq1 1.7.1-3build1 deb +libjson-c5 0.17-1build1 deb +libjxl0.7 0.7.0-10.2ubuntu6 deb libk5crypto3 1.20.1-6ubuntu2.1 deb libkeyutils1 1.6.3-3build1 deb +libkmod2 31+20240202-2ubuntu7 deb libkrb5-3 1.20.1-6ubuntu2.1 deb libkrb5support0 1.20.1-6ubuntu2.1 deb libksba8 1.6.6-1build1 deb +liblapack3 3.12.0-3build1.1 deb +liblcms2-2 2.14-2build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb +liblerc4 4.0.0+ds-4ubuntu2 deb +liblilv-0-0 0.24.22-1build1 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb +libmbedcrypto7t64 2.28.8-1 deb libmd0 1.1.0-2build1 deb libmount1 2.39.3-9ubuntu6.1 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1 deb +libmysofa1 1.3.2+dfsg-2ubuntu2 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb libnghttp2-14 1.59.0-1ubuntu0.1 deb +libnorm1t64 1.5.9+dfsg-3.1build1 deb libnpth0t64 1.6-3.1build1 deb +libnss-systemd 255.4-1ubuntu8.4 deb libnuma1 2.0.18-1build1 deb libogg0 1.3.5-3build1 deb libonig5 6.9.9-1build1 deb +libopenal-data 1:1.23.1-4build1 deb +libopenal1 1:1.23.1-4build1 deb +libopenjp2-7 2.5.0-2build3 deb libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb libpam-modules 1.5.3-5ubuntu5.1 deb libpam-modules-bin 1.5.3-5ubuntu5.1 deb libpam-runtime 1.5.3-5ubuntu5.1 deb +libpam-systemd 255.4-1ubuntu8.4 deb libpam0g 1.5.3-5ubuntu5.1 deb +libpango-1.0-0 1.52.1+ds-1build1 deb +libpangocairo-1.0-0 1.52.1+ds-1build1 deb +libpangoft2-1.0-0 1.52.1+ds-1build1 deb libpciaccess0 0.17-3build1 deb libpcre2-8-0 10.42-4ubuntu2 deb +libpgm-5.3-0t64 5.3.128~dfsg-2.1build1 deb libpixman-1-0 0.42.2-1build1 deb +libplacebo338 6.338.2-2build1 deb libpng16-16t64 1.6.43-5build1 deb +libpocketsphinx3 0.8.0+real5prealpha+1-15ubuntu5 deb +libpostproc57 7:6.1.1-3ubuntu5 deb libproc2-0 2:4.0.4-4ubuntu3 deb libpsl5t64 0.21.2-1.1build1 deb +libpulse0 1:16.1+dfsg1-2ubuntu10 deb +libpython3-stdlib 3.12.3-0ubuntu2 deb +libpython3.12-minimal 3.12.3-1ubuntu0.1 deb +libpython3.12-stdlib 3.12.3-1ubuntu0.1 deb +librabbitmq4 0.11.0-1build2 deb +librav1e0 0.7.1-2 deb +libraw1394-11 2.1.2-2build3 deb libreadline8t64 8.2-4build1 deb +librist4 0.2.10+dfsg-2 deb +librsvg2-2 2.58.0+dfsg-1build1 deb +librsvg2-common 2.58.0+dfsg-1build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb +librubberband2 3.3.0+dfsg-2build1 deb +libsamplerate0 0.2.2-4build1 deb libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb +libsdl2-2.0-0 2.30.0+dfsg-1build3 deb libse 4.0.8.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb +libsensors-config 1:3.6.0-9build1 deb +libsensors5 1:3.6.0-9build1 deb libsepol2 3.5-2build1 deb +libserd-0-0 0.32.2-1 deb libsharpyuv0 1.3.2-0.4build3 deb +libshine3 3.1.1-2build1 deb +libslang2 2.3.3-3build2 deb libsmartcols1 2.39.3-9ubuntu6.1 deb +libsnappy1v5 1.1.10-1build1 deb +libsndfile1 1.2.2-1ubuntu5 deb +libsndio7.0 1.9.0-0.3build3 deb +libsodium23 1.0.18-1build3 deb +libsord-0-0 0.16.16-2build1 deb +libsoxr0 0.1.3-4build3 deb +libspeex1 1.2.1-2ubuntu2 deb +libsphinxbase3t64 0.8+5prealpha+1-17build2 deb libsqlite3-0 3.45.1-1ubuntu2 deb +libsratom-0-0 0.6.16-1build1 deb +libsrt1.5-gnutls 1.5.3-1build2 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb +libssh-gcrypt-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb libstdc++6 14-20240412-0ubuntu1 deb +libsvtav1enc1d1 1.7.0+dfsg-2build1 deb +libswresample4 7:6.1.1-3ubuntu5 deb +libswscale7 7:6.1.1-3ubuntu5 deb +libsystemd-shared 255.4-1ubuntu8.4 deb libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb +libthai-data 0.1.29-2build1 deb +libthai0 0.1.29-2build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb +libtiff6 4.5.1+git230720-4ubuntu2.2 deb libtinfo6 6.4+20240113-1ubuntu2 deb +libtwolame0 0.4.0-2build3 deb libudev1 255.4-1ubuntu8.4 deb libudfread0 1.1.2-1build1 deb +libunibreak5 5.1-2build1 deb libunistring5 1.1-2build1 deb +libusb-1.0-0 2:1.0.27-1 deb libuuid1 2.39.3-9ubuntu6.1 deb +libva-drm2 2.20.0-2build1 deb +libva-x11-2 2.20.0-2build1 deb +libva2 2.20.0-2build1 deb +libvdpau1 1.5-2build1 deb +libvidstab1.1 1.1.0-2build1 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb +libvpl2 2023.3.0-1build1 deb libvpx9 1.14.0-1ubuntu2.1 deb +libvulkan1 1.3.275.0-1build1 deb +libwayland-client0 1.22.0-2.1build1 deb +libwayland-cursor0 1.22.0-2.1build1 deb +libwayland-egl1 1.22.0-2.1build1 deb +libwayland-server0 1.22.0-2.1build1 deb libwebp7 1.3.2-0.4build3 deb libwebpmux3 1.3.2-0.4build3 deb libx11-6 2:1.8.7-1build1 deb @@ -547,20 +718,38 @@ libx265-199 3.5-2build1 libxau6 1:1.0.9-1build6 deb libxcb-dri2-0 1.15-1ubuntu2 deb libxcb-dri3-0 1.15-1ubuntu2 deb +libxcb-glx0 1.15-1ubuntu2 deb libxcb-present0 1.15-1ubuntu2 deb libxcb-randr0 1.15-1ubuntu2 deb libxcb-render0 1.15-1ubuntu2 deb +libxcb-shape0 1.15-1ubuntu2 deb libxcb-shm0 1.15-1ubuntu2 deb libxcb-sync1 1.15-1ubuntu2 deb libxcb-xfixes0 1.15-1ubuntu2 deb libxcb1 1.15-1ubuntu2 deb +libxcomposite1 1:0.4.5-1build3 deb +libxcursor1 1:1.2.1-1build1 deb +libxdamage1 1:1.1.6-1build1 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb +libxfixes3 1:6.0.0-2build1 deb +libxi6 2:1.8.1-1build1 deb +libxinerama1 2:1.1.4-3build1 deb +libxkbcommon0 1.6.0-1build1 deb libxml2 2.9.14+dfsg-1.3ubuntu3 deb +libxrandr2 2:1.5.2-2build1 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb +libxss1 1:1.2.3-1build3 deb +libxtst6 2:1.2.3-1.1build1 deb +libxv1 2:1.0.11-1.1build1 deb +libxvidcore4 2:1.3.7-1build1 deb +libxxf86vm1 1:1.1.4-1build4 deb libxxhash0 0.8.2-2build1 deb +libzimg2 3.0.5+ds1-1build1 deb +libzix-0-0 0.4.2-2build1 deb +libzmq5 4.3.5-1build2 deb libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb @@ -568,31 +757,55 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb +media-types 10.1.0 deb mesa-va-drivers 24.0.9-0ubuntu0.1 deb +mesa-vdpau-drivers 24.0.9-0ubuntu0.1 deb +mesa-vulkan-drivers 24.0.9-0ubuntu0.1 deb mount 2.39.3-9ubuntu6.1 deb mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb +netbase 6.4 deb netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.824.36612 dotnet +networkd-dispatcher 2.2.4-1 deb ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb +pocketsphinx-en-us 0.8.0+real5prealpha+1-15ubuntu5 deb procps 2:4.0.4-4ubuntu3 deb prometheus-net.DotNetRuntime 4.4.0.0 dotnet publicsuffix 20231001.0357-0.1 deb +pygobject 3.48.2 python +python3 3.12.3-0ubuntu2 deb +python3-dbus 1.3.2-5build3 deb +python3-gi 3.48.2-1 deb +python3-minimal 3.12.3-0ubuntu2 deb +python3.12 3.12.3-1ubuntu0.1 deb +python3.12-minimal 3.12.3-1ubuntu0.1 deb readline-common 8.2-4build1 deb sed 4.9-2build1 deb sensible-utils 0.0.22 deb +session-migration 0.3.9build1 deb +shared-mime-info 2.4-4 deb sudo 1.9.15p5-3ubuntu5 deb -systemd-standalone-sysusers 255.4-1ubuntu8.4 deb +systemd 255.4-1ubuntu8.4 deb +systemd-dev 255.4-1ubuntu8.4 deb +systemd-resolved 255.4-1ubuntu8.4 deb +systemd-sysv 255.4-1ubuntu8.4 deb +systemd-timesyncd 255.4-1ubuntu8.4 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2024a-3ubuntu1.1 deb ubuntu-keyring 2023.11.28.1 deb +ubuntu-mono 24.04-0ubuntu1 deb util-linux 2.39.3-9ubuntu6.1 deb +vdpau-driver-all 1.5-2build1 deb +x11-common 1:7.7+23ubuntu3 deb +xdg-user-dirs 0.18-1build1 deb +xkb-data 2.41-2ubuntu1.1 deb xmlstarlet 1.6.1-4 deb zlib.net 1.0.8.0 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 9f97c8782aab3a8c6b5c3b1209ab0e2caf79c146 Mon Sep 17 00:00:00 2001 From: nyanmisaka <nst799610810@gmail.com> Date: Mon, 16 Sep 2024 16:08:30 +0800 Subject: [PATCH 2053/2257] Switch to jellyfin-ffmpeg7 in Jellyfin 10.10 Signed-off-by: nyanmisaka <nst799610810@gmail.com> --- Dockerfile | 3 +-- Dockerfile.aarch64 | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index de72a1d..a07eb2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,8 +24,7 @@ RUN \ apt-get update && \ apt-get install -y \ at \ - jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg6 \ + jellyfin=${JELLYFIN_RELEASE} \ mesa-va-drivers \ xmlstarlet && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1ab9ab8..51ab356 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -24,8 +24,7 @@ RUN \ apt-get update && \ apt-get install -y \ at \ - jellyfin-server=${JELLYFIN_RELEASE} \ - jellyfin-ffmpeg6 \ + jellyfin=${JELLYFIN_RELEASE} \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ From 6b0f65c47de713b4672dd71fbc4220233e42e31b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Sep 2024 12:20:21 +0000 Subject: [PATCH 2054/2257] 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 38047a4..5e49168 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -443,7 +443,8 @@ hicolor-icon-theme 0.17-2 hostname 3.23+nmu2ubuntu2 deb humanity-icon-theme 0.6.16 deb init-system-helpers 1.66ubuntu1 deb -jellyfin-ffmpeg6 6.0.1-8-noble deb +jellyfin 2024091605+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-1-noble deb jellyfin-server 2024091605+ubu2404 deb jellyfin-web 2024091605+ubu2404 deb jq 1.7.1-3build1 deb From 830149a5e8121ba28119da6b946dfc3d74634c87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 12:51:54 +0000 Subject: [PATCH 2055/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index def33f7..92131cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -454,7 +454,7 @@ libdrm-radeon1 2.4.120-2buil libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb -libexpat1 2.6.1-2build1 deb +libexpat1 2.6.1-2ubuntu0.1 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb From 92fc85c3f2356873274355ce1330e16271de8487 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 12:54:07 +0000 Subject: [PATCH 2056/2257] 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 5e49168..af9c837 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -631,8 +631,8 @@ libproc2-0 2:4.0.4-4ubun libpsl5t64 0.21.2-1.1build1 deb libpulse0 1:16.1+dfsg1-2ubuntu10 deb libpython3-stdlib 3.12.3-0ubuntu2 deb -libpython3.12-minimal 3.12.3-1ubuntu0.1 deb -libpython3.12-stdlib 3.12.3-1ubuntu0.1 deb +libpython3.12-minimal 3.12.3-1ubuntu0.2 deb +libpython3.12-stdlib 3.12.3-1ubuntu0.2 deb librabbitmq4 0.11.0-1build2 deb librav1e0 0.7.1-2 deb libraw1394-11 2.1.2-2build3 deb @@ -784,8 +784,8 @@ python3 3.12.3-0ubunt python3-dbus 1.3.2-5build3 deb python3-gi 3.48.2-1 deb python3-minimal 3.12.3-0ubuntu2 deb -python3.12 3.12.3-1ubuntu0.1 deb -python3.12-minimal 3.12.3-1ubuntu0.1 deb +python3.12 3.12.3-1ubuntu0.2 deb +python3.12-minimal 3.12.3-1ubuntu0.2 deb readline-common 8.2-4build1 deb sed 4.9-2build1 deb sensible-utils 0.0.22 deb From 1f445bb6dcd9ed08a05a7fd432c67e42dbd3a8db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Sep 2024 06:20:49 +0000 Subject: [PATCH 2057/2257] 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 af9c837..c3462f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -399,7 +399,7 @@ catatonit 0.1.7-1 coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.3 deb +curl 8.5.0-2ubuntu10.4 deb dash 0.5.12-6ubuntu5 deb dbus 1.14.10-4ubuntu4.1 deb dbus-bin 1.14.10-4ubuntu4.1 deb @@ -443,10 +443,10 @@ hicolor-icon-theme 0.17-2 hostname 3.23+nmu2ubuntu2 deb humanity-icon-theme 0.6.16 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024091605+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-1-noble deb -jellyfin-server 2024091605+ubu2404 deb -jellyfin-web 2024091605+ubu2404 deb +jellyfin 2024092305+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-2-noble deb +jellyfin-server 2024092305+ubu2404 deb +jellyfin-web 2024092305+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -454,7 +454,7 @@ krb5-locales 1.20.1-6ubunt libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1 deb libaom3 3.8.2-2ubuntu0.1 deb -libapparmor1 4.0.1really4.0.0-beta3-0ubuntu0.1 deb +libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb libapt-pkg6.0t64 2.7.14build2 deb libargon2-1 0~20190702+dfsg-4build1 deb libasound2-data 1.2.11-1build2 deb @@ -503,7 +503,7 @@ libcom-err2 1.47.0-2.4~ex libcrypt1 1:4.4.36-4build1 deb libcryptsetup12 2:2.7.0-1ubuntu4.1 deb libcups2t64 2.4.7-1.2ubuntu7.2 deb -libcurl4t64 8.5.0-2ubuntu10.3 deb +libcurl4t64 8.5.0-2ubuntu10.4 deb libdatrie1 0.2.13-3build1 deb libdav1d7 1.4.1-1build1 deb libdb5.3t64 5.3.28+dfsg2-7 deb From 68f4741971bde963a5167a9a0e97c2f9af7c7f08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Sep 2024 12:53:46 +0000 Subject: [PATCH 2058/2257] 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 92131cb..3ce21c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -392,7 +392,7 @@ catatonit 0.1.7-1 coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.3 deb +curl 8.5.0-2ubuntu10.4 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb @@ -444,7 +444,7 @@ libcap-ng0 0.8.4-2build2 libcap2 1:2.66-5ubuntu2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.3 deb +libcurl4t64 8.5.0-2ubuntu10.4 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb From 16a2d79979e37e2aa359996842a2691dcca243ab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Sep 2024 06:16:31 +0000 Subject: [PATCH 2059/2257] Bot Updating Templated Files --- Jenkinsfile | 60 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 49 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 51c2dbf..b3af8b5 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 2b5833bd08d04ddc8e282d2190af7c2bcbfa81b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Sep 2024 06:18:12 +0000 Subject: [PATCH 2060/2257] 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 97e46c2..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-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY - exit 0 - fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 39f46f6329627cbe02e78468666560feef68a125 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Sep 2024 06:20:14 +0000 Subject: [PATCH 2061/2257] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 64 +++++++++++------- .../workflows/package_trigger_scheduler.yml | 66 ++++++++++++++----- README.md | 5 +- 3 files changed, 91 insertions(+), 44 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 4ced3bf..e5d9567 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-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then + if grep -q "^jellyfin_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_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_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of nightly branch. To disable this trigger, add \`jellyfin_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 -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY @@ -81,26 +83,38 @@ jobs: echo "New version \`${EXT_RELEASE}\` found; but the last build was less than 6 hours ago; skipping trigger" >> $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-jellyfin/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 jellyfin 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 jellyfin 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-jellyfin/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 jellyfin 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 cb4f253..1d7d109 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-jellyfin\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-jellyfin/${br}/jenkins-vars.yml | yq -r '.ls_branch') - if [ "${br}" == "${ls_branch}" ]; then + JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${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-jellyfin/${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-jellyfin/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 -q "^jellyfin_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`jellyfin_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 \`jellyfin_%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-jellyfin/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 jellyfin** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/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 jellyfin** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi diff --git a/README.md b/README.md index 1c8f0b5..ecb781a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/jellyfin.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/jellyfin) [![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-jellyfin%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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%2Fjellyfin%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/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%2Fjellyfin%2Fnightly%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/jellyfin/nightly/index.html) [Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. @@ -346,7 +346,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 7c27e899672980181cc8fdade656769e11cd8039 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Sep 2024 06:24:46 +0000 Subject: [PATCH 2062/2257] Bot Updating Package Versions --- package_versions.txt | 231 ++----------------------------------------- 1 file changed, 9 insertions(+), 222 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c3462f8..47b2c6c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.1.0 dotnet -Audio Tools Library (ATL) for .NET 6.4.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.5.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -382,14 +382,9 @@ Ude.NetStandard.dll 1.2 UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet WindowsBase 8.0.824.36612 dotnet adduser 3.137ubuntu1 deb -adwaita-icon-theme 46.0-1 deb -alsa-topology-conf 1.2.5.1-2 deb -alsa-ucm-conf 1.2.10-1ubuntu5 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb at 3.2.5-2.1ubuntu3 deb -at-spi2-common 2.52.0-1build1 deb -at-spi2-core 2.52.0-1build1 deb base-files 13ubuntu10.1 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb @@ -401,31 +396,17 @@ cron 3.0pl1-184ubu cron-daemon-common 3.0pl1-184ubuntu2 deb curl 8.5.0-2ubuntu10.4 deb dash 0.5.12-6ubuntu5 deb -dbus 1.14.10-4ubuntu4.1 deb -dbus-bin 1.14.10-4ubuntu4.1 deb -dbus-daemon 1.14.10-4ubuntu4.1 deb -dbus-python 1.3.2 python -dbus-session-bus-common 1.14.10-4ubuntu4.1 deb -dbus-system-bus-common 1.14.10-4ubuntu4.1 deb -dbus-user-session 1.14.10-4ubuntu4.1 deb -dconf-gsettings-backend 0.40.0-4build2 deb -dconf-service 0.40.0-4build2 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17 deb -dmsetup 2:1.02.185-3ubuntu3.1 deb dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb -ffmpeg 7:6.1.1-3ubuntu5 deb findutils 4.9.0-5build1 deb -fontconfig 2.15.0-1.1ubuntu2 deb fontconfig-config 2.15.0-1.1ubuntu2 deb fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14-20240412-0ubuntu1 deb -gir1.2-girepository-2.0 1.80.1-1 deb -gir1.2-glib-2.0 2.80.0-6ubuntu3.1 deb gnupg 2.4.4-2ubuntu17 deb gnupg-l10n 2.4.4-2ubuntu17 deb gnupg-utils 2.4.4-2ubuntu17 deb @@ -436,279 +417,127 @@ gpgconf 2.4.4-2ubuntu gpgsm 2.4.4-2ubuntu17 deb gpgv 2.4.4-2ubuntu17 deb grep 3.11-4build1 deb -gsettings-desktop-schemas 46.1-0ubuntu1 deb -gtk-update-icon-cache 3.24.41-4ubuntu1.1 deb gzip 1.12-1ubuntu3 deb -hicolor-icon-theme 0.17-2 deb hostname 3.23+nmu2ubuntu2 deb -humanity-icon-theme 0.6.16 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024092305+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-2-noble deb -jellyfin-server 2024092305+ubu2404 deb -jellyfin-web 2024092305+ubu2404 deb +jellyfin 2024093005+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-3-noble deb +jellyfin-server 2024093005+ubu2404 deb +jellyfin-web 2024093005+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb krb5-locales 1.20.1-6ubuntu2.1 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1 deb -libaom3 3.8.2-2ubuntu0.1 deb libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb libapt-pkg6.0t64 2.7.14build2 deb -libargon2-1 0~20190702+dfsg-4build1 deb -libasound2-data 1.2.11-1build2 deb -libasound2t64 1.2.11-1build2 deb -libass9 1:0.17.1-2build1 deb libassuan0 2.5.6-1build1 deb -libasyncns0 0.8-6build4 deb -libatk-bridge2.0-0t64 2.52.0-1build1 deb -libatk1.0-0t64 2.52.0-1build1 deb -libatspi2.0-0t64 2.52.0-1build1 deb libattr1 1:2.5.2-1build1 deb libaudit-common 1:3.1.2-2.1build1 deb libaudit1 1:3.1.2-2.1build1 deb -libavahi-client3 0.8-13ubuntu6 deb -libavahi-common-data 0.8-13ubuntu6 deb -libavahi-common3 0.8-13ubuntu6 deb -libavc1394-0 0.5.4-5build3 deb -libavcodec60 7:6.1.1-3ubuntu5 deb -libavdevice60 7:6.1.1-3ubuntu5 deb -libavfilter9 7:6.1.1-3ubuntu5 deb -libavformat60 7:6.1.1-3ubuntu5 deb -libavutil58 7:6.1.1-3ubuntu5 deb libbdplus0 0.2.0-3build1 deb -libblas3 3.12.0-3build1.1 deb libblkid1 2.39.3-9ubuntu6.1 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb -libbs2b0 3.1.0+dfsg-7build1 deb libbsd0 0.12.1-1build1 deb libbz2-1.0 1.0.8-5.1build0.1 deb libc-bin 2.39-0ubuntu8.3 deb libc6 2.39-0ubuntu8.3 deb -libcaca0 0.99.beta20-4build2 deb -libcairo-gobject2 1.18.0-3build1 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2 deb -libcdio-cdda2t64 10.2+2.0.1-1.1build2 deb -libcdio-paranoia2t64 10.2+2.0.1-1.1build2 deb -libcdio19t64 2.1.0-4.1ubuntu1.2 deb -libchromaprint1 1.5.1-5 deb -libcjson1 1.7.17-1 deb -libcodec2-1.2 1.2.0-2build1 deb -libcolord2 1.4.7-1build2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcryptsetup12 2:2.7.0-1ubuntu4.1 deb -libcups2t64 2.4.7-1.2ubuntu7.2 deb libcurl4t64 8.5.0-2ubuntu10.4 deb -libdatrie1 0.2.13-3build1 deb -libdav1d7 1.4.1-1build1 deb libdb5.3t64 5.3.28+dfsg2-7 deb -libdbus-1-3 1.14.10-4ubuntu4.1 deb -libdc1394-25 2.2.6-4build1 deb -libdconf1 0.40.0-4build2 deb libdebconfclient0 0.271ubuntu3 deb -libdecor-0-0 0.2.2-1build2 deb -libdecor-0-plugin-1-gtk 0.2.2-1build2 deb -libdeflate0 1.19-1build1.1 deb -libdevmapper1.02.1 2:1.02.185-3ubuntu3.1 deb libdrm-amdgpu1 2.4.120-2build1 deb libdrm-common 2.4.120-2build1 deb -libdrm-intel1 2.4.120-2build1 deb libdrm-nouveau2 2.4.120-2build1 deb libdrm-radeon1 2.4.120-2build1 deb libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb -libepoxy0 1.5.10-1build1 deb libexpat1 2.6.1-2ubuntu0.1 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb -libfdisk1 2.39.3-9ubuntu6.1 deb libffi8 3.4.6-1build1 deb -libfftw3-double3 3.3.10-1ubuntu3 deb -libflac12t64 1.4.3+ds-2.1ubuntu2 deb -libflite1 2.2-6build3 deb libfontconfig1 2.15.0-1.1ubuntu2 deb libfreetype6 2.13.2+dfsg-1build3 deb -libfribidi0 1.0.13-3build1 deb -libgbm1 24.0.9-0ubuntu0.1 deb libgcc-s1 14-20240412-0ubuntu1 deb libgcrypt20 1.10.3-2build1 deb -libgdk-pixbuf-2.0-0 2.42.10+dfsg-3ubuntu3.1 deb -libgdk-pixbuf2.0-bin 2.42.10+dfsg-3ubuntu3.1 deb -libgdk-pixbuf2.0-common 2.42.10+dfsg-3ubuntu3.1 deb -libgfortran5 14-20240412-0ubuntu1 deb -libgirepository-1.0-1 1.80.1-1 deb -libgl1 1.7.0-1build1 deb -libgl1-amber-dri 21.3.9-0ubuntu2 deb -libgl1-mesa-dri 24.0.9-0ubuntu0.1 deb -libglapi-mesa 24.0.9-0ubuntu0.1 deb -libglib2.0-0t64 2.80.0-6ubuntu3.1 deb -libglib2.0-data 2.80.0-6ubuntu3.1 deb -libglvnd0 1.7.0-1build1 deb -libglx-mesa0 24.0.9-0ubuntu0.1 deb -libglx0 1.7.0-1build1 deb -libgme0 0.6.3-7build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb -libgomp1 14-20240412-0ubuntu1 deb libgpg-error0 1.47-3build2 deb -libgraphite2-3 1.3.14-2build1 deb -libgsm1 1.0.22-1build1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb -libgtk-3-0t64 3.24.41-4ubuntu1.1 deb -libgtk-3-bin 3.24.41-4ubuntu1.1 deb -libgtk-3-common 3.24.41-4ubuntu1.1 deb -libharfbuzz0b 8.3.0-2build2 deb libhogweed6t64 3.9.1-2.2build1.1 deb -libhwy1t64 1.0.7-8.1build1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb -libiec61883-0 1.2.0-6build1 deb -libjack-jackd2-0 1.9.21~dfsg-3ubuntu3 deb -libjbig0 2.1-6.1ubuntu2 deb -libjpeg-turbo8 2.1.5-2ubuntu2 deb -libjpeg8 8c-2ubuntu11 deb libjq1 1.7.1-3build1 deb -libjson-c5 0.17-1build1 deb -libjxl0.7 0.7.0-10.2ubuntu6 deb libk5crypto3 1.20.1-6ubuntu2.1 deb libkeyutils1 1.6.3-3build1 deb -libkmod2 31+20240202-2ubuntu7 deb libkrb5-3 1.20.1-6ubuntu2.1 deb libkrb5support0 1.20.1-6ubuntu2.1 deb libksba8 1.6.6-1build1 deb -liblapack3 3.12.0-3build1.1 deb -liblcms2-2 2.14-2build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb -liblerc4 4.0.0+ds-4ubuntu2 deb -liblilv-0-0 0.24.22-1build1 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb -libmbedcrypto7t64 2.28.8-1 deb libmd0 1.1.0-2build1 deb libmount1 2.39.3-9ubuntu6.1 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1 deb -libmysofa1 1.3.2+dfsg-2ubuntu2 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb libnghttp2-14 1.59.0-1ubuntu0.1 deb -libnorm1t64 1.5.9+dfsg-3.1build1 deb libnpth0t64 1.6-3.1build1 deb -libnss-systemd 255.4-1ubuntu8.4 deb libnuma1 2.0.18-1build1 deb libogg0 1.3.5-3build1 deb libonig5 6.9.9-1build1 deb -libopenal-data 1:1.23.1-4build1 deb -libopenal1 1:1.23.1-4build1 deb -libopenjp2-7 2.5.0-2build3 deb libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb libpam-modules 1.5.3-5ubuntu5.1 deb libpam-modules-bin 1.5.3-5ubuntu5.1 deb libpam-runtime 1.5.3-5ubuntu5.1 deb -libpam-systemd 255.4-1ubuntu8.4 deb libpam0g 1.5.3-5ubuntu5.1 deb -libpango-1.0-0 1.52.1+ds-1build1 deb -libpangocairo-1.0-0 1.52.1+ds-1build1 deb -libpangoft2-1.0-0 1.52.1+ds-1build1 deb libpciaccess0 0.17-3build1 deb libpcre2-8-0 10.42-4ubuntu2 deb -libpgm-5.3-0t64 5.3.128~dfsg-2.1build1 deb libpixman-1-0 0.42.2-1build1 deb -libplacebo338 6.338.2-2build1 deb libpng16-16t64 1.6.43-5build1 deb -libpocketsphinx3 0.8.0+real5prealpha+1-15ubuntu5 deb -libpostproc57 7:6.1.1-3ubuntu5 deb -libproc2-0 2:4.0.4-4ubuntu3 deb +libproc2-0 2:4.0.4-4ubuntu3.1 deb libpsl5t64 0.21.2-1.1build1 deb -libpulse0 1:16.1+dfsg1-2ubuntu10 deb -libpython3-stdlib 3.12.3-0ubuntu2 deb -libpython3.12-minimal 3.12.3-1ubuntu0.2 deb -libpython3.12-stdlib 3.12.3-1ubuntu0.2 deb -librabbitmq4 0.11.0-1build2 deb -librav1e0 0.7.1-2 deb -libraw1394-11 2.1.2-2build3 deb libreadline8t64 8.2-4build1 deb -librist4 0.2.10+dfsg-2 deb -librsvg2-2 2.58.0+dfsg-1build1 deb -librsvg2-common 2.58.0+dfsg-1build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb -librubberband2 3.3.0+dfsg-2build1 deb -libsamplerate0 0.2.2-4build1 deb libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libsdl2-2.0-0 2.30.0+dfsg-1build3 deb libse 4.0.8.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb -libsensors-config 1:3.6.0-9build1 deb -libsensors5 1:3.6.0-9build1 deb libsepol2 3.5-2build1 deb -libserd-0-0 0.32.2-1 deb libsharpyuv0 1.3.2-0.4build3 deb -libshine3 3.1.1-2build1 deb -libslang2 2.3.3-3build2 deb libsmartcols1 2.39.3-9ubuntu6.1 deb -libsnappy1v5 1.1.10-1build1 deb -libsndfile1 1.2.2-1ubuntu5 deb -libsndio7.0 1.9.0-0.3build3 deb -libsodium23 1.0.18-1build3 deb -libsord-0-0 0.16.16-2build1 deb -libsoxr0 0.1.3-4build3 deb -libspeex1 1.2.1-2ubuntu2 deb -libsphinxbase3t64 0.8+5prealpha+1-17build2 deb libsqlite3-0 3.45.1-1ubuntu2 deb -libsratom-0-0 0.6.16-1build1 deb -libsrt1.5-gnutls 1.5.3-1build2 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssh-gcrypt-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb libstdc++6 14-20240412-0ubuntu1 deb -libsvtav1enc1d1 1.7.0+dfsg-2build1 deb -libswresample4 7:6.1.1-3ubuntu5 deb -libswscale7 7:6.1.1-3ubuntu5 deb -libsystemd-shared 255.4-1ubuntu8.4 deb libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb -libthai-data 0.1.29-2build1 deb -libthai0 0.1.29-2build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb -libtiff6 4.5.1+git230720-4ubuntu2.2 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libtwolame0 0.4.0-2build3 deb libudev1 255.4-1ubuntu8.4 deb libudfread0 1.1.2-1build1 deb -libunibreak5 5.1-2build1 deb libunistring5 1.1-2build1 deb -libusb-1.0-0 2:1.0.27-1 deb libuuid1 2.39.3-9ubuntu6.1 deb -libva-drm2 2.20.0-2build1 deb -libva-x11-2 2.20.0-2build1 deb -libva2 2.20.0-2build1 deb -libvdpau1 1.5-2build1 deb -libvidstab1.1 1.1.0-2build1 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb -libvpl2 2023.3.0-1build1 deb libvpx9 1.14.0-1ubuntu2.1 deb -libvulkan1 1.3.275.0-1build1 deb -libwayland-client0 1.22.0-2.1build1 deb -libwayland-cursor0 1.22.0-2.1build1 deb -libwayland-egl1 1.22.0-2.1build1 deb -libwayland-server0 1.22.0-2.1build1 deb libwebp7 1.3.2-0.4build3 deb libwebpmux3 1.3.2-0.4build3 deb libx11-6 2:1.8.7-1build1 deb @@ -719,38 +548,20 @@ libx265-199 3.5-2build1 libxau6 1:1.0.9-1build6 deb libxcb-dri2-0 1.15-1ubuntu2 deb libxcb-dri3-0 1.15-1ubuntu2 deb -libxcb-glx0 1.15-1ubuntu2 deb libxcb-present0 1.15-1ubuntu2 deb libxcb-randr0 1.15-1ubuntu2 deb libxcb-render0 1.15-1ubuntu2 deb -libxcb-shape0 1.15-1ubuntu2 deb libxcb-shm0 1.15-1ubuntu2 deb libxcb-sync1 1.15-1ubuntu2 deb libxcb-xfixes0 1.15-1ubuntu2 deb libxcb1 1.15-1ubuntu2 deb -libxcomposite1 1:0.4.5-1build3 deb -libxcursor1 1:1.2.1-1build1 deb -libxdamage1 1:1.1.6-1build1 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxfixes3 1:6.0.0-2build1 deb -libxi6 2:1.8.1-1build1 deb -libxinerama1 2:1.1.4-3build1 deb -libxkbcommon0 1.6.0-1build1 deb libxml2 2.9.14+dfsg-1.3ubuntu3 deb -libxrandr2 2:1.5.2-2build1 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb -libxss1 1:1.2.3-1build3 deb -libxtst6 2:1.2.3-1.1build1 deb -libxv1 2:1.0.11-1.1build1 deb -libxvidcore4 2:1.3.7-1build1 deb -libxxf86vm1 1:1.1.4-1build4 deb libxxhash0 0.8.2-2build1 deb -libzimg2 3.0.5+ds1-1build1 deb -libzix-0-0 0.4.2-2build1 deb -libzmq5 4.3.5-1build2 deb libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb @@ -758,55 +569,31 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -media-types 10.1.0 deb mesa-va-drivers 24.0.9-0ubuntu0.1 deb -mesa-vdpau-drivers 24.0.9-0ubuntu0.1 deb -mesa-vulkan-drivers 24.0.9-0ubuntu0.1 deb mount 2.39.3-9ubuntu6.1 deb mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb -netbase 6.4 deb netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.824.36612 dotnet -networkd-dispatcher 2.2.4-1 deb ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb -pocketsphinx-en-us 0.8.0+real5prealpha+1-15ubuntu5 deb -procps 2:4.0.4-4ubuntu3 deb -prometheus-net.DotNetRuntime 4.4.0.0 dotnet +procps 2:4.0.4-4ubuntu3.1 deb +prometheus-net.DotNetRuntime 4.4.1.0 dotnet publicsuffix 20231001.0357-0.1 deb -pygobject 3.48.2 python -python3 3.12.3-0ubuntu2 deb -python3-dbus 1.3.2-5build3 deb -python3-gi 3.48.2-1 deb -python3-minimal 3.12.3-0ubuntu2 deb -python3.12 3.12.3-1ubuntu0.2 deb -python3.12-minimal 3.12.3-1ubuntu0.2 deb readline-common 8.2-4build1 deb sed 4.9-2build1 deb sensible-utils 0.0.22 deb -session-migration 0.3.9build1 deb -shared-mime-info 2.4-4 deb sudo 1.9.15p5-3ubuntu5 deb -systemd 255.4-1ubuntu8.4 deb -systemd-dev 255.4-1ubuntu8.4 deb -systemd-resolved 255.4-1ubuntu8.4 deb -systemd-sysv 255.4-1ubuntu8.4 deb -systemd-timesyncd 255.4-1ubuntu8.4 deb +systemd-standalone-sysusers 255.4-1ubuntu8.4 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2024a-3ubuntu1.1 deb ubuntu-keyring 2023.11.28.1 deb -ubuntu-mono 24.04-0ubuntu1 deb util-linux 2.39.3-9ubuntu6.1 deb -vdpau-driver-all 1.5-2build1 deb -x11-common 1:7.7+23ubuntu3 deb -xdg-user-dirs 0.18-1build1 deb -xkb-data 2.41-2ubuntu1.1 deb xmlstarlet 1.6.1-4 deb zlib.net 1.0.8.0 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 279eac826a0745ce99efe87411ae6910970eb274 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Oct 2024 12:53:14 +0000 Subject: [PATCH 2063/2257] Bot Updating Templated Files --- Jenkinsfile | 60 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 49 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 136fe72..684e045 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=\"latest\" \ -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 047a233fc894c5a7e652c968878b3977f174ebfa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Oct 2024 12:54:51 +0000 Subject: [PATCH 2064/2257] 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 ef81c67..0000000 --- a/.github/workflows/package_trigger.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Package Trigger Main - -on: - workflow_dispatch: - -jobs: - package-trigger-master: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4.1.1 - - - name: Package Trigger - if: github.ref == 'refs/heads/master' - run: | - printf "# Package trigger for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER }}" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY - exit 0 - fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/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 81d6faeac30092baf0ff08a288474f2dec7f132b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Oct 2024 12:56:57 +0000 Subject: [PATCH 2065/2257] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 64 +++++++++++------- .../workflows/package_trigger_scheduler.yml | 66 ++++++++++++++----- README.md | 3 +- 3 files changed, 90 insertions(+), 43 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 3767552..4bddb97 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/master' + env: + SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER }}" ]; then + if grep -q "^jellyfin_master" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_master\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY - echo "> External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of master branch. To disable this trigger, add \`jellyfin_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') 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-jellyfin/job/master/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 jellyfin tag latest. 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 jellyfin tag latest 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-jellyfin/job/master/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 jellyfin tag latest. 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 cb4f253..1d7d109 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-jellyfin\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-jellyfin/${br}/jenkins-vars.yml | yq -r '.ls_branch') - if [ "${br}" == "${ls_branch}" ]; then + JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${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-jellyfin/${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-jellyfin/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 -q "^jellyfin_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`jellyfin_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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 \`jellyfin_%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-jellyfin/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 jellyfin** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/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 jellyfin** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi diff --git a/README.md b/README.md index 6762512..b356e79 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,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 0e99c5f7aae5eb89f5068684c623375142d48990 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Oct 2024 13:00:41 +0000 Subject: [PATCH 2066/2257] 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 3ce21c7..997ea5c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -501,7 +501,7 @@ libpciaccess0 0.17-3build1 libpcre2-8-0 10.42-4ubuntu2 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb -libproc2-0 2:4.0.4-4ubuntu3 deb +libproc2-0 2:4.0.4-4ubuntu3.1 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb @@ -576,7 +576,7 @@ openssl 3.0.13-0ubunt passwd 1:4.13+dfsg1-4ubuntu3 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb -procps 2:4.0.4-4ubuntu3 deb +procps 2:4.0.4-4ubuntu3.1 deb prometheus-net.DotNetRuntime 4.4.0.0 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb From 7e2706a035b97f8e1b982ee33c5119b587854372 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 6 Oct 2024 16:18:30 -0400 Subject: [PATCH 2067/2257] fix fontconfig cache path --- README.md | 1 + readme-vars.yml | 1 + root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index b356e79..5589053 100644 --- a/README.md +++ b/README.md @@ -372,6 +372,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **06.10.24:** - Fix fontconfig cache path. * **13.08.24:** - Rebase to Ubuntu Noble. * **01.05.24:** - Increase verbosity of device permissions fixing. * **12.02.24:** - Use universal hardware acceleration blurb. diff --git a/readme-vars.yml b/readme-vars.yml index f121ef9..714aed4 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -91,6 +91,7 @@ readme_hwaccel: true unraid_template_sync: false # changelog changelogs: + - {date: "06.10.24:", desc: "Fix fontconfig cache path."} - {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."} - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing."} - {date: "12.02.24:", desc: "Use universal hardware acceleration blurb."} diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index c9838e5..b61352d 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -6,6 +6,7 @@ if [[ -z "${FFMPEG_PATH}" ]] || [[ ! -f "${FFMPEG_PATH}" ]]; then fi export \ + HOME="/config" \ JELLYFIN_DATA_DIR="/config/data" \ JELLYFIN_CONFIG_DIR="/config" \ JELLYFIN_LOG_DIR="/config/log" \ From 2c1bdef46fbc3bad71ac020c92c26985331f2e74 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 6 Oct 2024 16:21:06 -0400 Subject: [PATCH 2068/2257] fix fontconfig cache path --- README.md | 1 + readme-vars.yml | 1 + root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index ecb781a..73dd351 100644 --- a/README.md +++ b/README.md @@ -372,6 +372,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **06.10.24:** - Fix fontconfig cache path. * **13.08.24:** - Rebase to Ubuntu Noble. * **01.05.24:** - Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb. * **03.12.23:** - Switch nightly to ffmpeg6. diff --git a/readme-vars.yml b/readme-vars.yml index 8fe294c..c1a391c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -91,6 +91,7 @@ readme_hwaccel: true unraid_template_sync: false # changelog changelogs: + - {date: "06.10.24:", desc: "Fix fontconfig cache path."} - {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."} - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb."} - {date: "03.12.23:", desc: "Switch nightly to ffmpeg6."} diff --git a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run index c9838e5..b61352d 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-jellyfin/run @@ -6,6 +6,7 @@ if [[ -z "${FFMPEG_PATH}" ]] || [[ ! -f "${FFMPEG_PATH}" ]]; then fi export \ + HOME="/config" \ JELLYFIN_DATA_DIR="/config/data" \ JELLYFIN_CONFIG_DIR="/config" \ JELLYFIN_LOG_DIR="/config/log" \ From 8406f5352019543499e44a72eaa8265798acd8c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Oct 2024 06:18:30 +0000 Subject: [PATCH 2069/2257] 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 47b2c6c..82038fc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024093005+ubu2404 deb +jellyfin 2024100705+ubu2404 deb jellyfin-ffmpeg7 7.0.2-3-noble deb -jellyfin-server 2024093005+ubu2404 deb -jellyfin-web 2024093005+ubu2404 deb +jellyfin-server 2024100705+ubu2404 deb +jellyfin-web 2024100705+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 20ba87cfe0a53b0c991f9eba188c5a2076c0ad41 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Oct 2024 06:20:02 +0000 Subject: [PATCH 2070/2257] Bot Updating Package Versions --- package_versions.txt | 604 +++++++++++++++++++++---------------------- 1 file changed, 302 insertions(+), 302 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 82038fc..8a5cf5f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -29,101 +29,101 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.824.36908 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authorization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Server 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Web 8.0.824.36908 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.824.36908 dotnet -Microsoft.AspNetCore.Cors 8.0.824.36908 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.824.36908 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.824.36908 dotnet -Microsoft.AspNetCore.DataProtection 8.0.824.36908 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.824.36908 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.824.36908 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.824.36908 dotnet -Microsoft.AspNetCore.Hosting 8.0.824.36908 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Features 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Results 8.0.824.36908 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.824.36908 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.824.36908 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.824.36908 dotnet -Microsoft.AspNetCore.Identity 8.0.824.36908 dotnet -Microsoft.AspNetCore.Localization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.824.36908 dotnet -Microsoft.AspNetCore.Metadata 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.824.36908 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.824.36908 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.824.36908 dotnet -Microsoft.AspNetCore.Razor 8.0.824.36908 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.824.36908 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.824.36908 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.824.36908 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.824.36908 dotnet -Microsoft.AspNetCore.Rewrite 8.0.824.36908 dotnet -Microsoft.AspNetCore.Routing 8.0.824.36908 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.824.36908 dotnet -Microsoft.AspNetCore.Session 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.824.36908 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.824.36908 dotnet -Microsoft.AspNetCore.WebSockets 8.0.824.36908 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.824.36908 dotnet +Microsoft.AspNetCore 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authorization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Server 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Web 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Cors 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1024.46804 dotnet +Microsoft.AspNetCore.DataProtection 8.0.1024.46804 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Hosting 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Features 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Results 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Identity 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Localization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Metadata 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1024.46804 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.1024.46804 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Razor 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.1024.46804 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.1024.46804 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.1024.46804 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Rewrite 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Routing 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Session 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1024.46804 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.1024.46804 dotnet +Microsoft.AspNetCore.WebSockets 8.0.1024.46804 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.1024.46804 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.824.36612 dotnet -Microsoft.Data.Sqlite 8.0.824.36704 dotnet -Microsoft.EntityFrameworkCore 8.0.824.36704 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.824.36704 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.824.36704 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.824.36704 dotnet +Microsoft.CSharp 8.0.1024.46610 dotnet +Microsoft.Data.Sqlite 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.1024.46708 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet +Microsoft.Extensions.Caching.Memory 8.0.1024.46610 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Binder 8.0.724.31311 dotnet @@ -131,52 +131,52 @@ Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.824.36908 dotnet -Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet -Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 dotnet -Microsoft.Extensions.DependencyModel 8.0.724.31311 dotnet -Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.824.36908 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.824.36908 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.824.36908 dotnet -Microsoft.Extensions.Features 8.0.824.36908 dotnet +Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.1024.46804 dotnet +Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet +Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1024.46804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1024.46804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1024.46804 dotnet +Microsoft.Extensions.Features 8.0.1024.46804 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.824.36908 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.1024.46804 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet -Microsoft.Extensions.Hosting 8.0.23.53103 dotnet -Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.824.36908 dotnet -Microsoft.Extensions.Identity.Stores 8.0.824.36908 dotnet -Microsoft.Extensions.Localization 8.0.824.36908 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.824.36908 dotnet -Microsoft.Extensions.Logging 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet -Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Console 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Debug 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.824.36908 dotnet +Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet +Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Http 8.0.1024.46610 dotnet +Microsoft.Extensions.Identity.Core 8.0.1024.46804 dotnet +Microsoft.Extensions.Identity.Stores 8.0.1024.46804 dotnet +Microsoft.Extensions.Localization 8.0.1024.46804 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.1024.46804 dotnet +Microsoft.Extensions.Logging 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet +Microsoft.Extensions.ObjectPool 8.0.1024.46804 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.824.36908 dotnet -Microsoft.JSInterop 8.0.824.36908 dotnet -Microsoft.Net.Http.Headers 8.0.824.36908 dotnet +Microsoft.Extensions.WebEncoders 8.0.1024.46804 dotnet +Microsoft.JSInterop 8.0.1024.46804 dotnet +Microsoft.Net.Http.Headers 8.0.1024.46804 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.824.36612 dotnet -Microsoft.VisualBasic.Core 13.0.824.36612 dotnet -Microsoft.Win32.Primitives 8.0.824.36612 dotnet -Microsoft.Win32.Registry 8.0.824.36612 dotnet +Microsoft.VisualBasic 8.0.1024.46610 dotnet +Microsoft.VisualBasic.Core 13.0.1024.46610 dotnet +Microsoft.Win32.Primitives 8.0.1024.46610 dotnet +Microsoft.Win32.Registry 8.0.1024.46610 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -187,12 +187,12 @@ SQLitePCLRaw.batteries_v2 2.1.6.2060 SQLitePCLRaw.core 2.1.6.2060 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet Serilog 4.0.0.0 dotnet -Serilog.AspNetCore 8.0.2.0 dotnet +Serilog.AspNetCore 8.0.3.0 dotnet Serilog.Enrichers.Thread 4.0.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.2.0 dotnet +Serilog.Settings.Configuration 8.0.4.0 dotnet Serilog.Sinks.Async 2.0.0.0 dotnet Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet @@ -209,178 +209,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.824.36612 dotnet -System.AppContext 8.0.824.36612 dotnet -System.Buffers 8.0.824.36612 dotnet -System.Collections 8.0.824.36612 dotnet -System.Collections.Concurrent 8.0.824.36612 dotnet -System.Collections.Immutable 8.0.824.36612 dotnet -System.Collections.NonGeneric 8.0.824.36612 dotnet -System.Collections.Specialized 8.0.824.36612 dotnet -System.ComponentModel 8.0.824.36612 dotnet -System.ComponentModel.Annotations 8.0.824.36612 dotnet -System.ComponentModel.DataAnnotations 8.0.824.36612 dotnet -System.ComponentModel.EventBasedAsync 8.0.824.36612 dotnet -System.ComponentModel.Primitives 8.0.824.36612 dotnet -System.ComponentModel.TypeConverter 8.0.824.36612 dotnet -System.Configuration 8.0.824.36612 dotnet -System.Console 8.0.824.36612 dotnet -System.Core 8.0.824.36612 dotnet -System.Data 8.0.824.36612 dotnet -System.Data.Common 8.0.824.36612 dotnet -System.Data.DataSetExtensions 8.0.824.36612 dotnet -System.Diagnostics.Contracts 8.0.824.36612 dotnet -System.Diagnostics.Debug 8.0.824.36612 dotnet -System.Diagnostics.DiagnosticSource 8.0.824.36612 dotnet -System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.824.36612 dotnet -System.Diagnostics.Process 8.0.824.36612 dotnet -System.Diagnostics.StackTrace 8.0.824.36612 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.824.36612 dotnet -System.Diagnostics.Tools 8.0.824.36612 dotnet -System.Diagnostics.TraceSource 8.0.824.36612 dotnet -System.Diagnostics.Tracing 8.0.824.36612 dotnet -System.Drawing 8.0.824.36612 dotnet +System 8.0.1024.46610 dotnet +System.AppContext 8.0.1024.46610 dotnet +System.Buffers 8.0.1024.46610 dotnet +System.Collections 8.0.1024.46610 dotnet +System.Collections.Concurrent 8.0.1024.46610 dotnet +System.Collections.Immutable 8.0.1024.46610 dotnet +System.Collections.NonGeneric 8.0.1024.46610 dotnet +System.Collections.Specialized 8.0.1024.46610 dotnet +System.ComponentModel 8.0.1024.46610 dotnet +System.ComponentModel.Annotations 8.0.1024.46610 dotnet +System.ComponentModel.DataAnnotations 8.0.1024.46610 dotnet +System.ComponentModel.EventBasedAsync 8.0.1024.46610 dotnet +System.ComponentModel.Primitives 8.0.1024.46610 dotnet +System.ComponentModel.TypeConverter 8.0.1024.46610 dotnet +System.Configuration 8.0.1024.46610 dotnet +System.Console 8.0.1024.46610 dotnet +System.Core 8.0.1024.46610 dotnet +System.Data 8.0.1024.46610 dotnet +System.Data.Common 8.0.1024.46610 dotnet +System.Data.DataSetExtensions 8.0.1024.46610 dotnet +System.Diagnostics.Contracts 8.0.1024.46610 dotnet +System.Diagnostics.Debug 8.0.1024.46610 dotnet +System.Diagnostics.DiagnosticSource 8.0.1024.46610 dotnet +System.Diagnostics.EventLog 8.0.1024.46610 dotnet +System.Diagnostics.FileVersionInfo 8.0.1024.46610 dotnet +System.Diagnostics.Process 8.0.1024.46610 dotnet +System.Diagnostics.StackTrace 8.0.1024.46610 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.1024.46610 dotnet +System.Diagnostics.Tools 8.0.1024.46610 dotnet +System.Diagnostics.TraceSource 8.0.1024.46610 dotnet +System.Diagnostics.Tracing 8.0.1024.46610 dotnet +System.Drawing 8.0.1024.46610 dotnet System.Drawing.Common 8.0.824.36606 dotnet -System.Drawing.Primitives 8.0.824.36612 dotnet -System.Dynamic.Runtime 8.0.824.36612 dotnet -System.Formats.Asn1 8.0.824.36612 dotnet -System.Formats.Tar 8.0.824.36612 dotnet -System.Globalization 8.0.824.36612 dotnet -System.Globalization.Calendars 8.0.824.36612 dotnet -System.Globalization.Extensions 8.0.824.36612 dotnet -System.IO 8.0.824.36612 dotnet -System.IO.Compression 8.0.824.36612 dotnet -System.IO.Compression.Brotli 8.0.824.36612 dotnet -System.IO.Compression.FileSystem 8.0.824.36612 dotnet -System.IO.Compression.ZipFile 8.0.824.36612 dotnet -System.IO.FileSystem 8.0.824.36612 dotnet -System.IO.FileSystem.AccessControl 8.0.824.36612 dotnet -System.IO.FileSystem.DriveInfo 8.0.824.36612 dotnet -System.IO.FileSystem.Primitives 8.0.824.36612 dotnet -System.IO.FileSystem.Watcher 8.0.824.36612 dotnet -System.IO.IsolatedStorage 8.0.824.36612 dotnet -System.IO.MemoryMappedFiles 8.0.824.36612 dotnet +System.Drawing.Primitives 8.0.1024.46610 dotnet +System.Dynamic.Runtime 8.0.1024.46610 dotnet +System.Formats.Asn1 8.0.1024.46610 dotnet +System.Formats.Tar 8.0.1024.46610 dotnet +System.Globalization 8.0.1024.46610 dotnet +System.Globalization.Calendars 8.0.1024.46610 dotnet +System.Globalization.Extensions 8.0.1024.46610 dotnet +System.IO 8.0.1024.46610 dotnet +System.IO.Compression 8.0.1024.46610 dotnet +System.IO.Compression.Brotli 8.0.1024.46610 dotnet +System.IO.Compression.FileSystem 8.0.1024.46610 dotnet +System.IO.Compression.ZipFile 8.0.1024.46610 dotnet +System.IO.FileSystem 8.0.1024.46610 dotnet +System.IO.FileSystem.AccessControl 8.0.1024.46610 dotnet +System.IO.FileSystem.DriveInfo 8.0.1024.46610 dotnet +System.IO.FileSystem.Primitives 8.0.1024.46610 dotnet +System.IO.FileSystem.Watcher 8.0.1024.46610 dotnet +System.IO.IsolatedStorage 8.0.1024.46610 dotnet +System.IO.MemoryMappedFiles 8.0.1024.46610 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.824.36612 dotnet -System.IO.Pipes.AccessControl 8.0.824.36612 dotnet -System.IO.UnmanagedMemoryStream 8.0.824.36612 dotnet -System.Linq 8.0.824.36612 dotnet +System.IO.Pipes 8.0.1024.46610 dotnet +System.IO.Pipes.AccessControl 8.0.1024.46610 dotnet +System.IO.UnmanagedMemoryStream 8.0.1024.46610 dotnet +System.Linq 8.0.1024.46610 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.824.36612 dotnet -System.Linq.Parallel 8.0.824.36612 dotnet -System.Linq.Queryable 8.0.824.36612 dotnet -System.Memory 8.0.824.36612 dotnet -System.Net 8.0.824.36612 dotnet -System.Net.Http 8.0.824.36612 dotnet -System.Net.Http.Json 8.0.824.36612 dotnet -System.Net.HttpListener 8.0.824.36612 dotnet -System.Net.Mail 8.0.824.36612 dotnet -System.Net.NameResolution 8.0.824.36612 dotnet -System.Net.NetworkInformation 8.0.824.36612 dotnet -System.Net.Ping 8.0.824.36612 dotnet -System.Net.Primitives 8.0.824.36612 dotnet -System.Net.Quic 8.0.824.36612 dotnet -System.Net.Requests 8.0.824.36612 dotnet -System.Net.Security 8.0.824.36612 dotnet -System.Net.ServicePoint 8.0.824.36612 dotnet -System.Net.Sockets 8.0.824.36612 dotnet -System.Net.WebClient 8.0.824.36612 dotnet -System.Net.WebHeaderCollection 8.0.824.36612 dotnet -System.Net.WebProxy 8.0.824.36612 dotnet -System.Net.WebSockets 8.0.824.36612 dotnet -System.Net.WebSockets.Client 8.0.824.36612 dotnet -System.Numerics 8.0.824.36612 dotnet -System.Numerics.Vectors 8.0.824.36612 dotnet -System.ObjectModel 8.0.824.36612 dotnet -System.Private.CoreLib 8.0.824.36612 dotnet -System.Private.DataContractSerialization 8.0.824.36612 dotnet -System.Private.Uri 8.0.824.36612 dotnet -System.Private.Xml 8.0.824.36612 dotnet -System.Private.Xml.Linq 8.0.824.36612 dotnet -System.Reflection 8.0.824.36612 dotnet -System.Reflection.DispatchProxy 8.0.824.36612 dotnet -System.Reflection.Emit 8.0.824.36612 dotnet -System.Reflection.Emit.ILGeneration 8.0.824.36612 dotnet -System.Reflection.Emit.Lightweight 8.0.824.36612 dotnet -System.Reflection.Extensions 8.0.824.36612 dotnet -System.Reflection.Metadata 8.0.824.36612 dotnet -System.Reflection.Primitives 8.0.824.36612 dotnet -System.Reflection.TypeExtensions 8.0.824.36612 dotnet -System.Resources.Reader 8.0.824.36612 dotnet -System.Resources.ResourceManager 8.0.824.36612 dotnet -System.Resources.Writer 8.0.824.36612 dotnet -System.Runtime 8.0.824.36612 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.824.36612 dotnet -System.Runtime.CompilerServices.VisualC 8.0.824.36612 dotnet -System.Runtime.Extensions 8.0.824.36612 dotnet -System.Runtime.Handles 8.0.824.36612 dotnet -System.Runtime.InteropServices 8.0.824.36612 dotnet -System.Runtime.InteropServices.JavaScript 8.0.824.36612 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.824.36612 dotnet -System.Runtime.Intrinsics 8.0.824.36612 dotnet -System.Runtime.Loader 8.0.824.36612 dotnet -System.Runtime.Numerics 8.0.824.36612 dotnet -System.Runtime.Serialization 8.0.824.36612 dotnet -System.Runtime.Serialization.Formatters 8.0.824.36612 dotnet -System.Runtime.Serialization.Json 8.0.824.36612 dotnet -System.Runtime.Serialization.Primitives 8.0.824.36612 dotnet -System.Runtime.Serialization.Xml 8.0.824.36612 dotnet -System.Security 8.0.824.36612 dotnet -System.Security.AccessControl 8.0.824.36612 dotnet -System.Security.Claims 8.0.824.36612 dotnet -System.Security.Cryptography 8.0.824.36612 dotnet -System.Security.Cryptography.Algorithms 8.0.824.36612 dotnet -System.Security.Cryptography.Cng 8.0.824.36612 dotnet -System.Security.Cryptography.Csp 8.0.824.36612 dotnet -System.Security.Cryptography.Encoding 8.0.824.36612 dotnet -System.Security.Cryptography.OpenSsl 8.0.824.36612 dotnet -System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.824.36612 dotnet -System.Security.Cryptography.X509Certificates 8.0.824.36612 dotnet -System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.824.36612 dotnet -System.Security.Principal.Windows 8.0.824.36612 dotnet -System.Security.SecureString 8.0.824.36612 dotnet -System.ServiceModel.Web 8.0.824.36612 dotnet -System.ServiceProcess 8.0.824.36612 dotnet -System.Text.Encoding 8.0.824.36612 dotnet -System.Text.Encoding.CodePages 8.0.824.36612 dotnet -System.Text.Encoding.Extensions 8.0.824.36612 dotnet -System.Text.Encodings.Web 8.0.824.36612 dotnet -System.Text.Json 8.0.824.36612 dotnet -System.Text.RegularExpressions 8.0.824.36612 dotnet -System.Threading 8.0.824.36612 dotnet -System.Threading.Channels 8.0.824.36612 dotnet -System.Threading.Overlapped 8.0.824.36612 dotnet +System.Linq.Expressions 8.0.1024.46610 dotnet +System.Linq.Parallel 8.0.1024.46610 dotnet +System.Linq.Queryable 8.0.1024.46610 dotnet +System.Memory 8.0.1024.46610 dotnet +System.Net 8.0.1024.46610 dotnet +System.Net.Http 8.0.1024.46610 dotnet +System.Net.Http.Json 8.0.1024.46610 dotnet +System.Net.HttpListener 8.0.1024.46610 dotnet +System.Net.Mail 8.0.1024.46610 dotnet +System.Net.NameResolution 8.0.1024.46610 dotnet +System.Net.NetworkInformation 8.0.1024.46610 dotnet +System.Net.Ping 8.0.1024.46610 dotnet +System.Net.Primitives 8.0.1024.46610 dotnet +System.Net.Quic 8.0.1024.46610 dotnet +System.Net.Requests 8.0.1024.46610 dotnet +System.Net.Security 8.0.1024.46610 dotnet +System.Net.ServicePoint 8.0.1024.46610 dotnet +System.Net.Sockets 8.0.1024.46610 dotnet +System.Net.WebClient 8.0.1024.46610 dotnet +System.Net.WebHeaderCollection 8.0.1024.46610 dotnet +System.Net.WebProxy 8.0.1024.46610 dotnet +System.Net.WebSockets 8.0.1024.46610 dotnet +System.Net.WebSockets.Client 8.0.1024.46610 dotnet +System.Numerics 8.0.1024.46610 dotnet +System.Numerics.Vectors 8.0.1024.46610 dotnet +System.ObjectModel 8.0.1024.46610 dotnet +System.Private.CoreLib 8.0.1024.46610 dotnet +System.Private.DataContractSerialization 8.0.1024.46610 dotnet +System.Private.Uri 8.0.1024.46610 dotnet +System.Private.Xml 8.0.1024.46610 dotnet +System.Private.Xml.Linq 8.0.1024.46610 dotnet +System.Reflection 8.0.1024.46610 dotnet +System.Reflection.DispatchProxy 8.0.1024.46610 dotnet +System.Reflection.Emit 8.0.1024.46610 dotnet +System.Reflection.Emit.ILGeneration 8.0.1024.46610 dotnet +System.Reflection.Emit.Lightweight 8.0.1024.46610 dotnet +System.Reflection.Extensions 8.0.1024.46610 dotnet +System.Reflection.Metadata 8.0.1024.46610 dotnet +System.Reflection.Primitives 8.0.1024.46610 dotnet +System.Reflection.TypeExtensions 8.0.1024.46610 dotnet +System.Resources.Reader 8.0.1024.46610 dotnet +System.Resources.ResourceManager 8.0.1024.46610 dotnet +System.Resources.Writer 8.0.1024.46610 dotnet +System.Runtime 8.0.1024.46610 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.1024.46610 dotnet +System.Runtime.CompilerServices.VisualC 8.0.1024.46610 dotnet +System.Runtime.Extensions 8.0.1024.46610 dotnet +System.Runtime.Handles 8.0.1024.46610 dotnet +System.Runtime.InteropServices 8.0.1024.46610 dotnet +System.Runtime.InteropServices.JavaScript 8.0.1024.46610 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.1024.46610 dotnet +System.Runtime.Intrinsics 8.0.1024.46610 dotnet +System.Runtime.Loader 8.0.1024.46610 dotnet +System.Runtime.Numerics 8.0.1024.46610 dotnet +System.Runtime.Serialization 8.0.1024.46610 dotnet +System.Runtime.Serialization.Formatters 8.0.1024.46610 dotnet +System.Runtime.Serialization.Json 8.0.1024.46610 dotnet +System.Runtime.Serialization.Primitives 8.0.1024.46610 dotnet +System.Runtime.Serialization.Xml 8.0.1024.46610 dotnet +System.Security 8.0.1024.46610 dotnet +System.Security.AccessControl 8.0.1024.46610 dotnet +System.Security.Claims 8.0.1024.46610 dotnet +System.Security.Cryptography 8.0.1024.46610 dotnet +System.Security.Cryptography.Algorithms 8.0.1024.46610 dotnet +System.Security.Cryptography.Cng 8.0.1024.46610 dotnet +System.Security.Cryptography.Csp 8.0.1024.46610 dotnet +System.Security.Cryptography.Encoding 8.0.1024.46610 dotnet +System.Security.Cryptography.OpenSsl 8.0.1024.46610 dotnet +System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet +System.Security.Cryptography.Primitives 8.0.1024.46610 dotnet +System.Security.Cryptography.X509Certificates 8.0.1024.46610 dotnet +System.Security.Cryptography.Xml 8.0.1024.46610 dotnet +System.Security.Principal 8.0.1024.46610 dotnet +System.Security.Principal.Windows 8.0.1024.46610 dotnet +System.Security.SecureString 8.0.1024.46610 dotnet +System.ServiceModel.Web 8.0.1024.46610 dotnet +System.ServiceProcess 8.0.1024.46610 dotnet +System.Text.Encoding 8.0.1024.46610 dotnet +System.Text.Encoding.CodePages 8.0.1024.46610 dotnet +System.Text.Encoding.Extensions 8.0.1024.46610 dotnet +System.Text.Encodings.Web 8.0.1024.46610 dotnet +System.Text.Json 8.0.1024.46610 dotnet +System.Text.RegularExpressions 8.0.1024.46610 dotnet +System.Threading 8.0.1024.46610 dotnet +System.Threading.Channels 8.0.1024.46610 dotnet +System.Threading.Overlapped 8.0.1024.46610 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.824.36612 dotnet -System.Threading.Tasks.Dataflow 8.0.824.36612 dotnet -System.Threading.Tasks.Extensions 8.0.824.36612 dotnet -System.Threading.Tasks.Parallel 8.0.824.36612 dotnet -System.Threading.Thread 8.0.824.36612 dotnet -System.Threading.ThreadPool 8.0.824.36612 dotnet -System.Threading.Timer 8.0.824.36612 dotnet -System.Transactions 8.0.824.36612 dotnet -System.Transactions.Local 8.0.824.36612 dotnet -System.ValueTuple 8.0.824.36612 dotnet -System.Web 8.0.824.36612 dotnet -System.Web.HttpUtility 8.0.824.36612 dotnet -System.Windows 8.0.824.36612 dotnet -System.Xml 8.0.824.36612 dotnet -System.Xml.Linq 8.0.824.36612 dotnet -System.Xml.ReaderWriter 8.0.824.36612 dotnet -System.Xml.Serialization 8.0.824.36612 dotnet -System.Xml.XDocument 8.0.824.36612 dotnet -System.Xml.XPath 8.0.824.36612 dotnet -System.Xml.XPath.XDocument 8.0.824.36612 dotnet -System.Xml.XmlDocument 8.0.824.36612 dotnet -System.Xml.XmlSerializer 8.0.824.36612 dotnet +System.Threading.Tasks 8.0.1024.46610 dotnet +System.Threading.Tasks.Dataflow 8.0.1024.46610 dotnet +System.Threading.Tasks.Extensions 8.0.1024.46610 dotnet +System.Threading.Tasks.Parallel 8.0.1024.46610 dotnet +System.Threading.Thread 8.0.1024.46610 dotnet +System.Threading.ThreadPool 8.0.1024.46610 dotnet +System.Threading.Timer 8.0.1024.46610 dotnet +System.Transactions 8.0.1024.46610 dotnet +System.Transactions.Local 8.0.1024.46610 dotnet +System.ValueTuple 8.0.1024.46610 dotnet +System.Web 8.0.1024.46610 dotnet +System.Web.HttpUtility 8.0.1024.46610 dotnet +System.Windows 8.0.1024.46610 dotnet +System.Xml 8.0.1024.46610 dotnet +System.Xml.Linq 8.0.1024.46610 dotnet +System.Xml.ReaderWriter 8.0.1024.46610 dotnet +System.Xml.Serialization 8.0.1024.46610 dotnet +System.Xml.XDocument 8.0.1024.46610 dotnet +System.Xml.XPath 8.0.1024.46610 dotnet +System.Xml.XPath.XDocument 8.0.1024.46610 dotnet +System.Xml.XmlDocument 8.0.1024.46610 dotnet +System.Xml.XmlSerializer 8.0.1024.46610 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.824.36612 dotnet +WindowsBase 8.0.1024.46610 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024100705+ubu2404 deb +jellyfin 2024101405+ubu2404 deb jellyfin-ffmpeg7 7.0.2-3-noble deb -jellyfin-server 2024100705+ubu2404 deb -jellyfin-web 2024100705+ubu2404 deb +jellyfin-server 2024101405+ubu2404 deb +jellyfin-web 2024101405+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -569,13 +569,13 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.0.9-0ubuntu0.1 deb +mesa-va-drivers 24.0.9-0ubuntu0.2 deb mount 2.39.3-9ubuntu6.1 deb -mscorlib 8.0.824.36612 dotnet +mscorlib 8.0.1024.46610 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.824.36612 dotnet +netstandard 8.0.1024.46610 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3 deb From 88c5be200ac41cb625d4a03196b3bc0c19ddc296 Mon Sep 17 00:00:00 2001 From: driz <40674481+drizuid@users.noreply.github.com> Date: Tue, 15 Oct 2024 08:31:53 -0400 Subject: [PATCH 2071/2257] update readme --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 714aed4..29bc137 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -30,7 +30,7 @@ param_usage_include_env: true # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - - {env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} + - {env_var: "JELLYFIN_PublishedServerUrl", env_value: "http://192.168.0.5", desc: "Set the autodiscovery response domain or IP address, include http(s)://."} opt_param_usage_include_ports: true opt_param_ports: - {external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)."} From d477e32b69b790031d0ae9997215e8a1515f78f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Oct 2024 12:53:47 +0000 Subject: [PATCH 2072/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 997ea5c..e0e8bc3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -564,7 +564,7 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.0.9-0ubuntu0.1 deb +mesa-va-drivers 24.0.9-0ubuntu0.2 deb mount 2.39.3-9ubuntu6.1 deb mscorlib 8.0.824.36612 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb From 41bbff25b95f021d8d663907c19d1cc0e34ab4de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Oct 2024 13:54:15 +0000 Subject: [PATCH 2073/2257] Bot Updating Templated Files --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5589053..bcb7594 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ services: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional + - JELLYFIN_PublishedServerUrl=http://192.168.0.5 #optional volumes: - /path/to/jellyfin/library:/config - /path/to/tvseries:/data/tvshows @@ -165,7 +165,7 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ - -e JELLYFIN_PublishedServerUrl=192.168.0.5 `#optional` \ + -e JELLYFIN_PublishedServerUrl=http://192.168.0.5 `#optional` \ -p 8096:8096 \ -p 8920:8920 `#optional` \ -p 7359:7359/udp `#optional` \ @@ -190,7 +190,7 @@ Containers are configured using parameters passed at runtime (such as those abov | `-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). | -| `-e JELLYFIN_PublishedServerUrl=192.168.0.5` | Set the autodiscovery response domain or IP address. | +| `-e JELLYFIN_PublishedServerUrl=http://192.168.0.5` | Set the autodiscovery response domain or IP address, include http(s)://. | | `-v /config` | Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.* | | `-v /data/tvshows` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | | `-v /data/movies` | Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc. | From 96b153a2d8f6d64de3878840b72ce222638b76f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Oct 2024 06:19:42 +0000 Subject: [PATCH 2074/2257] 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 8a5cf5f..a97252f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE -AsyncKeyedLock 7.0.1.0 dotnet -Audio Tools Library (ATL) for .NET 6.5.0.0 dotnet +AsyncKeyedLock 7.0.2.0 dotnet +Audio Tools Library (ATL) for .NET 6.6.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024101405+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-3-noble deb -jellyfin-server 2024101405+ubu2404 deb -jellyfin-web 2024101405+ubu2404 deb +jellyfin 2024102105+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-4-noble deb +jellyfin-server 2024102105+ubu2404 deb +jellyfin-web 2024102105+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From b8e751f8cc4294b1d5bd9e75b104a4c3b678a77a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 18:15:51 +0000 Subject: [PATCH 2075/2257] Bot Updating Package Versions --- package_versions.txt | 660 ++++++++++++++++++++++--------------------- 1 file changed, 331 insertions(+), 329 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e0e8bc3..2ab2973 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,8 +1,9 @@ NAME VERSION TYPE -AsyncKeyedLock 6.4.2.0 dotnet +AsyncKeyedLock 7.0.2.0 dotnet +Audio Tools Library (ATL) for .NET 6.6.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet -BlurHashSharp 1.3.2.0 dotnet -BlurHashSharp.SkiaSharp 1.3.2.0 dotnet +BlurHashSharp 1.3.3.0 dotnet +BlurHashSharp.SkiaSharp 1.3.3.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet @@ -15,114 +16,114 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.9.11 dotnet (+13 duplicates) +Jellyfin Server 10.10.0 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.9.11 dotnet -Jellyfin.Extensions.dll 10.9.11 dotnet +Jellyfin.Data.dll 10.10.0 dotnet +Jellyfin.Extensions.dll 10.10.0 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.9.11 dotnet +Jellyfin.Networking.dll 10.10.0 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.824.36908 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authorization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Server 8.0.824.36908 dotnet -Microsoft.AspNetCore.Components.Web 8.0.824.36908 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.824.36908 dotnet -Microsoft.AspNetCore.Cors 8.0.824.36908 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.824.36908 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.824.36908 dotnet -Microsoft.AspNetCore.DataProtection 8.0.824.36908 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.824.36908 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.824.36908 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.824.36908 dotnet -Microsoft.AspNetCore.Hosting 8.0.824.36908 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Features 8.0.824.36908 dotnet -Microsoft.AspNetCore.Http.Results 8.0.824.36908 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.824.36908 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.824.36908 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.824.36908 dotnet -Microsoft.AspNetCore.Identity 8.0.824.36908 dotnet -Microsoft.AspNetCore.Localization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.824.36908 dotnet -Microsoft.AspNetCore.Metadata 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.824.36908 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.824.36908 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.824.36908 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.824.36908 dotnet -Microsoft.AspNetCore.Razor 8.0.824.36908 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.824.36908 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.824.36908 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.824.36908 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.824.36908 dotnet -Microsoft.AspNetCore.Rewrite 8.0.824.36908 dotnet -Microsoft.AspNetCore.Routing 8.0.824.36908 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.824.36908 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.824.36908 dotnet -Microsoft.AspNetCore.Session 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.824.36908 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.824.36908 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.824.36908 dotnet -Microsoft.AspNetCore.WebSockets 8.0.824.36908 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.824.36908 dotnet +Microsoft.AspNetCore 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authorization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Server 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Components.Web 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Cors 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1024.46804 dotnet +Microsoft.AspNetCore.DataProtection 8.0.1024.46804 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Hosting 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Features 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Http.Results 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.1024.46804 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Identity 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Localization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Metadata 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1024.46804 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.1024.46804 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Razor 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.1024.46804 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.1024.46804 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.1024.46804 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Rewrite 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Routing 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1024.46804 dotnet +Microsoft.AspNetCore.Session 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.1024.46804 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1024.46804 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.1024.46804 dotnet +Microsoft.AspNetCore.WebSockets 8.0.1024.46804 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.1024.46804 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.824.36612 dotnet -Microsoft.Data.Sqlite 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.724.31404 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.724.31404 dotnet +Microsoft.CSharp 8.0.1024.46610 dotnet +Microsoft.Data.Sqlite 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.1024.46708 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.1024.46708 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Caching.Memory 8.0.23.53103 dotnet +Microsoft.Extensions.Caching.Memory 8.0.1024.46610 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Binder 8.0.724.31311 dotnet @@ -130,52 +131,52 @@ Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Json 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.824.36908 dotnet -Microsoft.Extensions.Configuration.UserSecrets 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Xml 8.0.23.53103 dotnet -Microsoft.Extensions.DependencyInjection 8.0.23.53103 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 dotnet -Microsoft.Extensions.DependencyModel 8.0.724.31311 dotnet -Microsoft.Extensions.Diagnostics 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.824.36908 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.824.36908 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.724.31402 dotnet -Microsoft.Extensions.Features 8.0.824.36908 dotnet +Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.1024.46804 dotnet +Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet +Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1024.46804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1024.46804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1024.46804 dotnet +Microsoft.Extensions.Features 8.0.1024.46804 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.824.36908 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.1024.46804 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet -Microsoft.Extensions.Hosting 8.0.23.53103 dotnet -Microsoft.Extensions.Hosting.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Http 8.0.23.53103 dotnet -Microsoft.Extensions.Identity.Core 8.0.824.36908 dotnet -Microsoft.Extensions.Identity.Stores 8.0.824.36908 dotnet -Microsoft.Extensions.Localization 8.0.824.36908 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.824.36908 dotnet -Microsoft.Extensions.Logging 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.324.11423 dotnet -Microsoft.Extensions.Logging.Configuration 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Console 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.Debug 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.EventLog 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.EventSource 8.0.23.53103 dotnet -Microsoft.Extensions.Logging.TraceSource 8.0.23.53103 dotnet -Microsoft.Extensions.ObjectPool 8.0.824.36908 dotnet +Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet +Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Http 8.0.1024.46610 dotnet +Microsoft.Extensions.Identity.Core 8.0.1024.46804 dotnet +Microsoft.Extensions.Identity.Stores 8.0.1024.46804 dotnet +Microsoft.Extensions.Localization 8.0.1024.46804 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.1024.46804 dotnet +Microsoft.Extensions.Logging 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet +Microsoft.Extensions.ObjectPool 8.0.1024.46804 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.824.36908 dotnet -Microsoft.JSInterop 8.0.824.36908 dotnet -Microsoft.Net.Http.Headers 8.0.824.36908 dotnet +Microsoft.Extensions.WebEncoders 8.0.1024.46804 dotnet +Microsoft.JSInterop 8.0.1024.46804 dotnet +Microsoft.Net.Http.Headers 8.0.1024.46804 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.824.36612 dotnet -Microsoft.VisualBasic.Core 13.0.824.36612 dotnet -Microsoft.Win32.Primitives 8.0.824.36612 dotnet -Microsoft.Win32.Registry 8.0.824.36612 dotnet +Microsoft.VisualBasic 8.0.1024.46610 dotnet +Microsoft.VisualBasic.Core 13.0.1024.46610 dotnet +Microsoft.Win32.Primitives 8.0.1024.46610 dotnet +Microsoft.Win32.Registry 8.0.1024.46610 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -185,200 +186,201 @@ Prometheus.NetStandard.dll 8.2.1 SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet SQLitePCLRaw.core 2.1.6.2060 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet -Serilog 4.0.0.0 dotnet -Serilog.AspNetCore 8.0.2.0 dotnet -Serilog.Enrichers.Thread 3.1.0.0 dotnet +Serilog 4.1.0.0 dotnet +Serilog.AspNetCore 8.0.3.0 dotnet +Serilog.Enrichers.Thread 4.0.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.2.0 dotnet -Serilog.Sinks.Async 2.0.0.0 dotnet +Serilog.Settings.Configuration 8.0.4.0 dotnet +Serilog.Sinks.Async 2.1.0.0 dotnet Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet +ShimSkiaSharp 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet SkiaSharp 2.88.8.0 dotnet SkiaSharp.HarfBuzz 2.88.8.0 dotnet -Svg.Custom 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet -Svg.Model 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet -Svg.Skia 1.0.0.18+2b7ddddf67008488d2f5bd681bf61eb8a983ea79 dotnet -Swashbuckle.AspNetCore.ReDoc 6.6.2.401 dotnet +Svg.Custom 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +Svg.Model 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +Svg.Skia 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.824.36612 dotnet -System.AppContext 8.0.824.36612 dotnet -System.Buffers 8.0.824.36612 dotnet -System.Collections 8.0.824.36612 dotnet -System.Collections.Concurrent 8.0.824.36612 dotnet -System.Collections.Immutable 8.0.824.36612 dotnet -System.Collections.NonGeneric 8.0.824.36612 dotnet -System.Collections.Specialized 8.0.824.36612 dotnet -System.ComponentModel 8.0.824.36612 dotnet -System.ComponentModel.Annotations 8.0.824.36612 dotnet -System.ComponentModel.DataAnnotations 8.0.824.36612 dotnet -System.ComponentModel.EventBasedAsync 8.0.824.36612 dotnet -System.ComponentModel.Primitives 8.0.824.36612 dotnet -System.ComponentModel.TypeConverter 8.0.824.36612 dotnet -System.Configuration 8.0.824.36612 dotnet -System.Console 8.0.824.36612 dotnet -System.Core 8.0.824.36612 dotnet -System.Data 8.0.824.36612 dotnet -System.Data.Common 8.0.824.36612 dotnet -System.Data.DataSetExtensions 8.0.824.36612 dotnet -System.Diagnostics.Contracts 8.0.824.36612 dotnet -System.Diagnostics.Debug 8.0.824.36612 dotnet -System.Diagnostics.DiagnosticSource 8.0.824.36612 dotnet -System.Diagnostics.EventLog 8.0.23.53103 dotnet -System.Diagnostics.FileVersionInfo 8.0.824.36612 dotnet -System.Diagnostics.Process 8.0.824.36612 dotnet -System.Diagnostics.StackTrace 8.0.824.36612 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.824.36612 dotnet -System.Diagnostics.Tools 8.0.824.36612 dotnet -System.Diagnostics.TraceSource 8.0.824.36612 dotnet -System.Diagnostics.Tracing 8.0.824.36612 dotnet -System.Drawing 8.0.824.36612 dotnet -System.Drawing.Common 8.0.624.26909 dotnet -System.Drawing.Primitives 8.0.824.36612 dotnet -System.Dynamic.Runtime 8.0.824.36612 dotnet -System.Formats.Asn1 8.0.824.36612 dotnet -System.Formats.Tar 8.0.824.36612 dotnet -System.Globalization 8.0.824.36612 dotnet -System.Globalization.Calendars 8.0.824.36612 dotnet -System.Globalization.Extensions 8.0.824.36612 dotnet -System.IO 8.0.824.36612 dotnet -System.IO.Compression 8.0.824.36612 dotnet -System.IO.Compression.Brotli 8.0.824.36612 dotnet -System.IO.Compression.FileSystem 8.0.824.36612 dotnet -System.IO.Compression.ZipFile 8.0.824.36612 dotnet -System.IO.FileSystem 8.0.824.36612 dotnet -System.IO.FileSystem.AccessControl 8.0.824.36612 dotnet -System.IO.FileSystem.DriveInfo 8.0.824.36612 dotnet -System.IO.FileSystem.Primitives 8.0.824.36612 dotnet -System.IO.FileSystem.Watcher 8.0.824.36612 dotnet -System.IO.IsolatedStorage 8.0.824.36612 dotnet -System.IO.MemoryMappedFiles 8.0.824.36612 dotnet +System 8.0.1024.46610 dotnet +System.AppContext 8.0.1024.46610 dotnet +System.Buffers 8.0.1024.46610 dotnet +System.Collections 8.0.1024.46610 dotnet +System.Collections.Concurrent 8.0.1024.46610 dotnet +System.Collections.Immutable 8.0.1024.46610 dotnet +System.Collections.NonGeneric 8.0.1024.46610 dotnet +System.Collections.Specialized 8.0.1024.46610 dotnet +System.ComponentModel 8.0.1024.46610 dotnet +System.ComponentModel.Annotations 8.0.1024.46610 dotnet +System.ComponentModel.DataAnnotations 8.0.1024.46610 dotnet +System.ComponentModel.EventBasedAsync 8.0.1024.46610 dotnet +System.ComponentModel.Primitives 8.0.1024.46610 dotnet +System.ComponentModel.TypeConverter 8.0.1024.46610 dotnet +System.Configuration 8.0.1024.46610 dotnet +System.Console 8.0.1024.46610 dotnet +System.Core 8.0.1024.46610 dotnet +System.Data 8.0.1024.46610 dotnet +System.Data.Common 8.0.1024.46610 dotnet +System.Data.DataSetExtensions 8.0.1024.46610 dotnet +System.Diagnostics.Contracts 8.0.1024.46610 dotnet +System.Diagnostics.Debug 8.0.1024.46610 dotnet +System.Diagnostics.DiagnosticSource 8.0.1024.46610 dotnet +System.Diagnostics.EventLog 8.0.1024.46610 dotnet +System.Diagnostics.FileVersionInfo 8.0.1024.46610 dotnet +System.Diagnostics.Process 8.0.1024.46610 dotnet +System.Diagnostics.StackTrace 8.0.1024.46610 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.1024.46610 dotnet +System.Diagnostics.Tools 8.0.1024.46610 dotnet +System.Diagnostics.TraceSource 8.0.1024.46610 dotnet +System.Diagnostics.Tracing 8.0.1024.46610 dotnet +System.Drawing 8.0.1024.46610 dotnet +System.Drawing.Common 8.0.824.36606 dotnet +System.Drawing.Primitives 8.0.1024.46610 dotnet +System.Dynamic.Runtime 8.0.1024.46610 dotnet +System.Formats.Asn1 8.0.1024.46610 dotnet +System.Formats.Tar 8.0.1024.46610 dotnet +System.Globalization 8.0.1024.46610 dotnet +System.Globalization.Calendars 8.0.1024.46610 dotnet +System.Globalization.Extensions 8.0.1024.46610 dotnet +System.IO 8.0.1024.46610 dotnet +System.IO.Compression 8.0.1024.46610 dotnet +System.IO.Compression.Brotli 8.0.1024.46610 dotnet +System.IO.Compression.FileSystem 8.0.1024.46610 dotnet +System.IO.Compression.ZipFile 8.0.1024.46610 dotnet +System.IO.FileSystem 8.0.1024.46610 dotnet +System.IO.FileSystem.AccessControl 8.0.1024.46610 dotnet +System.IO.FileSystem.DriveInfo 8.0.1024.46610 dotnet +System.IO.FileSystem.Primitives 8.0.1024.46610 dotnet +System.IO.FileSystem.Watcher 8.0.1024.46610 dotnet +System.IO.IsolatedStorage 8.0.1024.46610 dotnet +System.IO.MemoryMappedFiles 8.0.1024.46610 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.824.36612 dotnet -System.IO.Pipes.AccessControl 8.0.824.36612 dotnet -System.IO.UnmanagedMemoryStream 8.0.824.36612 dotnet -System.Linq 8.0.824.36612 dotnet +System.IO.Pipes 8.0.1024.46610 dotnet +System.IO.Pipes.AccessControl 8.0.1024.46610 dotnet +System.IO.UnmanagedMemoryStream 8.0.1024.46610 dotnet +System.Linq 8.0.1024.46610 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.824.36612 dotnet -System.Linq.Parallel 8.0.824.36612 dotnet -System.Linq.Queryable 8.0.824.36612 dotnet -System.Memory 8.0.824.36612 dotnet -System.Net 8.0.824.36612 dotnet -System.Net.Http 8.0.824.36612 dotnet -System.Net.Http.Json 8.0.824.36612 dotnet -System.Net.HttpListener 8.0.824.36612 dotnet -System.Net.Mail 8.0.824.36612 dotnet -System.Net.NameResolution 8.0.824.36612 dotnet -System.Net.NetworkInformation 8.0.824.36612 dotnet -System.Net.Ping 8.0.824.36612 dotnet -System.Net.Primitives 8.0.824.36612 dotnet -System.Net.Quic 8.0.824.36612 dotnet -System.Net.Requests 8.0.824.36612 dotnet -System.Net.Security 8.0.824.36612 dotnet -System.Net.ServicePoint 8.0.824.36612 dotnet -System.Net.Sockets 8.0.824.36612 dotnet -System.Net.WebClient 8.0.824.36612 dotnet -System.Net.WebHeaderCollection 8.0.824.36612 dotnet -System.Net.WebProxy 8.0.824.36612 dotnet -System.Net.WebSockets 8.0.824.36612 dotnet -System.Net.WebSockets.Client 8.0.824.36612 dotnet -System.Numerics 8.0.824.36612 dotnet -System.Numerics.Vectors 8.0.824.36612 dotnet -System.ObjectModel 8.0.824.36612 dotnet -System.Private.CoreLib 8.0.824.36612 dotnet -System.Private.DataContractSerialization 8.0.824.36612 dotnet -System.Private.Uri 8.0.824.36612 dotnet -System.Private.Xml 8.0.824.36612 dotnet -System.Private.Xml.Linq 8.0.824.36612 dotnet -System.Reflection 8.0.824.36612 dotnet -System.Reflection.DispatchProxy 8.0.824.36612 dotnet -System.Reflection.Emit 8.0.824.36612 dotnet -System.Reflection.Emit.ILGeneration 8.0.824.36612 dotnet -System.Reflection.Emit.Lightweight 8.0.824.36612 dotnet -System.Reflection.Extensions 8.0.824.36612 dotnet -System.Reflection.Metadata 8.0.824.36612 dotnet -System.Reflection.Primitives 8.0.824.36612 dotnet -System.Reflection.TypeExtensions 8.0.824.36612 dotnet -System.Resources.Reader 8.0.824.36612 dotnet -System.Resources.ResourceManager 8.0.824.36612 dotnet -System.Resources.Writer 8.0.824.36612 dotnet -System.Runtime 8.0.824.36612 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.824.36612 dotnet -System.Runtime.CompilerServices.VisualC 8.0.824.36612 dotnet -System.Runtime.Extensions 8.0.824.36612 dotnet -System.Runtime.Handles 8.0.824.36612 dotnet -System.Runtime.InteropServices 8.0.824.36612 dotnet -System.Runtime.InteropServices.JavaScript 8.0.824.36612 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.824.36612 dotnet -System.Runtime.Intrinsics 8.0.824.36612 dotnet -System.Runtime.Loader 8.0.824.36612 dotnet -System.Runtime.Numerics 8.0.824.36612 dotnet -System.Runtime.Serialization 8.0.824.36612 dotnet -System.Runtime.Serialization.Formatters 8.0.824.36612 dotnet -System.Runtime.Serialization.Json 8.0.824.36612 dotnet -System.Runtime.Serialization.Primitives 8.0.824.36612 dotnet -System.Runtime.Serialization.Xml 8.0.824.36612 dotnet -System.Security 8.0.824.36612 dotnet -System.Security.AccessControl 8.0.824.36612 dotnet -System.Security.Claims 8.0.824.36612 dotnet -System.Security.Cryptography 8.0.824.36612 dotnet -System.Security.Cryptography.Algorithms 8.0.824.36612 dotnet -System.Security.Cryptography.Cng 8.0.824.36612 dotnet -System.Security.Cryptography.Csp 8.0.824.36612 dotnet -System.Security.Cryptography.Encoding 8.0.824.36612 dotnet -System.Security.Cryptography.OpenSsl 8.0.824.36612 dotnet -System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 8.0.824.36612 dotnet -System.Security.Cryptography.X509Certificates 8.0.824.36612 dotnet -System.Security.Cryptography.Xml 8.0.524.21615 dotnet -System.Security.Principal 8.0.824.36612 dotnet -System.Security.Principal.Windows 8.0.824.36612 dotnet -System.Security.SecureString 8.0.824.36612 dotnet -System.ServiceModel.Web 8.0.824.36612 dotnet -System.ServiceProcess 8.0.824.36612 dotnet -System.Text.Encoding 8.0.824.36612 dotnet -System.Text.Encoding.CodePages 8.0.824.36612 dotnet -System.Text.Encoding.Extensions 8.0.824.36612 dotnet -System.Text.Encodings.Web 8.0.824.36612 dotnet -System.Text.Json 8.0.824.36612 dotnet -System.Text.RegularExpressions 8.0.824.36612 dotnet -System.Threading 8.0.824.36612 dotnet -System.Threading.Channels 8.0.824.36612 dotnet -System.Threading.Overlapped 8.0.824.36612 dotnet +System.Linq.Expressions 8.0.1024.46610 dotnet +System.Linq.Parallel 8.0.1024.46610 dotnet +System.Linq.Queryable 8.0.1024.46610 dotnet +System.Memory 8.0.1024.46610 dotnet +System.Net 8.0.1024.46610 dotnet +System.Net.Http 8.0.1024.46610 dotnet +System.Net.Http.Json 8.0.1024.46610 dotnet +System.Net.HttpListener 8.0.1024.46610 dotnet +System.Net.Mail 8.0.1024.46610 dotnet +System.Net.NameResolution 8.0.1024.46610 dotnet +System.Net.NetworkInformation 8.0.1024.46610 dotnet +System.Net.Ping 8.0.1024.46610 dotnet +System.Net.Primitives 8.0.1024.46610 dotnet +System.Net.Quic 8.0.1024.46610 dotnet +System.Net.Requests 8.0.1024.46610 dotnet +System.Net.Security 8.0.1024.46610 dotnet +System.Net.ServicePoint 8.0.1024.46610 dotnet +System.Net.Sockets 8.0.1024.46610 dotnet +System.Net.WebClient 8.0.1024.46610 dotnet +System.Net.WebHeaderCollection 8.0.1024.46610 dotnet +System.Net.WebProxy 8.0.1024.46610 dotnet +System.Net.WebSockets 8.0.1024.46610 dotnet +System.Net.WebSockets.Client 8.0.1024.46610 dotnet +System.Numerics 8.0.1024.46610 dotnet +System.Numerics.Vectors 8.0.1024.46610 dotnet +System.ObjectModel 8.0.1024.46610 dotnet +System.Private.CoreLib 8.0.1024.46610 dotnet +System.Private.DataContractSerialization 8.0.1024.46610 dotnet +System.Private.Uri 8.0.1024.46610 dotnet +System.Private.Xml 8.0.1024.46610 dotnet +System.Private.Xml.Linq 8.0.1024.46610 dotnet +System.Reflection 8.0.1024.46610 dotnet +System.Reflection.DispatchProxy 8.0.1024.46610 dotnet +System.Reflection.Emit 8.0.1024.46610 dotnet +System.Reflection.Emit.ILGeneration 8.0.1024.46610 dotnet +System.Reflection.Emit.Lightweight 8.0.1024.46610 dotnet +System.Reflection.Extensions 8.0.1024.46610 dotnet +System.Reflection.Metadata 8.0.1024.46610 dotnet +System.Reflection.Primitives 8.0.1024.46610 dotnet +System.Reflection.TypeExtensions 8.0.1024.46610 dotnet +System.Resources.Reader 8.0.1024.46610 dotnet +System.Resources.ResourceManager 8.0.1024.46610 dotnet +System.Resources.Writer 8.0.1024.46610 dotnet +System.Runtime 8.0.1024.46610 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.1024.46610 dotnet +System.Runtime.CompilerServices.VisualC 8.0.1024.46610 dotnet +System.Runtime.Extensions 8.0.1024.46610 dotnet +System.Runtime.Handles 8.0.1024.46610 dotnet +System.Runtime.InteropServices 8.0.1024.46610 dotnet +System.Runtime.InteropServices.JavaScript 8.0.1024.46610 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.1024.46610 dotnet +System.Runtime.Intrinsics 8.0.1024.46610 dotnet +System.Runtime.Loader 8.0.1024.46610 dotnet +System.Runtime.Numerics 8.0.1024.46610 dotnet +System.Runtime.Serialization 8.0.1024.46610 dotnet +System.Runtime.Serialization.Formatters 8.0.1024.46610 dotnet +System.Runtime.Serialization.Json 8.0.1024.46610 dotnet +System.Runtime.Serialization.Primitives 8.0.1024.46610 dotnet +System.Runtime.Serialization.Xml 8.0.1024.46610 dotnet +System.Security 8.0.1024.46610 dotnet +System.Security.AccessControl 8.0.1024.46610 dotnet +System.Security.Claims 8.0.1024.46610 dotnet +System.Security.Cryptography 8.0.1024.46610 dotnet +System.Security.Cryptography.Algorithms 8.0.1024.46610 dotnet +System.Security.Cryptography.Cng 8.0.1024.46610 dotnet +System.Security.Cryptography.Csp 8.0.1024.46610 dotnet +System.Security.Cryptography.Encoding 8.0.1024.46610 dotnet +System.Security.Cryptography.OpenSsl 8.0.1024.46610 dotnet +System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet +System.Security.Cryptography.Primitives 8.0.1024.46610 dotnet +System.Security.Cryptography.X509Certificates 8.0.1024.46610 dotnet +System.Security.Cryptography.Xml 8.0.1024.46610 dotnet +System.Security.Principal 8.0.1024.46610 dotnet +System.Security.Principal.Windows 8.0.1024.46610 dotnet +System.Security.SecureString 8.0.1024.46610 dotnet +System.ServiceModel.Web 8.0.1024.46610 dotnet +System.ServiceProcess 8.0.1024.46610 dotnet +System.Text.Encoding 8.0.1024.46610 dotnet +System.Text.Encoding.CodePages 8.0.1024.46610 dotnet +System.Text.Encoding.Extensions 8.0.1024.46610 dotnet +System.Text.Encodings.Web 8.0.1024.46610 dotnet +System.Text.Json 8.0.1024.46610 dotnet +System.Text.RegularExpressions 8.0.1024.46610 dotnet +System.Threading 8.0.1024.46610 dotnet +System.Threading.Channels 8.0.1024.46610 dotnet +System.Threading.Overlapped 8.0.1024.46610 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.824.36612 dotnet -System.Threading.Tasks.Dataflow 8.0.824.36612 dotnet -System.Threading.Tasks.Extensions 8.0.824.36612 dotnet -System.Threading.Tasks.Parallel 8.0.824.36612 dotnet -System.Threading.Thread 8.0.824.36612 dotnet -System.Threading.ThreadPool 8.0.824.36612 dotnet -System.Threading.Timer 8.0.824.36612 dotnet -System.Transactions 8.0.824.36612 dotnet -System.Transactions.Local 8.0.824.36612 dotnet -System.ValueTuple 8.0.824.36612 dotnet -System.Web 8.0.824.36612 dotnet -System.Web.HttpUtility 8.0.824.36612 dotnet -System.Windows 8.0.824.36612 dotnet -System.Xml 8.0.824.36612 dotnet -System.Xml.Linq 8.0.824.36612 dotnet -System.Xml.ReaderWriter 8.0.824.36612 dotnet -System.Xml.Serialization 8.0.824.36612 dotnet -System.Xml.XDocument 8.0.824.36612 dotnet -System.Xml.XPath 8.0.824.36612 dotnet -System.Xml.XPath.XDocument 8.0.824.36612 dotnet -System.Xml.XmlDocument 8.0.824.36612 dotnet -System.Xml.XmlSerializer 8.0.824.36612 dotnet +System.Threading.Tasks 8.0.1024.46610 dotnet +System.Threading.Tasks.Dataflow 8.0.1024.46610 dotnet +System.Threading.Tasks.Extensions 8.0.1024.46610 dotnet +System.Threading.Tasks.Parallel 8.0.1024.46610 dotnet +System.Threading.Thread 8.0.1024.46610 dotnet +System.Threading.ThreadPool 8.0.1024.46610 dotnet +System.Threading.Timer 8.0.1024.46610 dotnet +System.Transactions 8.0.1024.46610 dotnet +System.Transactions.Local 8.0.1024.46610 dotnet +System.ValueTuple 8.0.1024.46610 dotnet +System.Web 8.0.1024.46610 dotnet +System.Web.HttpUtility 8.0.1024.46610 dotnet +System.Windows 8.0.1024.46610 dotnet +System.Xml 8.0.1024.46610 dotnet +System.Xml.Linq 8.0.1024.46610 dotnet +System.Xml.ReaderWriter 8.0.1024.46610 dotnet +System.Xml.Serialization 8.0.1024.46610 dotnet +System.Xml.XDocument 8.0.1024.46610 dotnet +System.Xml.XPath 8.0.1024.46610 dotnet +System.Xml.XPath.XDocument 8.0.1024.46610 dotnet +System.Xml.XmlDocument 8.0.1024.46610 dotnet +System.Xml.XmlSerializer 8.0.1024.46610 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet +Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.824.36612 dotnet +WindowsBase 8.0.1024.46610 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -404,7 +406,7 @@ findutils 4.9.0-5build1 fontconfig-config 2.15.0-1.1ubuntu2 deb fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb -gcc-14-base 14-20240412-0ubuntu1 deb +gcc-14-base 14.2.0-4ubuntu2~24.04 deb gnupg 2.4.4-2ubuntu17 deb gnupg-l10n 2.4.4-2ubuntu17 deb gnupg-utils 2.4.4-2ubuntu17 deb @@ -418,12 +420,12 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.9.11+ubu2404 deb -jellyfin-ffmpeg6 6.0.1-8-noble deb -jellyfin-server 10.9.11+ubu2404 deb -jellyfin-web 10.9.11+ubu2404 deb +jellyfin 10.10.0+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-5-noble deb +jellyfin-server 10.10.0+ubu2404 deb +jellyfin-web 10.10.0+ubu2404 deb jq 1.7.1-3build1 deb -karaoke --dev 2023.524.0.0 dotnet +karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb krb5-locales 1.20.1-6ubuntu2.1 deb libacl1 2.3.2-1build1 deb @@ -459,7 +461,7 @@ libext2fs2t64 1.47.0-2.4~ex libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb libfreetype6 2.13.2+dfsg-1build3 deb -libgcc-s1 14-20240412-0ubuntu1 deb +libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb @@ -501,14 +503,14 @@ libpciaccess0 0.17-3build1 libpcre2-8-0 10.42-4ubuntu2 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb -libproc2-0 2:4.0.4-4ubuntu3.1 deb +libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.7.45 dotnet +libse 4.0.8.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb @@ -520,7 +522,7 @@ libsqlite3-0 3.45.1-1ubunt libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb -libstdc++6 14-20240412-0ubuntu1 deb +libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb @@ -561,23 +563,23 @@ libzstd1 1.5.5+dfsg2-2 libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb locales 2.39-0ubuntu8.3 deb -login 1:4.13+dfsg1-4ubuntu3 deb +login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.2 deb mount 2.39.3-9ubuntu6.1 deb -mscorlib 8.0.824.36612 dotnet +mscorlib 8.0.1024.46610 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.824.36612 dotnet +netstandard 8.0.1024.46610 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb -passwd 1:4.13+dfsg1-4ubuntu3 deb +passwd 1:4.13+dfsg1-4ubuntu3.2 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb -procps 2:4.0.4-4ubuntu3.1 deb -prometheus-net.DotNetRuntime 4.4.0.0 dotnet +procps 2:4.0.4-4ubuntu3.2 deb +prometheus-net.DotNetRuntime 4.4.1.0 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb sed 4.9-2build1 deb @@ -589,5 +591,5 @@ tzdata 2024a-3ubuntu ubuntu-keyring 2023.11.28.1 deb util-linux 2.39.3-9ubuntu6.1 deb xmlstarlet 1.6.1-4 deb -zlib.net 1.0.6.0 dotnet +zlib.net 1.0.8.0 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 763d2d9331e01f14a040df2f91b4e8bc39a26183 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Oct 2024 12:55:03 +0000 Subject: [PATCH 2076/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a97252f..7b83c63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -406,7 +406,7 @@ findutils 4.9.0-5build1 fontconfig-config 2.15.0-1.1ubuntu2 deb fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb -gcc-14-base 14-20240412-0ubuntu1 deb +gcc-14-base 14.2.0-4ubuntu2~24.04 deb gnupg 2.4.4-2ubuntu17 deb gnupg-l10n 2.4.4-2ubuntu17 deb gnupg-utils 2.4.4-2ubuntu17 deb @@ -421,7 +421,7 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 2024102105+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-4-noble deb +jellyfin-ffmpeg7 7.0.2-5-noble deb jellyfin-server 2024102105+ubu2404 deb jellyfin-web 2024102105+ubu2404 deb jq 1.7.1-3build1 deb @@ -464,7 +464,7 @@ libext2fs2t64 1.47.0-2.4~ex libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb libfreetype6 2.13.2+dfsg-1build3 deb -libgcc-s1 14-20240412-0ubuntu1 deb +libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb @@ -506,7 +506,7 @@ libpciaccess0 0.17-3build1 libpcre2-8-0 10.42-4ubuntu2 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb -libproc2-0 2:4.0.4-4ubuntu3.1 deb +libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb @@ -525,7 +525,7 @@ libsqlite3-0 3.45.1-1ubunt libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb -libstdc++6 14-20240412-0ubuntu1 deb +libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.4 deb libtasn1-6 4.19.0-3build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb @@ -566,7 +566,7 @@ libzstd1 1.5.5+dfsg2-2 libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb locales 2.39-0ubuntu8.3 deb -login 1:4.13+dfsg1-4ubuntu3 deb +login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.2 deb @@ -578,10 +578,10 @@ netcat-openbsd 1.226-1ubuntu netstandard 8.0.1024.46610 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb -passwd 1:4.13+dfsg1-4ubuntu3 deb +passwd 1:4.13+dfsg1-4ubuntu3.2 deb perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb -procps 2:4.0.4-4ubuntu3.1 deb +procps 2:4.0.4-4ubuntu3.2 deb prometheus-net.DotNetRuntime 4.4.1.0 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb From 2802f00552ee4c281ab5563693e7cdf39cf0c499 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Nov 2024 17:11:50 +0000 Subject: [PATCH 2077/2257] 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 2ab2973..fb9ee4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,14 +16,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.0 dotnet (+13 duplicates) +Jellyfin Server 10.10.1 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.0 dotnet -Jellyfin.Extensions.dll 10.10.0 dotnet +Jellyfin.Data.dll 10.10.1 dotnet +Jellyfin.Extensions.dll 10.10.1 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.0 dotnet +Jellyfin.Networking.dll 10.10.1 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.0+ubu2404 deb +jellyfin 10.10.1+ubu2404 deb jellyfin-ffmpeg7 7.0.2-5-noble deb -jellyfin-server 10.10.0+ubu2404 deb -jellyfin-web 10.10.0+ubu2404 deb +jellyfin-server 10.10.1+ubu2404 deb +jellyfin-web 10.10.1+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From f4ccb046f507cd09f9f503126af41c52bdd3fd5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 06:18:41 +0000 Subject: [PATCH 2078/2257] 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 7b83c63..b2d51db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.2.0 dotnet -Audio Tools Library (ATL) for .NET 6.6.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.7.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -16,14 +16,14 @@ HarfBuzzSharp 7.3.0.2 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.0 dotnet (+13 duplicates) +Jellyfin Server 10.11.0 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.0 dotnet -Jellyfin.Extensions.dll 10.10.0 dotnet +Jellyfin.Data.dll 10.11.0 dotnet +Jellyfin.Extensions.dll 10.11.0 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.0 dotnet +Jellyfin.Networking.dll 10.11.0 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -186,25 +186,25 @@ Prometheus.NetStandard.dll 8.2.1 SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet SQLitePCLRaw.core 2.1.6.2060 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet -Serilog 4.0.0.0 dotnet +Serilog 4.1.0.0 dotnet Serilog.AspNetCore 8.0.3.0 dotnet Serilog.Enrichers.Thread 4.0.0.0 dotnet Serilog.Extensions.Hosting 8.0.0.0 dotnet Serilog.Extensions.Logging 8.0.0.0 dotnet Serilog.Formatting.Compact 2.0.0.0 dotnet Serilog.Settings.Configuration 8.0.4.0 dotnet -Serilog.Sinks.Async 2.0.0.0 dotnet +Serilog.Sinks.Async 2.1.0.0 dotnet Serilog.Sinks.Console 6.0.0.0 dotnet Serilog.Sinks.Debug 2.0.0.0 dotnet Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +ShimSkiaSharp 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet SkiaSharp 2.88.8.0 dotnet SkiaSharp.HarfBuzz 2.88.8.0 dotnet -Svg.Custom 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -Svg.Model 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -Svg.Skia 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet +Svg.Custom 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet +Svg.Model 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet +Svg.Skia 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024102105+ubu2404 deb +jellyfin 2024110405+ubu2404 deb jellyfin-ffmpeg7 7.0.2-5-noble deb -jellyfin-server 2024102105+ubu2404 deb -jellyfin-web 2024102105+ubu2404 deb +jellyfin-server 2024110405+ubu2404 deb +jellyfin-web 2024110405+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 00ab66a2d40cdfd0de6c246461f653cbf2d2ade4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 12:52:16 +0000 Subject: [PATCH 2079/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b3af8b5..525504d 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 125ae9fe1abba4926b3f9f1758f0107c20bf3faa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 12:53:13 +0000 Subject: [PATCH 2080/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 684e045..68f734b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -884,7 +884,7 @@ pipeline { echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "master",\ "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": 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 61b2a71fb446a50121bd5161298fe214197a3d97 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 12:54:23 +0000 Subject: [PATCH 2081/2257] 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 0ce6fd4..cd8f883 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -105,10 +105,10 @@ docker build \ -t linuxserver/jellyfin: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 1d7d109..aa2d52b 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-jellyfin/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 jellyfin** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], + "description": "**Package Check Build(s) for jellyfin** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} fi diff --git a/README.md b/README.md index 73dd351..329727d 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` + ### Hardware Acceleration Many desktop applications need access to a GPU to function properly and even some Desktop Environments have compositor effects that will not function without a GPU. However this is not a hard requirement and all base images will function without a video device mounted into the container. @@ -362,10 +363,10 @@ docker build \ -t lscr.io/linuxserver/jellyfin: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 064f46f3e603e1b70726c21e7f98de1f085c1eab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 12:55:00 +0000 Subject: [PATCH 2082/2257] 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 ce2ce17..e21c936 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -105,10 +105,10 @@ docker build \ -t linuxserver/jellyfin: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 1d7d109..aa2d52b 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-jellyfin/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 jellyfin** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], + "description": "**Package Check Build(s) for jellyfin** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} fi diff --git a/README.md b/README.md index bcb7594..7b5f883 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` + ### Hardware Acceleration Many desktop applications need access to a GPU to function properly and even some Desktop Environments have compositor effects that will not function without a GPU. However this is not a hard requirement and all base images will function without a video device mounted into the container. @@ -362,10 +363,10 @@ docker build \ -t lscr.io/linuxserver/jellyfin: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`. From 954b05b733835f3433a800e8698f455c227b5e8f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 12:58:27 +0000 Subject: [PATCH 2083/2257] 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 fb9ee4e..93afce9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.1+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-5-noble deb +jellyfin-ffmpeg7 7.0.2-6-noble deb jellyfin-server 10.10.1+ubu2404 deb jellyfin-web 10.10.1+ubu2404 deb jq 1.7.1-3build1 deb @@ -484,7 +484,7 @@ liblzma5 5.6.1+really5 libmd0 1.1.0-2build1 deb libmount1 2.39.3-9ubuntu6.1 deb libmp3lame0 3.100-6build1 deb -libmpg123-0t64 1.32.5-1ubuntu1 deb +libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb libnghttp2-14 1.59.0-1ubuntu0.1 deb From b41b6ab11bd9ae41d195955942a57d70842ac6bc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Nov 2024 12:58:35 +0000 Subject: [PATCH 2084/2257] 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 b2d51db..456dda4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 2024110405+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-5-noble deb +jellyfin-ffmpeg7 7.0.2-6-noble deb jellyfin-server 2024110405+ubu2404 deb jellyfin-web 2024110405+ubu2404 deb jq 1.7.1-3build1 deb @@ -487,7 +487,7 @@ liblzma5 5.6.1+really5 libmd0 1.1.0-2build1 deb libmount1 2.39.3-9ubuntu6.1 deb libmp3lame0 3.100-6build1 deb -libmpg123-0t64 1.32.5-1ubuntu1 deb +libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb libnghttp2-14 1.59.0-1ubuntu0.1 deb From cde6776b6d5d3b82555667cb466ba0fd3054bad6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 16 Nov 2024 21:12:04 +0000 Subject: [PATCH 2085/2257] Bot Updating Package Versions --- package_versions.txt | 594 +++++++++++++++++++++---------------------- 1 file changed, 297 insertions(+), 297 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 93afce9..1e38be6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.2.0 dotnet -Audio Tools Library (ATL) for .NET 6.6.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.8.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -12,116 +12,116 @@ DiscUtils.Streams 0.16.13.55129 DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet -HarfBuzzSharp 7.3.0.2 dotnet +HarfBuzzSharp 7.3.0.3 dotnet ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.1 dotnet (+13 duplicates) +Jellyfin Server 10.10.2 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.1 dotnet -Jellyfin.Extensions.dll 10.10.1 dotnet +Jellyfin.Data.dll 10.10.2 dotnet +Jellyfin.Extensions.dll 10.10.2 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.1 dotnet +Jellyfin.Networking.dll 10.10.2 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authorization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Server 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Web 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Cors 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1024.46804 dotnet -Microsoft.AspNetCore.DataProtection 8.0.1024.46804 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Hosting 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Features 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Results 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Identity 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Localization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Metadata 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1024.46804 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.1024.46804 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Razor 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.1024.46804 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.1024.46804 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.1024.46804 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Rewrite 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Routing 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Session 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1024.46804 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.1024.46804 dotnet -Microsoft.AspNetCore.WebSockets 8.0.1024.46804 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.1024.46804 dotnet +Microsoft.AspNetCore 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authentication 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authorization 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Components 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Components.Server 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Components.Web 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Cors 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1124.52116 dotnet +Microsoft.AspNetCore.DataProtection 8.0.1124.52116 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1124.52116 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Hosting 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http.Features 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Http.Results 8.0.1124.52116 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.1124.52116 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.1124.52116 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Identity 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Localization 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Metadata 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1124.52116 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.1124.52116 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Razor 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.1124.52116 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.1124.52116 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.1124.52116 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Rewrite 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Routing 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1124.52116 dotnet +Microsoft.AspNetCore.Session 8.0.1124.52116 dotnet +Microsoft.AspNetCore.SignalR 8.0.1124.52116 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.1124.52116 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.1124.52116 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1124.52116 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.1124.52116 dotnet +Microsoft.AspNetCore.WebSockets 8.0.1124.52116 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.1124.52116 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.1024.46610 dotnet -Microsoft.Data.Sqlite 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.1024.46708 dotnet +Microsoft.CSharp 8.0.1124.51707 dotnet +Microsoft.Data.Sqlite 8.0.1124.52104 dotnet +Microsoft.EntityFrameworkCore 8.0.1124.52104 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.1124.52104 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.1124.52104 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.1124.52104 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.Caching.Memory 8.0.1024.46610 dotnet Microsoft.Extensions.Configuration 8.0.23.53103 dotnet @@ -131,52 +131,52 @@ Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.1024.46804 dotnet -Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.Json 8.0.1024.47404 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.1124.52116 dotnet +Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.47404 dotnet +Microsoft.Extensions.Configuration.Xml 8.0.1024.47404 dotnet Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.46610 dotnet Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet +Microsoft.Extensions.Diagnostics 8.0.1024.47404 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1024.46804 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1024.46804 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1024.46804 dotnet -Microsoft.Extensions.Features 8.0.1024.46804 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1124.52116 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1124.52116 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1124.52116 dotnet +Microsoft.Extensions.Features 8.0.1124.52116 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.1024.46804 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.1124.52116 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet -Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Hosting.Abstractions 8.0.1024.47404 dotnet Microsoft.Extensions.Http 8.0.1024.46610 dotnet -Microsoft.Extensions.Identity.Core 8.0.1024.46804 dotnet -Microsoft.Extensions.Identity.Stores 8.0.1024.46804 dotnet -Microsoft.Extensions.Localization 8.0.1024.46804 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.1024.46804 dotnet +Microsoft.Extensions.Identity.Core 8.0.1124.52116 dotnet +Microsoft.Extensions.Identity.Stores 8.0.1124.52116 dotnet +Microsoft.Extensions.Localization 8.0.1124.52116 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.1124.52116 dotnet Microsoft.Extensions.Logging 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.1024.47404 dotnet +Microsoft.Extensions.Logging.Configuration 8.0.1024.47404 dotnet +Microsoft.Extensions.Logging.Console 8.0.1024.47404 dotnet +Microsoft.Extensions.Logging.Debug 8.0.1024.47404 dotnet +Microsoft.Extensions.Logging.EventLog 8.0.1024.47404 dotnet +Microsoft.Extensions.Logging.EventSource 8.0.1024.47404 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet -Microsoft.Extensions.ObjectPool 8.0.1024.46804 dotnet +Microsoft.Extensions.ObjectPool 8.0.1124.52116 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.1024.46804 dotnet -Microsoft.JSInterop 8.0.1024.46804 dotnet -Microsoft.Net.Http.Headers 8.0.1024.46804 dotnet +Microsoft.Extensions.WebEncoders 8.0.1124.52116 dotnet +Microsoft.JSInterop 8.0.1124.52116 dotnet +Microsoft.Net.Http.Headers 8.0.1124.52116 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.1024.46610 dotnet -Microsoft.VisualBasic.Core 13.0.1024.46610 dotnet -Microsoft.Win32.Primitives 8.0.1024.46610 dotnet -Microsoft.Win32.Registry 8.0.1024.46610 dotnet +Microsoft.VisualBasic 8.0.1124.51707 dotnet +Microsoft.VisualBasic.Core 13.0.1124.51707 dotnet +Microsoft.Win32.Primitives 8.0.1124.51707 dotnet +Microsoft.Win32.Registry 8.0.1124.51707 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -200,8 +200,8 @@ Serilog.Sinks.File 6.0.0.0 Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -SkiaSharp 2.88.8.0 dotnet -SkiaSharp.HarfBuzz 2.88.8.0 dotnet +SkiaSharp 2.88.9.0 dotnet +SkiaSharp.HarfBuzz 2.88.9.0 dotnet Svg.Custom 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet Svg.Model 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet Svg.Skia 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet @@ -209,178 +209,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.1024.46610 dotnet -System.AppContext 8.0.1024.46610 dotnet -System.Buffers 8.0.1024.46610 dotnet -System.Collections 8.0.1024.46610 dotnet -System.Collections.Concurrent 8.0.1024.46610 dotnet -System.Collections.Immutable 8.0.1024.46610 dotnet -System.Collections.NonGeneric 8.0.1024.46610 dotnet -System.Collections.Specialized 8.0.1024.46610 dotnet -System.ComponentModel 8.0.1024.46610 dotnet -System.ComponentModel.Annotations 8.0.1024.46610 dotnet -System.ComponentModel.DataAnnotations 8.0.1024.46610 dotnet -System.ComponentModel.EventBasedAsync 8.0.1024.46610 dotnet -System.ComponentModel.Primitives 8.0.1024.46610 dotnet -System.ComponentModel.TypeConverter 8.0.1024.46610 dotnet -System.Configuration 8.0.1024.46610 dotnet -System.Console 8.0.1024.46610 dotnet -System.Core 8.0.1024.46610 dotnet -System.Data 8.0.1024.46610 dotnet -System.Data.Common 8.0.1024.46610 dotnet -System.Data.DataSetExtensions 8.0.1024.46610 dotnet -System.Diagnostics.Contracts 8.0.1024.46610 dotnet -System.Diagnostics.Debug 8.0.1024.46610 dotnet -System.Diagnostics.DiagnosticSource 8.0.1024.46610 dotnet -System.Diagnostics.EventLog 8.0.1024.46610 dotnet -System.Diagnostics.FileVersionInfo 8.0.1024.46610 dotnet -System.Diagnostics.Process 8.0.1024.46610 dotnet -System.Diagnostics.StackTrace 8.0.1024.46610 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.1024.46610 dotnet -System.Diagnostics.Tools 8.0.1024.46610 dotnet -System.Diagnostics.TraceSource 8.0.1024.46610 dotnet -System.Diagnostics.Tracing 8.0.1024.46610 dotnet -System.Drawing 8.0.1024.46610 dotnet +System 8.0.1124.51707 dotnet +System.AppContext 8.0.1124.51707 dotnet +System.Buffers 8.0.1124.51707 dotnet +System.Collections 8.0.1124.51707 dotnet +System.Collections.Concurrent 8.0.1124.51707 dotnet +System.Collections.Immutable 8.0.1124.51707 dotnet +System.Collections.NonGeneric 8.0.1124.51707 dotnet +System.Collections.Specialized 8.0.1124.51707 dotnet +System.ComponentModel 8.0.1124.51707 dotnet +System.ComponentModel.Annotations 8.0.1124.51707 dotnet +System.ComponentModel.DataAnnotations 8.0.1124.51707 dotnet +System.ComponentModel.EventBasedAsync 8.0.1124.51707 dotnet +System.ComponentModel.Primitives 8.0.1124.51707 dotnet +System.ComponentModel.TypeConverter 8.0.1124.51707 dotnet +System.Configuration 8.0.1124.51707 dotnet +System.Console 8.0.1124.51707 dotnet +System.Core 8.0.1124.51707 dotnet +System.Data 8.0.1124.51707 dotnet +System.Data.Common 8.0.1124.51707 dotnet +System.Data.DataSetExtensions 8.0.1124.51707 dotnet +System.Diagnostics.Contracts 8.0.1124.51707 dotnet +System.Diagnostics.Debug 8.0.1124.51707 dotnet +System.Diagnostics.DiagnosticSource 8.0.1124.51707 dotnet +System.Diagnostics.EventLog 8.0.1024.47404 dotnet +System.Diagnostics.FileVersionInfo 8.0.1124.51707 dotnet +System.Diagnostics.Process 8.0.1124.51707 dotnet +System.Diagnostics.StackTrace 8.0.1124.51707 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.1124.51707 dotnet +System.Diagnostics.Tools 8.0.1124.51707 dotnet +System.Diagnostics.TraceSource 8.0.1124.51707 dotnet +System.Diagnostics.Tracing 8.0.1124.51707 dotnet +System.Drawing 8.0.1124.51707 dotnet System.Drawing.Common 8.0.824.36606 dotnet -System.Drawing.Primitives 8.0.1024.46610 dotnet -System.Dynamic.Runtime 8.0.1024.46610 dotnet -System.Formats.Asn1 8.0.1024.46610 dotnet -System.Formats.Tar 8.0.1024.46610 dotnet -System.Globalization 8.0.1024.46610 dotnet -System.Globalization.Calendars 8.0.1024.46610 dotnet -System.Globalization.Extensions 8.0.1024.46610 dotnet -System.IO 8.0.1024.46610 dotnet -System.IO.Compression 8.0.1024.46610 dotnet -System.IO.Compression.Brotli 8.0.1024.46610 dotnet -System.IO.Compression.FileSystem 8.0.1024.46610 dotnet -System.IO.Compression.ZipFile 8.0.1024.46610 dotnet -System.IO.FileSystem 8.0.1024.46610 dotnet -System.IO.FileSystem.AccessControl 8.0.1024.46610 dotnet -System.IO.FileSystem.DriveInfo 8.0.1024.46610 dotnet -System.IO.FileSystem.Primitives 8.0.1024.46610 dotnet -System.IO.FileSystem.Watcher 8.0.1024.46610 dotnet -System.IO.IsolatedStorage 8.0.1024.46610 dotnet -System.IO.MemoryMappedFiles 8.0.1024.46610 dotnet +System.Drawing.Primitives 8.0.1124.51707 dotnet +System.Dynamic.Runtime 8.0.1124.51707 dotnet +System.Formats.Asn1 8.0.1124.51707 dotnet +System.Formats.Tar 8.0.1124.51707 dotnet +System.Globalization 8.0.1124.51707 dotnet +System.Globalization.Calendars 8.0.1124.51707 dotnet +System.Globalization.Extensions 8.0.1124.51707 dotnet +System.IO 8.0.1124.51707 dotnet +System.IO.Compression 8.0.1124.51707 dotnet +System.IO.Compression.Brotli 8.0.1124.51707 dotnet +System.IO.Compression.FileSystem 8.0.1124.51707 dotnet +System.IO.Compression.ZipFile 8.0.1124.51707 dotnet +System.IO.FileSystem 8.0.1124.51707 dotnet +System.IO.FileSystem.AccessControl 8.0.1124.51707 dotnet +System.IO.FileSystem.DriveInfo 8.0.1124.51707 dotnet +System.IO.FileSystem.Primitives 8.0.1124.51707 dotnet +System.IO.FileSystem.Watcher 8.0.1124.51707 dotnet +System.IO.IsolatedStorage 8.0.1124.51707 dotnet +System.IO.MemoryMappedFiles 8.0.1124.51707 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.1024.46610 dotnet -System.IO.Pipes.AccessControl 8.0.1024.46610 dotnet -System.IO.UnmanagedMemoryStream 8.0.1024.46610 dotnet -System.Linq 8.0.1024.46610 dotnet +System.IO.Pipes 8.0.1124.51707 dotnet +System.IO.Pipes.AccessControl 8.0.1124.51707 dotnet +System.IO.UnmanagedMemoryStream 8.0.1124.51707 dotnet +System.Linq 8.0.1124.51707 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.1024.46610 dotnet -System.Linq.Parallel 8.0.1024.46610 dotnet -System.Linq.Queryable 8.0.1024.46610 dotnet -System.Memory 8.0.1024.46610 dotnet -System.Net 8.0.1024.46610 dotnet -System.Net.Http 8.0.1024.46610 dotnet -System.Net.Http.Json 8.0.1024.46610 dotnet -System.Net.HttpListener 8.0.1024.46610 dotnet -System.Net.Mail 8.0.1024.46610 dotnet -System.Net.NameResolution 8.0.1024.46610 dotnet -System.Net.NetworkInformation 8.0.1024.46610 dotnet -System.Net.Ping 8.0.1024.46610 dotnet -System.Net.Primitives 8.0.1024.46610 dotnet -System.Net.Quic 8.0.1024.46610 dotnet -System.Net.Requests 8.0.1024.46610 dotnet -System.Net.Security 8.0.1024.46610 dotnet -System.Net.ServicePoint 8.0.1024.46610 dotnet -System.Net.Sockets 8.0.1024.46610 dotnet -System.Net.WebClient 8.0.1024.46610 dotnet -System.Net.WebHeaderCollection 8.0.1024.46610 dotnet -System.Net.WebProxy 8.0.1024.46610 dotnet -System.Net.WebSockets 8.0.1024.46610 dotnet -System.Net.WebSockets.Client 8.0.1024.46610 dotnet -System.Numerics 8.0.1024.46610 dotnet -System.Numerics.Vectors 8.0.1024.46610 dotnet -System.ObjectModel 8.0.1024.46610 dotnet -System.Private.CoreLib 8.0.1024.46610 dotnet -System.Private.DataContractSerialization 8.0.1024.46610 dotnet -System.Private.Uri 8.0.1024.46610 dotnet -System.Private.Xml 8.0.1024.46610 dotnet -System.Private.Xml.Linq 8.0.1024.46610 dotnet -System.Reflection 8.0.1024.46610 dotnet -System.Reflection.DispatchProxy 8.0.1024.46610 dotnet -System.Reflection.Emit 8.0.1024.46610 dotnet -System.Reflection.Emit.ILGeneration 8.0.1024.46610 dotnet -System.Reflection.Emit.Lightweight 8.0.1024.46610 dotnet -System.Reflection.Extensions 8.0.1024.46610 dotnet -System.Reflection.Metadata 8.0.1024.46610 dotnet -System.Reflection.Primitives 8.0.1024.46610 dotnet -System.Reflection.TypeExtensions 8.0.1024.46610 dotnet -System.Resources.Reader 8.0.1024.46610 dotnet -System.Resources.ResourceManager 8.0.1024.46610 dotnet -System.Resources.Writer 8.0.1024.46610 dotnet -System.Runtime 8.0.1024.46610 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.1024.46610 dotnet -System.Runtime.CompilerServices.VisualC 8.0.1024.46610 dotnet -System.Runtime.Extensions 8.0.1024.46610 dotnet -System.Runtime.Handles 8.0.1024.46610 dotnet -System.Runtime.InteropServices 8.0.1024.46610 dotnet -System.Runtime.InteropServices.JavaScript 8.0.1024.46610 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.1024.46610 dotnet -System.Runtime.Intrinsics 8.0.1024.46610 dotnet -System.Runtime.Loader 8.0.1024.46610 dotnet -System.Runtime.Numerics 8.0.1024.46610 dotnet -System.Runtime.Serialization 8.0.1024.46610 dotnet -System.Runtime.Serialization.Formatters 8.0.1024.46610 dotnet -System.Runtime.Serialization.Json 8.0.1024.46610 dotnet -System.Runtime.Serialization.Primitives 8.0.1024.46610 dotnet -System.Runtime.Serialization.Xml 8.0.1024.46610 dotnet -System.Security 8.0.1024.46610 dotnet -System.Security.AccessControl 8.0.1024.46610 dotnet -System.Security.Claims 8.0.1024.46610 dotnet -System.Security.Cryptography 8.0.1024.46610 dotnet -System.Security.Cryptography.Algorithms 8.0.1024.46610 dotnet -System.Security.Cryptography.Cng 8.0.1024.46610 dotnet -System.Security.Cryptography.Csp 8.0.1024.46610 dotnet -System.Security.Cryptography.Encoding 8.0.1024.46610 dotnet -System.Security.Cryptography.OpenSsl 8.0.1024.46610 dotnet +System.Linq.Expressions 8.0.1124.51707 dotnet +System.Linq.Parallel 8.0.1124.51707 dotnet +System.Linq.Queryable 8.0.1124.51707 dotnet +System.Memory 8.0.1124.51707 dotnet +System.Net 8.0.1124.51707 dotnet +System.Net.Http 8.0.1124.51707 dotnet +System.Net.Http.Json 8.0.1124.51707 dotnet +System.Net.HttpListener 8.0.1124.51707 dotnet +System.Net.Mail 8.0.1124.51707 dotnet +System.Net.NameResolution 8.0.1124.51707 dotnet +System.Net.NetworkInformation 8.0.1124.51707 dotnet +System.Net.Ping 8.0.1124.51707 dotnet +System.Net.Primitives 8.0.1124.51707 dotnet +System.Net.Quic 8.0.1124.51707 dotnet +System.Net.Requests 8.0.1124.51707 dotnet +System.Net.Security 8.0.1124.51707 dotnet +System.Net.ServicePoint 8.0.1124.51707 dotnet +System.Net.Sockets 8.0.1124.51707 dotnet +System.Net.WebClient 8.0.1124.51707 dotnet +System.Net.WebHeaderCollection 8.0.1124.51707 dotnet +System.Net.WebProxy 8.0.1124.51707 dotnet +System.Net.WebSockets 8.0.1124.51707 dotnet +System.Net.WebSockets.Client 8.0.1124.51707 dotnet +System.Numerics 8.0.1124.51707 dotnet +System.Numerics.Vectors 8.0.1124.51707 dotnet +System.ObjectModel 8.0.1124.51707 dotnet +System.Private.CoreLib 8.0.1124.51707 dotnet +System.Private.DataContractSerialization 8.0.1124.51707 dotnet +System.Private.Uri 8.0.1124.51707 dotnet +System.Private.Xml 8.0.1124.51707 dotnet +System.Private.Xml.Linq 8.0.1124.51707 dotnet +System.Reflection 8.0.1124.51707 dotnet +System.Reflection.DispatchProxy 8.0.1124.51707 dotnet +System.Reflection.Emit 8.0.1124.51707 dotnet +System.Reflection.Emit.ILGeneration 8.0.1124.51707 dotnet +System.Reflection.Emit.Lightweight 8.0.1124.51707 dotnet +System.Reflection.Extensions 8.0.1124.51707 dotnet +System.Reflection.Metadata 8.0.1124.51707 dotnet +System.Reflection.Primitives 8.0.1124.51707 dotnet +System.Reflection.TypeExtensions 8.0.1124.51707 dotnet +System.Resources.Reader 8.0.1124.51707 dotnet +System.Resources.ResourceManager 8.0.1124.51707 dotnet +System.Resources.Writer 8.0.1124.51707 dotnet +System.Runtime 8.0.1124.51707 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.1124.51707 dotnet +System.Runtime.CompilerServices.VisualC 8.0.1124.51707 dotnet +System.Runtime.Extensions 8.0.1124.51707 dotnet +System.Runtime.Handles 8.0.1124.51707 dotnet +System.Runtime.InteropServices 8.0.1124.51707 dotnet +System.Runtime.InteropServices.JavaScript 8.0.1124.51707 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.1124.51707 dotnet +System.Runtime.Intrinsics 8.0.1124.51707 dotnet +System.Runtime.Loader 8.0.1124.51707 dotnet +System.Runtime.Numerics 8.0.1124.51707 dotnet +System.Runtime.Serialization 8.0.1124.51707 dotnet +System.Runtime.Serialization.Formatters 8.0.1124.51707 dotnet +System.Runtime.Serialization.Json 8.0.1124.51707 dotnet +System.Runtime.Serialization.Primitives 8.0.1124.51707 dotnet +System.Runtime.Serialization.Xml 8.0.1124.51707 dotnet +System.Security 8.0.1124.51707 dotnet +System.Security.AccessControl 8.0.1124.51707 dotnet +System.Security.Claims 8.0.1124.51707 dotnet +System.Security.Cryptography 8.0.1124.51707 dotnet +System.Security.Cryptography.Algorithms 8.0.1124.51707 dotnet +System.Security.Cryptography.Cng 8.0.1124.51707 dotnet +System.Security.Cryptography.Csp 8.0.1124.51707 dotnet +System.Security.Cryptography.Encoding 8.0.1124.51707 dotnet +System.Security.Cryptography.OpenSsl 8.0.1124.51707 dotnet System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet -System.Security.Cryptography.Primitives 8.0.1024.46610 dotnet -System.Security.Cryptography.X509Certificates 8.0.1024.46610 dotnet +System.Security.Cryptography.Primitives 8.0.1124.51707 dotnet +System.Security.Cryptography.X509Certificates 8.0.1124.51707 dotnet System.Security.Cryptography.Xml 8.0.1024.46610 dotnet -System.Security.Principal 8.0.1024.46610 dotnet -System.Security.Principal.Windows 8.0.1024.46610 dotnet -System.Security.SecureString 8.0.1024.46610 dotnet -System.ServiceModel.Web 8.0.1024.46610 dotnet -System.ServiceProcess 8.0.1024.46610 dotnet -System.Text.Encoding 8.0.1024.46610 dotnet -System.Text.Encoding.CodePages 8.0.1024.46610 dotnet -System.Text.Encoding.Extensions 8.0.1024.46610 dotnet -System.Text.Encodings.Web 8.0.1024.46610 dotnet -System.Text.Json 8.0.1024.46610 dotnet -System.Text.RegularExpressions 8.0.1024.46610 dotnet -System.Threading 8.0.1024.46610 dotnet -System.Threading.Channels 8.0.1024.46610 dotnet -System.Threading.Overlapped 8.0.1024.46610 dotnet +System.Security.Principal 8.0.1124.51707 dotnet +System.Security.Principal.Windows 8.0.1124.51707 dotnet +System.Security.SecureString 8.0.1124.51707 dotnet +System.ServiceModel.Web 8.0.1124.51707 dotnet +System.ServiceProcess 8.0.1124.51707 dotnet +System.Text.Encoding 8.0.1124.51707 dotnet +System.Text.Encoding.CodePages 8.0.1124.51707 dotnet +System.Text.Encoding.Extensions 8.0.1124.51707 dotnet +System.Text.Encodings.Web 8.0.1124.51707 dotnet +System.Text.Json 8.0.1124.51707 dotnet +System.Text.RegularExpressions 8.0.1124.51707 dotnet +System.Threading 8.0.1124.51707 dotnet +System.Threading.Channels 8.0.1124.51707 dotnet +System.Threading.Overlapped 8.0.1124.51707 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.1024.46610 dotnet -System.Threading.Tasks.Dataflow 8.0.1024.46610 dotnet -System.Threading.Tasks.Extensions 8.0.1024.46610 dotnet -System.Threading.Tasks.Parallel 8.0.1024.46610 dotnet -System.Threading.Thread 8.0.1024.46610 dotnet -System.Threading.ThreadPool 8.0.1024.46610 dotnet -System.Threading.Timer 8.0.1024.46610 dotnet -System.Transactions 8.0.1024.46610 dotnet -System.Transactions.Local 8.0.1024.46610 dotnet -System.ValueTuple 8.0.1024.46610 dotnet -System.Web 8.0.1024.46610 dotnet -System.Web.HttpUtility 8.0.1024.46610 dotnet -System.Windows 8.0.1024.46610 dotnet -System.Xml 8.0.1024.46610 dotnet -System.Xml.Linq 8.0.1024.46610 dotnet -System.Xml.ReaderWriter 8.0.1024.46610 dotnet -System.Xml.Serialization 8.0.1024.46610 dotnet -System.Xml.XDocument 8.0.1024.46610 dotnet -System.Xml.XPath 8.0.1024.46610 dotnet -System.Xml.XPath.XDocument 8.0.1024.46610 dotnet -System.Xml.XmlDocument 8.0.1024.46610 dotnet -System.Xml.XmlSerializer 8.0.1024.46610 dotnet +System.Threading.Tasks 8.0.1124.51707 dotnet +System.Threading.Tasks.Dataflow 8.0.1124.51707 dotnet +System.Threading.Tasks.Extensions 8.0.1124.51707 dotnet +System.Threading.Tasks.Parallel 8.0.1124.51707 dotnet +System.Threading.Thread 8.0.1124.51707 dotnet +System.Threading.ThreadPool 8.0.1124.51707 dotnet +System.Threading.Timer 8.0.1124.51707 dotnet +System.Transactions 8.0.1124.51707 dotnet +System.Transactions.Local 8.0.1124.51707 dotnet +System.ValueTuple 8.0.1124.51707 dotnet +System.Web 8.0.1124.51707 dotnet +System.Web.HttpUtility 8.0.1124.51707 dotnet +System.Windows 8.0.1124.51707 dotnet +System.Xml 8.0.1124.51707 dotnet +System.Xml.Linq 8.0.1124.51707 dotnet +System.Xml.ReaderWriter 8.0.1124.51707 dotnet +System.Xml.Serialization 8.0.1124.51707 dotnet +System.Xml.XDocument 8.0.1124.51707 dotnet +System.Xml.XPath 8.0.1124.51707 dotnet +System.Xml.XPath.XDocument 8.0.1124.51707 dotnet +System.Xml.XmlDocument 8.0.1124.51707 dotnet +System.Xml.XmlSerializer 8.0.1124.51707 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.1024.46610 dotnet +WindowsBase 8.0.1124.51707 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.1+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-6-noble deb -jellyfin-server 10.10.1+ubu2404 deb -jellyfin-web 10.10.1+ubu2404 deb +jellyfin 10.10.2+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-7-noble deb +jellyfin-server 10.10.2+ubu2404 deb +jellyfin-web 10.10.2+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -568,11 +568,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.2 deb mount 2.39.3-9ubuntu6.1 deb -mscorlib 8.0.1024.46610 dotnet +mscorlib 8.0.1124.51707 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.1024.46610 dotnet +netstandard 8.0.1124.51707 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb From 132af6b94055b2d5362ce91260b327222b1f6f9e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Nov 2024 04:17:38 +0000 Subject: [PATCH 2086/2257] 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 1e38be6..5210cab 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,14 +16,14 @@ HarfBuzzSharp 7.3.0.3 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.2 dotnet (+13 duplicates) +Jellyfin Server 10.10.3 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.2 dotnet -Jellyfin.Extensions.dll 10.10.2 dotnet +Jellyfin.Data.dll 10.10.3 dotnet +Jellyfin.Extensions.dll 10.10.3 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.2 dotnet +Jellyfin.Networking.dll 10.10.3 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.2+ubu2404 deb +jellyfin 10.10.3+ubu2404 deb jellyfin-ffmpeg7 7.0.2-7-noble deb -jellyfin-server 10.10.2+ubu2404 deb -jellyfin-web 10.10.2+ubu2404 deb +jellyfin-server 10.10.3+ubu2404 deb +jellyfin-web 10.10.3+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 1ff63ee657194c953c47587f96c076154ec16cf6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Nov 2024 12:56:13 +0000 Subject: [PATCH 2087/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 456dda4..5fd6fc5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 2024110405+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-6-noble deb +jellyfin-ffmpeg7 7.0.2-7-noble deb jellyfin-server 2024110405+ubu2404 deb jellyfin-web 2024110405+ubu2404 deb jq 1.7.1-3build1 deb From 64481b284da62c907e0d03e3152c8200b80fc125 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Nov 2024 08:19:09 +0000 Subject: [PATCH 2088/2257] Bot Updating Package Versions --- package_versions.txt | 651 ++++++++++++++++++++++--------------------- 1 file changed, 326 insertions(+), 325 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5fd6fc5..bbe1c55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE -AsyncKeyedLock 7.0.2.0 dotnet -Audio Tools Library (ATL) for .NET 6.7.0.0 dotnet +AsyncKeyedLock 7.1.4.0 dotnet +Audio Tools Library (ATL) for .NET 6.8.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -12,7 +12,7 @@ DiscUtils.Streams 0.16.13.55129 DiscUtils.Udf 0.16.13.55129 dotnet DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet -HarfBuzzSharp 7.3.0.2 dotnet +HarfBuzzSharp 7.3.0.3 dotnet ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet @@ -29,163 +29,164 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authorization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Server 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Components.Web 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Cors 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1024.46804 dotnet -Microsoft.AspNetCore.DataProtection 8.0.1024.46804 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Hosting 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Features 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Http.Results 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.1024.46804 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Identity 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Localization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Metadata 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1024.46804 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.1024.46804 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Razor 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.1024.46804 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.1024.46804 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.1024.46804 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Rewrite 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Routing 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1024.46804 dotnet -Microsoft.AspNetCore.Session 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.1024.46804 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1024.46804 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.1024.46804 dotnet -Microsoft.AspNetCore.WebSockets 8.0.1024.46804 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.1024.46804 dotnet +Microsoft.AspNetCore 9.0.24.52903 dotnet +Microsoft.AspNetCore.Antiforgery 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authentication 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authentication.Cookies 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authentication.Core 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authentication.OAuth 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authorization 9.0.24.52903 dotnet +Microsoft.AspNetCore.Authorization.Policy 9.0.24.52903 dotnet +Microsoft.AspNetCore.Components 9.0.24.52903 dotnet +Microsoft.AspNetCore.Components.Authorization 9.0.24.52903 dotnet +Microsoft.AspNetCore.Components.Endpoints 9.0.24.52903 dotnet +Microsoft.AspNetCore.Components.Forms 9.0.24.52903 dotnet +Microsoft.AspNetCore.Components.Server 9.0.24.52903 dotnet +Microsoft.AspNetCore.Components.Web 9.0.24.52903 dotnet +Microsoft.AspNetCore.Connections.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.CookiePolicy 9.0.24.52903 dotnet +Microsoft.AspNetCore.Cors 9.0.24.52903 dotnet +Microsoft.AspNetCore.Cryptography.Internal 9.0.24.52903 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.24.52903 dotnet +Microsoft.AspNetCore.DataProtection 9.0.24.52903 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Diagnostics 9.0.24.52903 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.24.52903 dotnet +Microsoft.AspNetCore.HostFiltering 9.0.24.52903 dotnet +Microsoft.AspNetCore.Hosting 9.0.24.52903 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Html.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http.Connections 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http.Connections.Common 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http.Extensions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http.Features 9.0.24.52903 dotnet +Microsoft.AspNetCore.Http.Results 9.0.24.52903 dotnet +Microsoft.AspNetCore.HttpLogging 9.0.24.52903 dotnet +Microsoft.AspNetCore.HttpOverrides 9.0.24.52903 dotnet +Microsoft.AspNetCore.HttpsPolicy 9.0.24.52903 dotnet +Microsoft.AspNetCore.Identity 9.0.24.52903 dotnet +Microsoft.AspNetCore.Localization 9.0.24.52903 dotnet +Microsoft.AspNetCore.Localization.Routing 9.0.24.52903 dotnet +Microsoft.AspNetCore.Metadata 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Core 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Cors 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Localization 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.Razor 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 9.0.24.52903 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.24.52903 dotnet +Microsoft.AspNetCore.OutputCaching 9.0.24.52903 dotnet +Microsoft.AspNetCore.RateLimiting 9.0.24.52903 dotnet +Microsoft.AspNetCore.Razor 9.0.24.52903 dotnet +Microsoft.AspNetCore.Razor.Runtime 9.0.24.52903 dotnet +Microsoft.AspNetCore.RequestDecompression 9.0.24.52903 dotnet +Microsoft.AspNetCore.ResponseCaching 9.0.24.52903 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.ResponseCompression 9.0.24.52903 dotnet +Microsoft.AspNetCore.Rewrite 9.0.24.52903 dotnet +Microsoft.AspNetCore.Routing 9.0.24.52903 dotnet +Microsoft.AspNetCore.Routing.Abstractions 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.HttpSys 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.IIS 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.IISIntegration 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.Kestrel 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.24.52903 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.24.52903 dotnet +Microsoft.AspNetCore.Session 9.0.24.52903 dotnet +Microsoft.AspNetCore.SignalR 9.0.24.52903 dotnet +Microsoft.AspNetCore.SignalR.Common 9.0.24.52903 dotnet +Microsoft.AspNetCore.SignalR.Core 9.0.24.52903 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.24.52903 dotnet +Microsoft.AspNetCore.StaticAssets 9.0.24.52903 dotnet +Microsoft.AspNetCore.StaticFiles 9.0.24.52903 dotnet +Microsoft.AspNetCore.WebSockets 9.0.24.52903 dotnet +Microsoft.AspNetCore.WebUtilities 9.0.24.52903 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.1024.46610 dotnet -Microsoft.Data.Sqlite 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.1024.46708 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.1024.46708 dotnet -Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Caching.Memory 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Binder 8.0.724.31311 dotnet -Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet -Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.1024.46804 dotnet -Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet -Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1024.46804 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1024.46804 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1024.46804 dotnet -Microsoft.Extensions.Features 8.0.1024.46804 dotnet -Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.1024.46804 dotnet -Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet -Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet -Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet -Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Http 8.0.1024.46610 dotnet -Microsoft.Extensions.Identity.Core 8.0.1024.46804 dotnet -Microsoft.Extensions.Identity.Stores 8.0.1024.46804 dotnet -Microsoft.Extensions.Localization 8.0.1024.46804 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.1024.46804 dotnet -Microsoft.Extensions.Logging 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet -Microsoft.Extensions.ObjectPool 8.0.1024.46804 dotnet -Microsoft.Extensions.Options 8.0.224.6711 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet -Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet -Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.1024.46804 dotnet -Microsoft.JSInterop 8.0.1024.46804 dotnet -Microsoft.Net.Http.Headers 8.0.1024.46804 dotnet +Microsoft.CSharp 9.0.24.52809 dotnet +Microsoft.Data.Sqlite 9.0.24.52902 dotnet +Microsoft.EntityFrameworkCore 9.0.24.52902 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.24.52902 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.24.52902 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.24.52902 dotnet +Microsoft.Extensions.Caching.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.Caching.Memory 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.Binder 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.CommandLine 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.FileExtensions 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.Ini 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.Json 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 9.0.24.52903 dotnet +Microsoft.Extensions.Configuration.UserSecrets 9.0.24.52809 dotnet +Microsoft.Extensions.Configuration.Xml 9.0.24.52809 dotnet +Microsoft.Extensions.DependencyInjection 9.0.24.52809 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.DependencyModel 9.0.24.52809 dotnet +Microsoft.Extensions.Diagnostics 9.0.24.52809 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 9.0.24.52903 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.24.52903 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.24.52903 dotnet +Microsoft.Extensions.Features 9.0.24.52903 dotnet +Microsoft.Extensions.FileProviders.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.FileProviders.Composite 9.0.24.52809 dotnet +Microsoft.Extensions.FileProviders.Embedded 9.0.24.52903 dotnet +Microsoft.Extensions.FileProviders.Physical 9.0.24.52809 dotnet +Microsoft.Extensions.FileSystemGlobbing 9.0.24.52809 dotnet +Microsoft.Extensions.Hosting 9.0.24.52809 dotnet +Microsoft.Extensions.Hosting.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.Http 9.0.24.52809 dotnet +Microsoft.Extensions.Identity.Core 9.0.24.52903 dotnet +Microsoft.Extensions.Identity.Stores 9.0.24.52903 dotnet +Microsoft.Extensions.Localization 9.0.24.52903 dotnet +Microsoft.Extensions.Localization.Abstractions 9.0.24.52903 dotnet +Microsoft.Extensions.Logging 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.Abstractions 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.Configuration 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.Console 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.Debug 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.EventLog 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.EventSource 9.0.24.52809 dotnet +Microsoft.Extensions.Logging.TraceSource 9.0.24.52809 dotnet +Microsoft.Extensions.ObjectPool 9.0.24.52903 dotnet +Microsoft.Extensions.Options 9.0.24.52809 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 9.0.24.52809 dotnet +Microsoft.Extensions.Options.DataAnnotations 9.0.24.52809 dotnet +Microsoft.Extensions.Primitives 9.0.24.52809 dotnet +Microsoft.Extensions.WebEncoders 9.0.24.52903 dotnet +Microsoft.JSInterop 9.0.24.52903 dotnet +Microsoft.Net.Http.Headers 9.0.24.52903 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.1024.46610 dotnet -Microsoft.VisualBasic.Core 13.0.1024.46610 dotnet -Microsoft.Win32.Primitives 8.0.1024.46610 dotnet -Microsoft.Win32.Registry 8.0.1024.46610 dotnet +Microsoft.VisualBasic 9.0.24.52809 dotnet +Microsoft.VisualBasic.Core 14.0.24.52809 dotnet +Microsoft.Win32.Primitives 9.0.24.52809 dotnet +Microsoft.Win32.Registry 9.0.24.52809 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet Prometheus.AspNetCore.dll 8.2.1 dotnet Prometheus.NetStandard.dll 8.2.1 dotnet -SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet -SQLitePCLRaw.core 2.1.6.2060 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet +SQLitePCLRaw.batteries_v2 2.1.10.2445 dotnet +SQLitePCLRaw.core 2.1.10.2445 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.10.2445 dotnet Serilog 4.1.0.0 dotnet Serilog.AspNetCore 8.0.3.0 dotnet Serilog.Enrichers.Thread 4.0.0.0 dotnet @@ -200,8 +201,8 @@ Serilog.Sinks.File 6.0.0.0 Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet ShimSkiaSharp 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet -SkiaSharp 2.88.8.0 dotnet -SkiaSharp.HarfBuzz 2.88.8.0 dotnet +SkiaSharp 2.88.9.0 dotnet +SkiaSharp.HarfBuzz 2.88.9.0 dotnet Svg.Custom 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet Svg.Model 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet Svg.Skia 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet @@ -209,178 +210,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.1024.46610 dotnet -System.AppContext 8.0.1024.46610 dotnet -System.Buffers 8.0.1024.46610 dotnet -System.Collections 8.0.1024.46610 dotnet -System.Collections.Concurrent 8.0.1024.46610 dotnet -System.Collections.Immutable 8.0.1024.46610 dotnet -System.Collections.NonGeneric 8.0.1024.46610 dotnet -System.Collections.Specialized 8.0.1024.46610 dotnet -System.ComponentModel 8.0.1024.46610 dotnet -System.ComponentModel.Annotations 8.0.1024.46610 dotnet -System.ComponentModel.DataAnnotations 8.0.1024.46610 dotnet -System.ComponentModel.EventBasedAsync 8.0.1024.46610 dotnet -System.ComponentModel.Primitives 8.0.1024.46610 dotnet -System.ComponentModel.TypeConverter 8.0.1024.46610 dotnet -System.Configuration 8.0.1024.46610 dotnet -System.Console 8.0.1024.46610 dotnet -System.Core 8.0.1024.46610 dotnet -System.Data 8.0.1024.46610 dotnet -System.Data.Common 8.0.1024.46610 dotnet -System.Data.DataSetExtensions 8.0.1024.46610 dotnet -System.Diagnostics.Contracts 8.0.1024.46610 dotnet -System.Diagnostics.Debug 8.0.1024.46610 dotnet -System.Diagnostics.DiagnosticSource 8.0.1024.46610 dotnet -System.Diagnostics.EventLog 8.0.1024.46610 dotnet -System.Diagnostics.FileVersionInfo 8.0.1024.46610 dotnet -System.Diagnostics.Process 8.0.1024.46610 dotnet -System.Diagnostics.StackTrace 8.0.1024.46610 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.1024.46610 dotnet -System.Diagnostics.Tools 8.0.1024.46610 dotnet -System.Diagnostics.TraceSource 8.0.1024.46610 dotnet -System.Diagnostics.Tracing 8.0.1024.46610 dotnet -System.Drawing 8.0.1024.46610 dotnet +System 9.0.24.52809 dotnet +System.AppContext 9.0.24.52809 dotnet +System.Buffers 9.0.24.52809 dotnet +System.Collections 9.0.24.52809 dotnet +System.Collections.Concurrent 9.0.24.52809 dotnet +System.Collections.Immutable 9.0.24.52809 dotnet +System.Collections.NonGeneric 9.0.24.52809 dotnet +System.Collections.Specialized 9.0.24.52809 dotnet +System.ComponentModel 9.0.24.52809 dotnet +System.ComponentModel.Annotations 9.0.24.52809 dotnet +System.ComponentModel.DataAnnotations 9.0.24.52809 dotnet +System.ComponentModel.EventBasedAsync 9.0.24.52809 dotnet +System.ComponentModel.Primitives 9.0.24.52809 dotnet +System.ComponentModel.TypeConverter 9.0.24.52809 dotnet +System.Configuration 9.0.24.52809 dotnet +System.Console 9.0.24.52809 dotnet +System.Core 9.0.24.52809 dotnet +System.Data 9.0.24.52809 dotnet +System.Data.Common 9.0.24.52809 dotnet +System.Data.DataSetExtensions 9.0.24.52809 dotnet +System.Diagnostics.Contracts 9.0.24.52809 dotnet +System.Diagnostics.Debug 9.0.24.52809 dotnet +System.Diagnostics.DiagnosticSource 9.0.24.52809 dotnet +System.Diagnostics.EventLog 9.0.24.52809 dotnet +System.Diagnostics.FileVersionInfo 9.0.24.52809 dotnet +System.Diagnostics.Process 9.0.24.52809 dotnet +System.Diagnostics.StackTrace 9.0.24.52809 dotnet +System.Diagnostics.TextWriterTraceListener 9.0.24.52809 dotnet +System.Diagnostics.Tools 9.0.24.52809 dotnet +System.Diagnostics.TraceSource 9.0.24.52809 dotnet +System.Diagnostics.Tracing 9.0.24.52809 dotnet +System.Drawing 9.0.24.52809 dotnet System.Drawing.Common 8.0.824.36606 dotnet -System.Drawing.Primitives 8.0.1024.46610 dotnet -System.Dynamic.Runtime 8.0.1024.46610 dotnet -System.Formats.Asn1 8.0.1024.46610 dotnet -System.Formats.Tar 8.0.1024.46610 dotnet -System.Globalization 8.0.1024.46610 dotnet -System.Globalization.Calendars 8.0.1024.46610 dotnet -System.Globalization.Extensions 8.0.1024.46610 dotnet -System.IO 8.0.1024.46610 dotnet -System.IO.Compression 8.0.1024.46610 dotnet -System.IO.Compression.Brotli 8.0.1024.46610 dotnet -System.IO.Compression.FileSystem 8.0.1024.46610 dotnet -System.IO.Compression.ZipFile 8.0.1024.46610 dotnet -System.IO.FileSystem 8.0.1024.46610 dotnet -System.IO.FileSystem.AccessControl 8.0.1024.46610 dotnet -System.IO.FileSystem.DriveInfo 8.0.1024.46610 dotnet -System.IO.FileSystem.Primitives 8.0.1024.46610 dotnet -System.IO.FileSystem.Watcher 8.0.1024.46610 dotnet -System.IO.IsolatedStorage 8.0.1024.46610 dotnet -System.IO.MemoryMappedFiles 8.0.1024.46610 dotnet -System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.1024.46610 dotnet -System.IO.Pipes.AccessControl 8.0.1024.46610 dotnet -System.IO.UnmanagedMemoryStream 8.0.1024.46610 dotnet -System.Linq 8.0.1024.46610 dotnet +System.Drawing.Primitives 9.0.24.52809 dotnet +System.Dynamic.Runtime 9.0.24.52809 dotnet +System.Formats.Asn1 9.0.24.52809 dotnet +System.Formats.Tar 9.0.24.52809 dotnet +System.Globalization 9.0.24.52809 dotnet +System.Globalization.Calendars 9.0.24.52809 dotnet +System.Globalization.Extensions 9.0.24.52809 dotnet +System.IO 9.0.24.52809 dotnet +System.IO.Compression 9.0.24.52809 dotnet +System.IO.Compression.Brotli 9.0.24.52809 dotnet +System.IO.Compression.FileSystem 9.0.24.52809 dotnet +System.IO.Compression.ZipFile 9.0.24.52809 dotnet +System.IO.FileSystem 9.0.24.52809 dotnet +System.IO.FileSystem.AccessControl 9.0.24.52809 dotnet +System.IO.FileSystem.DriveInfo 9.0.24.52809 dotnet +System.IO.FileSystem.Primitives 9.0.24.52809 dotnet +System.IO.FileSystem.Watcher 9.0.24.52809 dotnet +System.IO.IsolatedStorage 9.0.24.52809 dotnet +System.IO.MemoryMappedFiles 9.0.24.52809 dotnet +System.IO.Pipelines 9.0.24.52809 dotnet +System.IO.Pipes 9.0.24.52809 dotnet +System.IO.Pipes.AccessControl 9.0.24.52809 dotnet +System.IO.UnmanagedMemoryStream 9.0.24.52809 dotnet +System.Linq 9.0.24.52809 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.1024.46610 dotnet -System.Linq.Parallel 8.0.1024.46610 dotnet -System.Linq.Queryable 8.0.1024.46610 dotnet -System.Memory 8.0.1024.46610 dotnet -System.Net 8.0.1024.46610 dotnet -System.Net.Http 8.0.1024.46610 dotnet -System.Net.Http.Json 8.0.1024.46610 dotnet -System.Net.HttpListener 8.0.1024.46610 dotnet -System.Net.Mail 8.0.1024.46610 dotnet -System.Net.NameResolution 8.0.1024.46610 dotnet -System.Net.NetworkInformation 8.0.1024.46610 dotnet -System.Net.Ping 8.0.1024.46610 dotnet -System.Net.Primitives 8.0.1024.46610 dotnet -System.Net.Quic 8.0.1024.46610 dotnet -System.Net.Requests 8.0.1024.46610 dotnet -System.Net.Security 8.0.1024.46610 dotnet -System.Net.ServicePoint 8.0.1024.46610 dotnet -System.Net.Sockets 8.0.1024.46610 dotnet -System.Net.WebClient 8.0.1024.46610 dotnet -System.Net.WebHeaderCollection 8.0.1024.46610 dotnet -System.Net.WebProxy 8.0.1024.46610 dotnet -System.Net.WebSockets 8.0.1024.46610 dotnet -System.Net.WebSockets.Client 8.0.1024.46610 dotnet -System.Numerics 8.0.1024.46610 dotnet -System.Numerics.Vectors 8.0.1024.46610 dotnet -System.ObjectModel 8.0.1024.46610 dotnet -System.Private.CoreLib 8.0.1024.46610 dotnet -System.Private.DataContractSerialization 8.0.1024.46610 dotnet -System.Private.Uri 8.0.1024.46610 dotnet -System.Private.Xml 8.0.1024.46610 dotnet -System.Private.Xml.Linq 8.0.1024.46610 dotnet -System.Reflection 8.0.1024.46610 dotnet -System.Reflection.DispatchProxy 8.0.1024.46610 dotnet -System.Reflection.Emit 8.0.1024.46610 dotnet -System.Reflection.Emit.ILGeneration 8.0.1024.46610 dotnet -System.Reflection.Emit.Lightweight 8.0.1024.46610 dotnet -System.Reflection.Extensions 8.0.1024.46610 dotnet -System.Reflection.Metadata 8.0.1024.46610 dotnet -System.Reflection.Primitives 8.0.1024.46610 dotnet -System.Reflection.TypeExtensions 8.0.1024.46610 dotnet -System.Resources.Reader 8.0.1024.46610 dotnet -System.Resources.ResourceManager 8.0.1024.46610 dotnet -System.Resources.Writer 8.0.1024.46610 dotnet -System.Runtime 8.0.1024.46610 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.1024.46610 dotnet -System.Runtime.CompilerServices.VisualC 8.0.1024.46610 dotnet -System.Runtime.Extensions 8.0.1024.46610 dotnet -System.Runtime.Handles 8.0.1024.46610 dotnet -System.Runtime.InteropServices 8.0.1024.46610 dotnet -System.Runtime.InteropServices.JavaScript 8.0.1024.46610 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.1024.46610 dotnet -System.Runtime.Intrinsics 8.0.1024.46610 dotnet -System.Runtime.Loader 8.0.1024.46610 dotnet -System.Runtime.Numerics 8.0.1024.46610 dotnet -System.Runtime.Serialization 8.0.1024.46610 dotnet -System.Runtime.Serialization.Formatters 8.0.1024.46610 dotnet -System.Runtime.Serialization.Json 8.0.1024.46610 dotnet -System.Runtime.Serialization.Primitives 8.0.1024.46610 dotnet -System.Runtime.Serialization.Xml 8.0.1024.46610 dotnet -System.Security 8.0.1024.46610 dotnet -System.Security.AccessControl 8.0.1024.46610 dotnet -System.Security.Claims 8.0.1024.46610 dotnet -System.Security.Cryptography 8.0.1024.46610 dotnet -System.Security.Cryptography.Algorithms 8.0.1024.46610 dotnet -System.Security.Cryptography.Cng 8.0.1024.46610 dotnet -System.Security.Cryptography.Csp 8.0.1024.46610 dotnet -System.Security.Cryptography.Encoding 8.0.1024.46610 dotnet -System.Security.Cryptography.OpenSsl 8.0.1024.46610 dotnet -System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet -System.Security.Cryptography.Primitives 8.0.1024.46610 dotnet -System.Security.Cryptography.X509Certificates 8.0.1024.46610 dotnet -System.Security.Cryptography.Xml 8.0.1024.46610 dotnet -System.Security.Principal 8.0.1024.46610 dotnet -System.Security.Principal.Windows 8.0.1024.46610 dotnet -System.Security.SecureString 8.0.1024.46610 dotnet -System.ServiceModel.Web 8.0.1024.46610 dotnet -System.ServiceProcess 8.0.1024.46610 dotnet -System.Text.Encoding 8.0.1024.46610 dotnet -System.Text.Encoding.CodePages 8.0.1024.46610 dotnet -System.Text.Encoding.Extensions 8.0.1024.46610 dotnet -System.Text.Encodings.Web 8.0.1024.46610 dotnet -System.Text.Json 8.0.1024.46610 dotnet -System.Text.RegularExpressions 8.0.1024.46610 dotnet -System.Threading 8.0.1024.46610 dotnet -System.Threading.Channels 8.0.1024.46610 dotnet -System.Threading.Overlapped 8.0.1024.46610 dotnet -System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.1024.46610 dotnet -System.Threading.Tasks.Dataflow 8.0.1024.46610 dotnet -System.Threading.Tasks.Extensions 8.0.1024.46610 dotnet -System.Threading.Tasks.Parallel 8.0.1024.46610 dotnet -System.Threading.Thread 8.0.1024.46610 dotnet -System.Threading.ThreadPool 8.0.1024.46610 dotnet -System.Threading.Timer 8.0.1024.46610 dotnet -System.Transactions 8.0.1024.46610 dotnet -System.Transactions.Local 8.0.1024.46610 dotnet -System.ValueTuple 8.0.1024.46610 dotnet -System.Web 8.0.1024.46610 dotnet -System.Web.HttpUtility 8.0.1024.46610 dotnet -System.Windows 8.0.1024.46610 dotnet -System.Xml 8.0.1024.46610 dotnet -System.Xml.Linq 8.0.1024.46610 dotnet -System.Xml.ReaderWriter 8.0.1024.46610 dotnet -System.Xml.Serialization 8.0.1024.46610 dotnet -System.Xml.XDocument 8.0.1024.46610 dotnet -System.Xml.XPath 8.0.1024.46610 dotnet -System.Xml.XPath.XDocument 8.0.1024.46610 dotnet -System.Xml.XmlDocument 8.0.1024.46610 dotnet -System.Xml.XmlSerializer 8.0.1024.46610 dotnet +System.Linq.Expressions 9.0.24.52809 dotnet +System.Linq.Parallel 9.0.24.52809 dotnet +System.Linq.Queryable 9.0.24.52809 dotnet +System.Memory 9.0.24.52809 dotnet +System.Net 9.0.24.52809 dotnet +System.Net.Http 9.0.24.52809 dotnet +System.Net.Http.Json 9.0.24.52809 dotnet +System.Net.HttpListener 9.0.24.52809 dotnet +System.Net.Mail 9.0.24.52809 dotnet +System.Net.NameResolution 9.0.24.52809 dotnet +System.Net.NetworkInformation 9.0.24.52809 dotnet +System.Net.Ping 9.0.24.52809 dotnet +System.Net.Primitives 9.0.24.52809 dotnet +System.Net.Quic 9.0.24.52809 dotnet +System.Net.Requests 9.0.24.52809 dotnet +System.Net.Security 9.0.24.52809 dotnet +System.Net.ServicePoint 9.0.24.52809 dotnet +System.Net.Sockets 9.0.24.52809 dotnet +System.Net.WebClient 9.0.24.52809 dotnet +System.Net.WebHeaderCollection 9.0.24.52809 dotnet +System.Net.WebProxy 9.0.24.52809 dotnet +System.Net.WebSockets 9.0.24.52809 dotnet +System.Net.WebSockets.Client 9.0.24.52809 dotnet +System.Numerics 9.0.24.52809 dotnet +System.Numerics.Vectors 9.0.24.52809 dotnet +System.ObjectModel 9.0.24.52809 dotnet +System.Private.CoreLib 9.0.24.52809 dotnet +System.Private.DataContractSerialization 9.0.24.52809 dotnet +System.Private.Uri 9.0.24.52809 dotnet +System.Private.Xml 9.0.24.52809 dotnet +System.Private.Xml.Linq 9.0.24.52809 dotnet +System.Reflection 9.0.24.52809 dotnet +System.Reflection.DispatchProxy 9.0.24.52809 dotnet +System.Reflection.Emit 9.0.24.52809 dotnet +System.Reflection.Emit.ILGeneration 9.0.24.52809 dotnet +System.Reflection.Emit.Lightweight 9.0.24.52809 dotnet +System.Reflection.Extensions 9.0.24.52809 dotnet +System.Reflection.Metadata 9.0.24.52809 dotnet +System.Reflection.Primitives 9.0.24.52809 dotnet +System.Reflection.TypeExtensions 9.0.24.52809 dotnet +System.Resources.Reader 9.0.24.52809 dotnet +System.Resources.ResourceManager 9.0.24.52809 dotnet +System.Resources.Writer 9.0.24.52809 dotnet +System.Runtime 9.0.24.52809 dotnet +System.Runtime.CompilerServices.Unsafe 9.0.24.52809 dotnet +System.Runtime.CompilerServices.VisualC 9.0.24.52809 dotnet +System.Runtime.Extensions 9.0.24.52809 dotnet +System.Runtime.Handles 9.0.24.52809 dotnet +System.Runtime.InteropServices 9.0.24.52809 dotnet +System.Runtime.InteropServices.JavaScript 9.0.24.52809 dotnet +System.Runtime.InteropServices.RuntimeInformation 9.0.24.52809 dotnet +System.Runtime.Intrinsics 9.0.24.52809 dotnet +System.Runtime.Loader 9.0.24.52809 dotnet +System.Runtime.Numerics 9.0.24.52809 dotnet +System.Runtime.Serialization 9.0.24.52809 dotnet +System.Runtime.Serialization.Formatters 9.0.24.52809 dotnet +System.Runtime.Serialization.Json 9.0.24.52809 dotnet +System.Runtime.Serialization.Primitives 9.0.24.52809 dotnet +System.Runtime.Serialization.Xml 9.0.24.52809 dotnet +System.Security 9.0.24.52809 dotnet +System.Security.AccessControl 9.0.24.52809 dotnet +System.Security.Claims 9.0.24.52809 dotnet +System.Security.Cryptography 9.0.24.52809 dotnet +System.Security.Cryptography.Algorithms 9.0.24.52809 dotnet +System.Security.Cryptography.Cng 9.0.24.52809 dotnet +System.Security.Cryptography.Csp 9.0.24.52809 dotnet +System.Security.Cryptography.Encoding 9.0.24.52809 dotnet +System.Security.Cryptography.OpenSsl 9.0.24.52809 dotnet +System.Security.Cryptography.Pkcs 9.0.24.52809 dotnet +System.Security.Cryptography.Primitives 9.0.24.52809 dotnet +System.Security.Cryptography.X509Certificates 9.0.24.52809 dotnet +System.Security.Cryptography.Xml 9.0.24.52809 dotnet +System.Security.Principal 9.0.24.52809 dotnet +System.Security.Principal.Windows 9.0.24.52809 dotnet +System.Security.SecureString 9.0.24.52809 dotnet +System.ServiceModel.Web 9.0.24.52809 dotnet +System.ServiceProcess 9.0.24.52809 dotnet +System.Text.Encoding 9.0.24.52809 dotnet +System.Text.Encoding.CodePages 9.0.24.52809 dotnet +System.Text.Encoding.Extensions 9.0.24.52809 dotnet +System.Text.Encodings.Web 9.0.24.52809 dotnet +System.Text.Json 9.0.24.52809 dotnet +System.Text.RegularExpressions 9.0.24.52809 dotnet +System.Threading 9.0.24.52809 dotnet +System.Threading.Channels 9.0.24.52809 dotnet +System.Threading.Overlapped 9.0.24.52809 dotnet +System.Threading.RateLimiting 9.0.24.52809 dotnet +System.Threading.Tasks 9.0.24.52809 dotnet +System.Threading.Tasks.Dataflow 9.0.24.52809 dotnet +System.Threading.Tasks.Extensions 9.0.24.52809 dotnet +System.Threading.Tasks.Parallel 9.0.24.52809 dotnet +System.Threading.Thread 9.0.24.52809 dotnet +System.Threading.ThreadPool 9.0.24.52809 dotnet +System.Threading.Timer 9.0.24.52809 dotnet +System.Transactions 9.0.24.52809 dotnet +System.Transactions.Local 9.0.24.52809 dotnet +System.ValueTuple 9.0.24.52809 dotnet +System.Web 9.0.24.52809 dotnet +System.Web.HttpUtility 9.0.24.52809 dotnet +System.Windows 9.0.24.52809 dotnet +System.Xml 9.0.24.52809 dotnet +System.Xml.Linq 9.0.24.52809 dotnet +System.Xml.ReaderWriter 9.0.24.52809 dotnet +System.Xml.Serialization 9.0.24.52809 dotnet +System.Xml.XDocument 9.0.24.52809 dotnet +System.Xml.XPath 9.0.24.52809 dotnet +System.Xml.XPath.XDocument 9.0.24.52809 dotnet +System.Xml.XmlDocument 9.0.24.52809 dotnet +System.Xml.XmlSerializer 9.0.24.52809 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.1024.46610 dotnet +WindowsBase 9.0.24.52809 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -420,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024110405+ubu2404 deb +jellyfin 2024112505+ubu2404 deb jellyfin-ffmpeg7 7.0.2-7-noble deb -jellyfin-server 2024110405+ubu2404 deb -jellyfin-web 2024110405+ubu2404 deb +jellyfin-server 2024112505+ubu2404 deb +jellyfin-web 2024112505+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -571,11 +572,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.2 deb mount 2.39.3-9ubuntu6.1 deb -mscorlib 8.0.1024.46610 dotnet +mscorlib 9.0.24.52809 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.1024.46610 dotnet +netstandard 9.0.24.52809 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb From 993488458f6b81723657a9ba1ec9afb33d07795b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 07:13:34 +0000 Subject: [PATCH 2089/2257] Bot Updating Templated Files --- Jenkinsfile | 268 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 176 insertions(+), 92 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 525504d..f11997f 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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" - retry_backoff(5,5) { - sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:arm64v8-${META_TAG} ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } } sh '''#! /bin/bash containers=$(docker ps -aq) if [[ -n "${containers}" ]]; then docker stop ${containers} fi - docker system prune -af --volumes || : ''' + docker system prune -af --volumes || : + ''' } } } @@ -765,37 +886,23 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' - ] - ]) { - retry_backoff(5,5) { - sh '''#! /bin/bash - set -e - echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:nightly - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} - fi - docker push ${PUSHIMAGE}:nightly - docker push ${PUSHIMAGE}:${META_TAG} - docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker push ${PUSHIMAGE}:${SEMVER} - fi + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + for PUSHIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + [[ ${PUSHIMAGE%%/*} =~ \\. ]] && PUSHIMAGEPLUS="${PUSHIMAGE}" || PUSHIMAGEPLUS="docker.io/${PUSHIMAGE}" + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + if [[ "${PUSHIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then + CACHEIMAGE=${i} + fi done - ''' - } + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:nightly -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + fi + done + ''' } } } @@ -806,57 +913,34 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' - ] - ]) { - retry_backoff(5,5) { - sh '''#! /bin/bash - set -e - echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + 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 830b29b9840f41995610d7467fe2bcc91663b962 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 07:16:54 +0000 Subject: [PATCH 2090/2257] Bot Updating Templated Files --- readme-vars.yml | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index c1a391c..31d6f0a 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -86,9 +86,52 @@ app_setup_block: | --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` - readme_hwaccel: true unraid_template_sync: false +# init diagram +init_diagram: | + "jellyfin: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-jellyfin-video -> init-config-end + init-os-end -> init-crontab-config + init-mods-end -> init-custom-files + base -> init-envfile + init-config -> init-jellyfin-config + init-jellyfin-config -> init-jellyfin-video + base -> init-migrations + base -> init-mods + init-config-end -> init-mods + init-mods -> init-mods-end + init-mods-package-install -> init-mods-end + init-mods -> init-mods-package-install + base -> init-os-end + init-adduser -> init-os-end + init-envfile -> init-os-end + init-migrations -> init-os-end + init-custom-files -> init-services + init-mods-end -> init-services + init-services -> svc-cron + svc-cron -> legacy-services + init-services -> svc-jellyfin + svc-jellyfin -> legacy-services + } + Base Images: { + "baseimage-ubuntu:noble" + } + "jellyfin:nightly" <- Base Images # changelog changelogs: - {date: "06.10.24:", desc: "Fix fontconfig cache path."} From f2ffc8cb170dce0d8540b1b59ff15376f5fdbf84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 07:18:55 +0000 Subject: [PATCH 2091/2257] Bot Updating Templated Files --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 329727d..01da828 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,6 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` - ### Hardware Acceleration Many desktop applications need access to a GPU to function properly and even some Desktop Environments have compositor effects that will not function without a GPU. However this is not a hard requirement and all base images will function without a video device mounted into the container. @@ -133,6 +132,9 @@ Best effort is made to install tools to allow mounting in /dev/dri on Arm device 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 @@ -184,7 +186,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | -| `-p 8096` | Http webUI. | +| `-p 8096:8096` | Http webUI. | | `-p 8920` | Optional - Https webUI (you need to set up your own certificate). | | `-p 7359/udp` | Optional - Allows clients to discover Jellyfin on the local network. | | `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | From 5cd01a1e5722c21235c65805d1b171eca327d497 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 07:23:25 +0000 Subject: [PATCH 2092/2257] 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 bbe1c55..527fcdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -200,12 +200,12 @@ Serilog.Sinks.Debug 2.0.0.0 Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet +ShimSkiaSharp 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet SkiaSharp 2.88.9.0 dotnet SkiaSharp.HarfBuzz 2.88.9.0 dotnet -Svg.Custom 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet -Svg.Model 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet -Svg.Skia 2.0.0.2+a8579c7bbc313a73e8f6e000f959c344afb11c90 dotnet +Svg.Custom 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet +Svg.Model 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet +Svg.Skia 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet @@ -421,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024112505+ubu2404 deb +jellyfin 2024120205+ubu2404 deb jellyfin-ffmpeg7 7.0.2-7-noble deb -jellyfin-server 2024112505+ubu2404 deb -jellyfin-web 2024112505+ubu2404 deb +jellyfin-server 2024120205+ubu2404 deb +jellyfin-web 2024120205+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 654e47a9a6da5e58869eb2df9c6eefbca104241c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Dec 2024 12:55:29 +0000 Subject: [PATCH 2093/2257] Bot Updating Templated Files --- Jenkinsfile | 268 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 176 insertions(+), 92 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 68f734b..91af4c0 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 = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.EXT_RELEASE_TAG = '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 = 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/' + 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 = '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}:latest + ls -al ${TEMPDIR}/d2 + yq -ei ".init_diagram |= load_str(\\"${TEMPDIR}/d2/${CONTAINER_NAME}-latest.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 master + 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 master + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master + 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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --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}:latest - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} - fi - docker push ${PUSHIMAGE}:latest - docker push ${PUSHIMAGE}:${META_TAG} - docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker push ${PUSHIMAGE}:${SEMVER} - fi + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + for PUSHIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + [[ ${PUSHIMAGE%%/*} =~ \\. ]] && PUSHIMAGEPLUS="${PUSHIMAGE}" || PUSHIMAGEPLUS="docker.io/${PUSHIMAGE}" + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + if [[ "${PUSHIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then + CACHEIMAGE=${i} + fi done - ''' - } + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:latest -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-latest -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-latest -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-latest - 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-latest - 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-latest - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-latest - 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}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest - docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker 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}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi + done + ''' } } } From a6e87623bc82b96d09ecdbf8c06f4cc873ff55f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Dec 2024 12:57:36 +0000 Subject: [PATCH 2094/2257] Bot Updating Templated Files --- readme-vars.yml | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 29bc137..f9791bd 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -86,9 +86,52 @@ app_setup_block: | --device=/dev/video11:/dev/video11 --device=/dev/video12:/dev/video12 ``` - readme_hwaccel: true unraid_template_sync: false +# init diagram +init_diagram: | + "jellyfin:latest": { + 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-jellyfin-video -> init-config-end + init-os-end -> init-crontab-config + init-mods-end -> init-custom-files + base -> init-envfile + init-config -> init-jellyfin-config + init-jellyfin-config -> init-jellyfin-video + base -> init-migrations + base -> init-mods + init-config-end -> init-mods + init-mods -> init-mods-end + init-mods-package-install -> init-mods-end + init-mods -> init-mods-package-install + base -> init-os-end + init-adduser -> init-os-end + init-envfile -> init-os-end + init-migrations -> init-os-end + init-custom-files -> init-services + init-mods-end -> init-services + init-services -> svc-cron + svc-cron -> legacy-services + init-services -> svc-jellyfin + svc-jellyfin -> legacy-services + } + Base Images: { + "baseimage-ubuntu:noble" + } + "jellyfin:latest" <- Base Images # changelog changelogs: - {date: "06.10.24:", desc: "Fix fontconfig cache path."} From 149b9729b97af67a1574fb3cd639c988816a7738 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Dec 2024 12:59:46 +0000 Subject: [PATCH 2095/2257] Bot Updating Templated Files --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b5f883..9d6ab64 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,6 @@ Hardware acceleration users for Raspberry Pi V4L2 will need to mount their `/dev --device=/dev/video12:/dev/video12 ``` - ### Hardware Acceleration Many desktop applications need access to a GPU to function properly and even some Desktop Environments have compositor effects that will not function without a GPU. However this is not a hard requirement and all base images will function without a video device mounted into the container. @@ -133,6 +132,9 @@ Best effort is made to install tools to allow mounting in /dev/dri on Arm device 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 @@ -184,7 +186,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | -| `-p 8096` | Http webUI. | +| `-p 8096:8096` | Http webUI. | | `-p 8920` | Optional - Https webUI (you need to set up your own certificate). | | `-p 7359/udp` | Optional - Allows clients to discover Jellyfin on the local network. | | `-p 1900/udp` | Optional - Service discovery used by DNLA and clients. | From a0dc044a0e03abdbc7a5b12802707940af23c59e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 12:57:17 +0000 Subject: [PATCH 2096/2257] Bot Updating Templated Files --- readme-vars.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index f9791bd..c524af4 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -105,24 +105,20 @@ init_diagram: | init-migrations -> init-adduser init-os-end -> init-config init-config -> init-config-end + init-crontab-config -> init-config-end init-jellyfin-video -> init-config-end - init-os-end -> init-crontab-config + init-config -> init-crontab-config init-mods-end -> init-custom-files base -> init-envfile init-config -> init-jellyfin-config init-jellyfin-config -> init-jellyfin-video base -> init-migrations - base -> init-mods init-config-end -> init-mods - init-mods -> init-mods-end init-mods-package-install -> init-mods-end init-mods -> init-mods-package-install - base -> init-os-end init-adduser -> init-os-end init-envfile -> init-os-end - init-migrations -> init-os-end init-custom-files -> init-services - init-mods-end -> init-services init-services -> svc-cron svc-cron -> legacy-services init-services -> svc-jellyfin From c20550bc473eda27652b5f8b979546209e8b39e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 12:57:24 +0000 Subject: [PATCH 2097/2257] Bot Updating Templated Files --- readme-vars.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 31d6f0a..1f8ec8b 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -105,24 +105,20 @@ init_diagram: | init-migrations -> init-adduser init-os-end -> init-config init-config -> init-config-end + init-crontab-config -> init-config-end init-jellyfin-video -> init-config-end - init-os-end -> init-crontab-config + init-config -> init-crontab-config init-mods-end -> init-custom-files base -> init-envfile init-config -> init-jellyfin-config init-jellyfin-config -> init-jellyfin-video base -> init-migrations - base -> init-mods init-config-end -> init-mods - init-mods -> init-mods-end init-mods-package-install -> init-mods-end init-mods -> init-mods-package-install - base -> init-os-end init-adduser -> init-os-end init-envfile -> init-os-end - init-migrations -> init-os-end init-custom-files -> init-services - init-mods-end -> init-services init-services -> svc-cron svc-cron -> legacy-services init-services -> svc-jellyfin From 60a1f6472722238541155ac70bee683bd701f0aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 12:59:14 +0000 Subject: [PATCH 2098/2257] 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 4bddb97..1e3f9bc 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%2Fjellyfin%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 edb15e68d9f7f5d47405e3b649acda9e785394e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 13:02:31 +0000 Subject: [PATCH 2099/2257] 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 e5d9567..c38fd94 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%2Fjellyfin%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 42f5e536accfd14d78e78541775f5e90625b708c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 13:04:38 +0000 Subject: [PATCH 2100/2257] 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 5210cab..59bd79c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -394,7 +394,7 @@ catatonit 0.1.7-1 coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.4 deb +curl 8.5.0-2ubuntu10.5 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb @@ -427,13 +427,13 @@ jellyfin-web 10.10.3+ubu24 jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.1 deb -libacl1 2.3.2-1build1 deb +krb5-locales 1.20.1-6ubuntu2.2 deb +libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb libattr1 1:2.5.2-1build1 deb -libaudit-common 1:3.1.2-2.1build1 deb -libaudit1 1:3.1.2-2.1build1 deb +libaudit-common 1:3.1.2-2.1build1.1 deb +libaudit1 1:3.1.2-2.1build1.1 deb libblkid1 2.39.3-9ubuntu6.1 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb @@ -446,7 +446,7 @@ libcap-ng0 0.8.4-2build2 libcap2 1:2.66-5ubuntu2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.4 deb +libcurl4t64 8.5.0-2ubuntu10.5 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb @@ -456,7 +456,7 @@ libdrm-radeon1 2.4.120-2buil libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb -libexpat1 2.6.1-2ubuntu0.1 deb +libexpat1 2.6.1-2ubuntu0.2 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb @@ -466,18 +466,18 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.2 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.1 deb +libk5crypto3 1.20.1-6ubuntu2.2 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.1 deb -libkrb5support0 1.20.1-6ubuntu2.1 deb +libkrb5-3 1.20.1-6ubuntu2.2 deb +libkrb5support0 1.20.1-6ubuntu2.2 deb libksba8 1.6.6-1build1 deb -libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb -libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb From 77f2292bde23d50b60443db2eb62539d88f9a74c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Dec 2024 13:08:17 +0000 Subject: [PATCH 2101/2257] 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 527fcdf..e188fa0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.8.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.9.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -395,7 +395,7 @@ catatonit 0.1.7-1 coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.4 deb +curl 8.5.0-2ubuntu10.5 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb @@ -421,22 +421,22 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024120205+ubu2404 deb +jellyfin 2024120905+ubu2404 deb jellyfin-ffmpeg7 7.0.2-7-noble deb -jellyfin-server 2024120205+ubu2404 deb -jellyfin-web 2024120205+ubu2404 deb +jellyfin-server 2024120905+ubu2404 deb +jellyfin-web 2024120905+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.1 deb +krb5-locales 1.20.1-6ubuntu2.2 deb libaacs0 0.11.1-2build1 deb -libacl1 2.3.2-1build1 deb +libacl1 2.3.2-1build1.1 deb libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb libattr1 1:2.5.2-1build1 deb -libaudit-common 1:3.1.2-2.1build1 deb -libaudit1 1:3.1.2-2.1build1 deb +libaudit-common 1:3.1.2-2.1build1.1 deb +libaudit1 1:3.1.2-2.1build1.1 deb libbdplus0 0.2.0-3build1 deb libblkid1 2.39.3-9ubuntu6.1 deb libbluray2 1:1.3.4-1build1 deb @@ -450,7 +450,7 @@ libcap-ng0 0.8.4-2build2 libcap2 1:2.66-5ubuntu2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.4 deb +libcurl4t64 8.5.0-2ubuntu10.5 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb @@ -460,7 +460,7 @@ libdrm-radeon1 2.4.120-2buil libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4 deb -libexpat1 2.6.1-2ubuntu0.1 deb +libexpat1 2.6.1-2ubuntu0.2 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb @@ -470,18 +470,18 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.1 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.2 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.1 deb +libk5crypto3 1.20.1-6ubuntu2.2 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.1 deb -libkrb5support0 1.20.1-6ubuntu2.1 deb +libkrb5-3 1.20.1-6ubuntu2.2 deb +libkrb5support0 1.20.1-6ubuntu2.2 deb libksba8 1.6.6-1build1 deb -libldap-common 2.6.7+dfsg-1~exp1ubuntu8 deb -libldap2 2.6.7+dfsg-1~exp1ubuntu8 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb From 1b02ac15055b8f0c38f7581eb338c0f6ca4e3447 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 06:17:47 +0000 Subject: [PATCH 2102/2257] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f11997f..2a0af80 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -575,7 +575,7 @@ pipeline { --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -604,7 +604,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -639,7 +641,7 @@ pipeline { --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -668,7 +670,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -696,7 +700,7 @@ pipeline { --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -725,7 +729,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } From 16fdb274e61353a9ec8add3597cf0c61f5e86b63 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 06:19:58 +0000 Subject: [PATCH 2103/2257] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 33 ++++++++++++++----- .../workflows/package_trigger_scheduler.yml | 27 ++++++++++++--- 2 files changed, 47 insertions(+), 13 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index c38fd94..e70b8ef 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}") @@ -95,7 +112,7 @@ jobs: else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY - if "${artifacts_found}" == "true" ]]; then + if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi response=$(curl -iX POST \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index aa2d52b..a950c05 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-jellyfin/${br}/jenkins-vars.yml) - if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then + if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${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-jellyfin/${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 \`jellyfin_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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-jellyfin/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 dd012eaafa9f2118fd345ba7644c1b54ef7af8ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 06:27:04 +0000 Subject: [PATCH 2104/2257] 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 e188fa0..044bce6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,16 +187,16 @@ Prometheus.NetStandard.dll 8.2.1 SQLitePCLRaw.batteries_v2 2.1.10.2445 dotnet SQLitePCLRaw.core 2.1.10.2445 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.10.2445 dotnet -Serilog 4.1.0.0 dotnet -Serilog.AspNetCore 8.0.3.0 dotnet +Serilog 4.2.0.0 dotnet +Serilog.AspNetCore 9.0.0.0 dotnet Serilog.Enrichers.Thread 4.0.0.0 dotnet -Serilog.Extensions.Hosting 8.0.0.0 dotnet -Serilog.Extensions.Logging 8.0.0.0 dotnet -Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.4.0 dotnet +Serilog.Extensions.Hosting 9.0.0.0 dotnet +Serilog.Extensions.Logging 9.0.0.0 dotnet +Serilog.Formatting.Compact 3.0.0.0 dotnet +Serilog.Settings.Configuration 9.0.0.0 dotnet Serilog.Sinks.Async 2.1.0.0 dotnet Serilog.Sinks.Console 6.0.0.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet +Serilog.Sinks.Debug 3.0.0.0 dotnet Serilog.Sinks.File 6.0.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet @@ -421,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024120905+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-7-noble deb -jellyfin-server 2024120905+ubu2404 deb -jellyfin-web 2024120905+ubu2404 deb +jellyfin 2024121605+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-8-noble deb +jellyfin-server 2024121605+ubu2404 deb +jellyfin-web 2024121605+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -570,7 +570,7 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.0.9-0ubuntu0.2 deb +mesa-va-drivers 24.0.9-0ubuntu0.3 deb mount 2.39.3-9ubuntu6.1 deb mscorlib 9.0.24.52809 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb From 053fc4d97448cb2a17f1d41c584e411ef5d02e3e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 12:57:26 +0000 Subject: [PATCH 2105/2257] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 91af4c0..2358258 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -575,7 +575,7 @@ pipeline { --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -604,7 +604,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -639,7 +641,7 @@ pipeline { --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -668,7 +670,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -696,7 +700,7 @@ pipeline { --label \"org.opencontainers.image.title=Jellyfin\" \ --label \"org.opencontainers.image.description=[Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -725,7 +729,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } From 5956ab08c28d4fd8558f9c3df38593dff1cce3bb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 12:59:51 +0000 Subject: [PATCH 2106/2257] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 33 ++++++++++++++----- .../workflows/package_trigger_scheduler.yml | 27 ++++++++++++--- 2 files changed, 47 insertions(+), 13 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 1e3f9bc..d6a7977 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -48,13 +48,30 @@ jobs: --header "Accept: application/vnd.oci.image.index.v1+json" \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/manifests/${tag}") - multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Accept: application/vnd.oci.image.manifest.v1+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ - | jq -r '.config.digest') + if jq -e '.layers // empty' <<< "${multidigest}" >/dev/null 2>&1; then + # If there's a layer element it's a single-arch manifest so just get that digest + digest=$(jq -r '.config.digest' <<< "${multidigest}") + else + # Otherwise it's multi-arch or has manifest annotations + if jq -e '.manifests[]?.annotations // empty' <<< "${multidigest}" >/dev/null 2>&1; then + # Check for manifest annotations and delete if found + multidigest=$(jq 'del(.manifests[] | select(.annotations))' <<< "${multidigest}") + fi + if [[ $(jq '.manifests | length' <<< "${multidigest}") -gt 1 ]]; then + # If there's still more than one digest, it's multi-arch + multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") + else + # Otherwise it's single arch + multidigest=$(jq -r ".manifests[].digest?" <<< "${multidigest}") + fi + if digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.manifest.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}"); then + digest=$(jq -r '.config.digest' <<< "${digest}"); + fi + fi image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/blobs/${digest}") @@ -92,7 +109,7 @@ jobs: else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY - if "${artifacts_found}" == "true" ]]; then + if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi response=$(curl -iX POST \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index aa2d52b..a950c05 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-jellyfin/${br}/jenkins-vars.yml) - if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then + if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${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-jellyfin/${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 \`jellyfin_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/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-jellyfin/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 88a7bb963d01b2c11cd13ac7adb1d8a4108dc9b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 13:08:26 +0000 Subject: [PATCH 2107/2257] 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 59bd79c..0d3a432 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,7 +421,7 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.3+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-7-noble deb +jellyfin-ffmpeg7 7.0.2-8-noble deb jellyfin-server 10.10.3+ubu2404 deb jellyfin-web 10.10.3+ubu2404 deb jq 1.7.1-3build1 deb @@ -566,7 +566,7 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.0.9-0ubuntu0.2 deb +mesa-va-drivers 24.0.9-0ubuntu0.3 deb mount 2.39.3-9ubuntu6.1 deb mscorlib 8.0.1124.51707 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb From 018ffe26a23f2ca4b52c791c3a73dab826b7ad21 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Dec 2024 06:25:38 +0000 Subject: [PATCH 2108/2257] 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 044bce6..5332b20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.9.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.10.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -395,7 +395,7 @@ catatonit 0.1.7-1 coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.5 deb +curl 8.5.0-2ubuntu10.6 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb @@ -421,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024121605+ubu2404 deb +jellyfin 2024122305+ubu2404 deb jellyfin-ffmpeg7 7.0.2-8-noble deb -jellyfin-server 2024121605+ubu2404 deb -jellyfin-web 2024121605+ubu2404 deb +jellyfin-server 2024122305+ubu2404 deb +jellyfin-web 2024122305+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -450,7 +450,7 @@ libcap-ng0 0.8.4-2build2 libcap2 1:2.66-5ubuntu2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.5 deb +libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb From a676cad649b8e4e7693f4ac322e5aaf304e85dab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 24 Dec 2024 12:52:52 +0000 Subject: [PATCH 2109/2257] 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 0d3a432..e1ad053 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -394,7 +394,7 @@ catatonit 0.1.7-1 coreutils 9.4-3ubuntu6 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.5 deb +curl 8.5.0-2ubuntu10.6 deb dash 0.5.12-6ubuntu5 deb debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb @@ -446,7 +446,7 @@ libcap-ng0 0.8.4-2build2 libcap2 1:2.66-5ubuntu2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.5 deb +libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libdrm-amdgpu1 2.4.120-2build1 deb From da5203c442d077d26551dd3fa031e3a58e859372 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Dec 2024 06:25:48 +0000 Subject: [PATCH 2110/2257] Bot Updating Package Versions --- package_versions.txt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5332b20..4470441 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.10.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.11.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -178,7 +178,7 @@ Microsoft.VisualBasic 9.0.24.52809 Microsoft.VisualBasic.Core 14.0.24.52809 dotnet Microsoft.Win32.Primitives 9.0.24.52809 dotnet Microsoft.Win32.Registry 9.0.24.52809 dotnet -Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet +Microsoft.Win32.SystemEvents 9.0.24.52809 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet @@ -242,7 +242,7 @@ System.Diagnostics.Tools 9.0.24.52809 System.Diagnostics.TraceSource 9.0.24.52809 dotnet System.Diagnostics.Tracing 9.0.24.52809 dotnet System.Drawing 9.0.24.52809 dotnet -System.Drawing.Common 8.0.824.36606 dotnet +System.Drawing.Common 9.0.24.52901 dotnet System.Drawing.Primitives 9.0.24.52809 dotnet System.Dynamic.Runtime 9.0.24.52809 dotnet System.Formats.Asn1 9.0.24.52809 dotnet @@ -297,6 +297,7 @@ System.ObjectModel 9.0.24.52809 System.Private.CoreLib 9.0.24.52809 dotnet System.Private.DataContractSerialization 9.0.24.52809 dotnet System.Private.Uri 9.0.24.52809 dotnet +System.Private.Windows.Core 9.0.24.52901 dotnet System.Private.Xml 9.0.24.52809 dotnet System.Private.Xml.Linq 9.0.24.52809 dotnet System.Reflection 9.0.24.52809 dotnet @@ -421,10 +422,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024122305+ubu2404 deb +jellyfin 2024123005+ubu2404 deb jellyfin-ffmpeg7 7.0.2-8-noble deb -jellyfin-server 2024122305+ubu2404 deb -jellyfin-web 2024122305+ubu2404 deb +jellyfin-server 2024123005+ubu2404 deb +jellyfin-web 2024123005+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -514,7 +515,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.8.0 dotnet +libse 4.0.9.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb From e2cee61c6518e6ad48c8c4677b59c4c47e6f24cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Jan 2025 06:19:11 +0000 Subject: [PATCH 2111/2257] 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 4470441..db98f30 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,10 +422,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2024123005+ubu2404 deb +jellyfin 2025010605+ubu2404 deb jellyfin-ffmpeg7 7.0.2-8-noble deb -jellyfin-server 2024123005+ubu2404 deb -jellyfin-web 2024123005+ubu2404 deb +jellyfin-server 2025010605+ubu2404 deb +jellyfin-web 2025010605+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 33d17eb118973e7601fe9f5c2ebf25ce85e2b8d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 Jan 2025 06:20:08 +0000 Subject: [PATCH 2112/2257] 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 db98f30..03d4c58 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -422,10 +422,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025010605+ubu2404 deb +jellyfin 2025011305+ubu2404 deb jellyfin-ffmpeg7 7.0.2-8-noble deb -jellyfin-server 2025010605+ubu2404 deb -jellyfin-web 2025010605+ubu2404 deb +jellyfin-server 2025011305+ubu2404 deb +jellyfin-web 2025011305+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 8411c536effcaff28b91063289dd2e5c2877c5a5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Jan 2025 06:18:54 +0000 Subject: [PATCH 2113/2257] Bot Updating Package Versions --- package_versions.txt | 638 +++++++++++++++++++++---------------------- 1 file changed, 319 insertions(+), 319 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 03d4c58..69a0458 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.11.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.12.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -29,155 +29,155 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 9.0.24.52903 dotnet -Microsoft.AspNetCore.Antiforgery 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authentication 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authentication.Cookies 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authentication.Core 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authentication.OAuth 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authorization 9.0.24.52903 dotnet -Microsoft.AspNetCore.Authorization.Policy 9.0.24.52903 dotnet -Microsoft.AspNetCore.Components 9.0.24.52903 dotnet -Microsoft.AspNetCore.Components.Authorization 9.0.24.52903 dotnet -Microsoft.AspNetCore.Components.Endpoints 9.0.24.52903 dotnet -Microsoft.AspNetCore.Components.Forms 9.0.24.52903 dotnet -Microsoft.AspNetCore.Components.Server 9.0.24.52903 dotnet -Microsoft.AspNetCore.Components.Web 9.0.24.52903 dotnet -Microsoft.AspNetCore.Connections.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.CookiePolicy 9.0.24.52903 dotnet -Microsoft.AspNetCore.Cors 9.0.24.52903 dotnet -Microsoft.AspNetCore.Cryptography.Internal 9.0.24.52903 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.24.52903 dotnet -Microsoft.AspNetCore.DataProtection 9.0.24.52903 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Diagnostics 9.0.24.52903 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.24.52903 dotnet -Microsoft.AspNetCore.HostFiltering 9.0.24.52903 dotnet -Microsoft.AspNetCore.Hosting 9.0.24.52903 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Html.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http.Connections 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http.Connections.Common 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http.Extensions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http.Features 9.0.24.52903 dotnet -Microsoft.AspNetCore.Http.Results 9.0.24.52903 dotnet -Microsoft.AspNetCore.HttpLogging 9.0.24.52903 dotnet -Microsoft.AspNetCore.HttpOverrides 9.0.24.52903 dotnet -Microsoft.AspNetCore.HttpsPolicy 9.0.24.52903 dotnet -Microsoft.AspNetCore.Identity 9.0.24.52903 dotnet -Microsoft.AspNetCore.Localization 9.0.24.52903 dotnet -Microsoft.AspNetCore.Localization.Routing 9.0.24.52903 dotnet -Microsoft.AspNetCore.Metadata 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Core 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Cors 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Localization 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.Razor 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 9.0.24.52903 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.24.52903 dotnet -Microsoft.AspNetCore.OutputCaching 9.0.24.52903 dotnet -Microsoft.AspNetCore.RateLimiting 9.0.24.52903 dotnet -Microsoft.AspNetCore.Razor 9.0.24.52903 dotnet -Microsoft.AspNetCore.Razor.Runtime 9.0.24.52903 dotnet -Microsoft.AspNetCore.RequestDecompression 9.0.24.52903 dotnet -Microsoft.AspNetCore.ResponseCaching 9.0.24.52903 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.ResponseCompression 9.0.24.52903 dotnet -Microsoft.AspNetCore.Rewrite 9.0.24.52903 dotnet -Microsoft.AspNetCore.Routing 9.0.24.52903 dotnet -Microsoft.AspNetCore.Routing.Abstractions 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.HttpSys 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.IIS 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.IISIntegration 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.Kestrel 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.24.52903 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.24.52903 dotnet -Microsoft.AspNetCore.Session 9.0.24.52903 dotnet -Microsoft.AspNetCore.SignalR 9.0.24.52903 dotnet -Microsoft.AspNetCore.SignalR.Common 9.0.24.52903 dotnet -Microsoft.AspNetCore.SignalR.Core 9.0.24.52903 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.24.52903 dotnet -Microsoft.AspNetCore.StaticAssets 9.0.24.52903 dotnet -Microsoft.AspNetCore.StaticFiles 9.0.24.52903 dotnet -Microsoft.AspNetCore.WebSockets 9.0.24.52903 dotnet -Microsoft.AspNetCore.WebUtilities 9.0.24.52903 dotnet +Microsoft.AspNetCore 9.0.124.61009 dotnet +Microsoft.AspNetCore.Antiforgery 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authentication 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authentication.Cookies 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authentication.Core 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authentication.OAuth 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authorization 9.0.124.61009 dotnet +Microsoft.AspNetCore.Authorization.Policy 9.0.124.61009 dotnet +Microsoft.AspNetCore.Components 9.0.124.61009 dotnet +Microsoft.AspNetCore.Components.Authorization 9.0.124.61009 dotnet +Microsoft.AspNetCore.Components.Endpoints 9.0.124.61009 dotnet +Microsoft.AspNetCore.Components.Forms 9.0.124.61009 dotnet +Microsoft.AspNetCore.Components.Server 9.0.124.61009 dotnet +Microsoft.AspNetCore.Components.Web 9.0.124.61009 dotnet +Microsoft.AspNetCore.Connections.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.CookiePolicy 9.0.124.61009 dotnet +Microsoft.AspNetCore.Cors 9.0.124.61009 dotnet +Microsoft.AspNetCore.Cryptography.Internal 9.0.124.61009 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.124.61009 dotnet +Microsoft.AspNetCore.DataProtection 9.0.124.61009 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Diagnostics 9.0.124.61009 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.124.61009 dotnet +Microsoft.AspNetCore.HostFiltering 9.0.124.61009 dotnet +Microsoft.AspNetCore.Hosting 9.0.124.61009 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Html.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http.Connections 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http.Connections.Common 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http.Extensions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http.Features 9.0.124.61009 dotnet +Microsoft.AspNetCore.Http.Results 9.0.124.61009 dotnet +Microsoft.AspNetCore.HttpLogging 9.0.124.61009 dotnet +Microsoft.AspNetCore.HttpOverrides 9.0.124.61009 dotnet +Microsoft.AspNetCore.HttpsPolicy 9.0.124.61009 dotnet +Microsoft.AspNetCore.Identity 9.0.124.61009 dotnet +Microsoft.AspNetCore.Localization 9.0.124.61009 dotnet +Microsoft.AspNetCore.Localization.Routing 9.0.124.61009 dotnet +Microsoft.AspNetCore.Metadata 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Core 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Cors 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Localization 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.Razor 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 9.0.124.61009 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.124.61009 dotnet +Microsoft.AspNetCore.OutputCaching 9.0.124.61009 dotnet +Microsoft.AspNetCore.RateLimiting 9.0.124.61009 dotnet +Microsoft.AspNetCore.Razor 9.0.124.61009 dotnet +Microsoft.AspNetCore.Razor.Runtime 9.0.124.61009 dotnet +Microsoft.AspNetCore.RequestDecompression 9.0.124.61009 dotnet +Microsoft.AspNetCore.ResponseCaching 9.0.124.61009 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.ResponseCompression 9.0.124.61009 dotnet +Microsoft.AspNetCore.Rewrite 9.0.124.61009 dotnet +Microsoft.AspNetCore.Routing 9.0.124.61009 dotnet +Microsoft.AspNetCore.Routing.Abstractions 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.HttpSys 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.IIS 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.IISIntegration 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.Kestrel 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.124.61009 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.124.61009 dotnet +Microsoft.AspNetCore.Session 9.0.124.61009 dotnet +Microsoft.AspNetCore.SignalR 9.0.124.61009 dotnet +Microsoft.AspNetCore.SignalR.Common 9.0.124.61009 dotnet +Microsoft.AspNetCore.SignalR.Core 9.0.124.61009 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.124.61009 dotnet +Microsoft.AspNetCore.StaticAssets 9.0.124.61009 dotnet +Microsoft.AspNetCore.StaticFiles 9.0.124.61009 dotnet +Microsoft.AspNetCore.WebSockets 9.0.124.61009 dotnet +Microsoft.AspNetCore.WebUtilities 9.0.124.61009 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 9.0.24.52809 dotnet -Microsoft.Data.Sqlite 9.0.24.52902 dotnet -Microsoft.EntityFrameworkCore 9.0.24.52902 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.24.52902 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.24.52902 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.24.52902 dotnet -Microsoft.Extensions.Caching.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.Caching.Memory 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.Binder 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.CommandLine 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.FileExtensions 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.Ini 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.Json 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 9.0.24.52903 dotnet -Microsoft.Extensions.Configuration.UserSecrets 9.0.24.52809 dotnet -Microsoft.Extensions.Configuration.Xml 9.0.24.52809 dotnet -Microsoft.Extensions.DependencyInjection 9.0.24.52809 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.DependencyModel 9.0.24.52809 dotnet -Microsoft.Extensions.Diagnostics 9.0.24.52809 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 9.0.24.52903 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.24.52903 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.24.52903 dotnet -Microsoft.Extensions.Features 9.0.24.52903 dotnet -Microsoft.Extensions.FileProviders.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.FileProviders.Composite 9.0.24.52809 dotnet -Microsoft.Extensions.FileProviders.Embedded 9.0.24.52903 dotnet -Microsoft.Extensions.FileProviders.Physical 9.0.24.52809 dotnet -Microsoft.Extensions.FileSystemGlobbing 9.0.24.52809 dotnet -Microsoft.Extensions.Hosting 9.0.24.52809 dotnet -Microsoft.Extensions.Hosting.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.Http 9.0.24.52809 dotnet -Microsoft.Extensions.Identity.Core 9.0.24.52903 dotnet -Microsoft.Extensions.Identity.Stores 9.0.24.52903 dotnet -Microsoft.Extensions.Localization 9.0.24.52903 dotnet -Microsoft.Extensions.Localization.Abstractions 9.0.24.52903 dotnet -Microsoft.Extensions.Logging 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.Abstractions 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.Configuration 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.Console 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.Debug 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.EventLog 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.EventSource 9.0.24.52809 dotnet -Microsoft.Extensions.Logging.TraceSource 9.0.24.52809 dotnet -Microsoft.Extensions.ObjectPool 9.0.24.52903 dotnet -Microsoft.Extensions.Options 9.0.24.52809 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 9.0.24.52809 dotnet -Microsoft.Extensions.Options.DataAnnotations 9.0.24.52809 dotnet -Microsoft.Extensions.Primitives 9.0.24.52809 dotnet -Microsoft.Extensions.WebEncoders 9.0.24.52903 dotnet -Microsoft.JSInterop 9.0.24.52903 dotnet -Microsoft.Net.Http.Headers 9.0.24.52903 dotnet +Microsoft.CSharp 9.0.124.61010 dotnet +Microsoft.Data.Sqlite 9.0.124.61002 dotnet +Microsoft.EntityFrameworkCore 9.0.124.61002 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.124.61002 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.124.61002 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.124.61002 dotnet +Microsoft.Extensions.Caching.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.Caching.Memory 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.Binder 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.CommandLine 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.FileExtensions 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.Ini 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.Json 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 9.0.124.61009 dotnet +Microsoft.Extensions.Configuration.UserSecrets 9.0.124.61010 dotnet +Microsoft.Extensions.Configuration.Xml 9.0.124.61010 dotnet +Microsoft.Extensions.DependencyInjection 9.0.124.61010 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.DependencyModel 9.0.124.61010 dotnet +Microsoft.Extensions.Diagnostics 9.0.124.61010 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 9.0.124.61009 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.124.61009 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.124.61009 dotnet +Microsoft.Extensions.Features 9.0.124.61009 dotnet +Microsoft.Extensions.FileProviders.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.FileProviders.Composite 9.0.124.61010 dotnet +Microsoft.Extensions.FileProviders.Embedded 9.0.124.61009 dotnet +Microsoft.Extensions.FileProviders.Physical 9.0.124.61010 dotnet +Microsoft.Extensions.FileSystemGlobbing 9.0.124.61010 dotnet +Microsoft.Extensions.Hosting 9.0.124.61010 dotnet +Microsoft.Extensions.Hosting.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.Http 9.0.124.61010 dotnet +Microsoft.Extensions.Identity.Core 9.0.124.61009 dotnet +Microsoft.Extensions.Identity.Stores 9.0.124.61009 dotnet +Microsoft.Extensions.Localization 9.0.124.61009 dotnet +Microsoft.Extensions.Localization.Abstractions 9.0.124.61009 dotnet +Microsoft.Extensions.Logging 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.Configuration 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.Console 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.Debug 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.EventLog 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.EventSource 9.0.124.61010 dotnet +Microsoft.Extensions.Logging.TraceSource 9.0.124.61010 dotnet +Microsoft.Extensions.ObjectPool 9.0.124.61009 dotnet +Microsoft.Extensions.Options 9.0.124.61010 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 9.0.124.61010 dotnet +Microsoft.Extensions.Options.DataAnnotations 9.0.124.61010 dotnet +Microsoft.Extensions.Primitives 9.0.124.61010 dotnet +Microsoft.Extensions.WebEncoders 9.0.124.61009 dotnet +Microsoft.JSInterop 9.0.124.61009 dotnet +Microsoft.Net.Http.Headers 9.0.124.61009 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 9.0.24.52809 dotnet -Microsoft.VisualBasic.Core 14.0.24.52809 dotnet -Microsoft.Win32.Primitives 9.0.24.52809 dotnet -Microsoft.Win32.Registry 9.0.24.52809 dotnet +Microsoft.VisualBasic 9.0.124.61010 dotnet +Microsoft.VisualBasic.Core 14.0.124.61010 dotnet +Microsoft.Win32.Primitives 9.0.124.61010 dotnet +Microsoft.Win32.Registry 9.0.124.61010 dotnet Microsoft.Win32.SystemEvents 9.0.24.52809 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.11.0.0 dotnet @@ -210,179 +210,179 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 9.0.24.52809 dotnet -System.AppContext 9.0.24.52809 dotnet -System.Buffers 9.0.24.52809 dotnet -System.Collections 9.0.24.52809 dotnet -System.Collections.Concurrent 9.0.24.52809 dotnet -System.Collections.Immutable 9.0.24.52809 dotnet -System.Collections.NonGeneric 9.0.24.52809 dotnet -System.Collections.Specialized 9.0.24.52809 dotnet -System.ComponentModel 9.0.24.52809 dotnet -System.ComponentModel.Annotations 9.0.24.52809 dotnet -System.ComponentModel.DataAnnotations 9.0.24.52809 dotnet -System.ComponentModel.EventBasedAsync 9.0.24.52809 dotnet -System.ComponentModel.Primitives 9.0.24.52809 dotnet -System.ComponentModel.TypeConverter 9.0.24.52809 dotnet -System.Configuration 9.0.24.52809 dotnet -System.Console 9.0.24.52809 dotnet -System.Core 9.0.24.52809 dotnet -System.Data 9.0.24.52809 dotnet -System.Data.Common 9.0.24.52809 dotnet -System.Data.DataSetExtensions 9.0.24.52809 dotnet -System.Diagnostics.Contracts 9.0.24.52809 dotnet -System.Diagnostics.Debug 9.0.24.52809 dotnet -System.Diagnostics.DiagnosticSource 9.0.24.52809 dotnet -System.Diagnostics.EventLog 9.0.24.52809 dotnet -System.Diagnostics.FileVersionInfo 9.0.24.52809 dotnet -System.Diagnostics.Process 9.0.24.52809 dotnet -System.Diagnostics.StackTrace 9.0.24.52809 dotnet -System.Diagnostics.TextWriterTraceListener 9.0.24.52809 dotnet -System.Diagnostics.Tools 9.0.24.52809 dotnet -System.Diagnostics.TraceSource 9.0.24.52809 dotnet -System.Diagnostics.Tracing 9.0.24.52809 dotnet -System.Drawing 9.0.24.52809 dotnet +System 9.0.124.61010 dotnet +System.AppContext 9.0.124.61010 dotnet +System.Buffers 9.0.124.61010 dotnet +System.Collections 9.0.124.61010 dotnet +System.Collections.Concurrent 9.0.124.61010 dotnet +System.Collections.Immutable 9.0.124.61010 dotnet +System.Collections.NonGeneric 9.0.124.61010 dotnet +System.Collections.Specialized 9.0.124.61010 dotnet +System.ComponentModel 9.0.124.61010 dotnet +System.ComponentModel.Annotations 9.0.124.61010 dotnet +System.ComponentModel.DataAnnotations 9.0.124.61010 dotnet +System.ComponentModel.EventBasedAsync 9.0.124.61010 dotnet +System.ComponentModel.Primitives 9.0.124.61010 dotnet +System.ComponentModel.TypeConverter 9.0.124.61010 dotnet +System.Configuration 9.0.124.61010 dotnet +System.Console 9.0.124.61010 dotnet +System.Core 9.0.124.61010 dotnet +System.Data 9.0.124.61010 dotnet +System.Data.Common 9.0.124.61010 dotnet +System.Data.DataSetExtensions 9.0.124.61010 dotnet +System.Diagnostics.Contracts 9.0.124.61010 dotnet +System.Diagnostics.Debug 9.0.124.61010 dotnet +System.Diagnostics.DiagnosticSource 9.0.124.61010 dotnet +System.Diagnostics.EventLog 9.0.124.61010 dotnet +System.Diagnostics.FileVersionInfo 9.0.124.61010 dotnet +System.Diagnostics.Process 9.0.124.61010 dotnet +System.Diagnostics.StackTrace 9.0.124.61010 dotnet +System.Diagnostics.TextWriterTraceListener 9.0.124.61010 dotnet +System.Diagnostics.Tools 9.0.124.61010 dotnet +System.Diagnostics.TraceSource 9.0.124.61010 dotnet +System.Diagnostics.Tracing 9.0.124.61010 dotnet +System.Drawing 9.0.124.61010 dotnet System.Drawing.Common 9.0.24.52901 dotnet -System.Drawing.Primitives 9.0.24.52809 dotnet -System.Dynamic.Runtime 9.0.24.52809 dotnet -System.Formats.Asn1 9.0.24.52809 dotnet -System.Formats.Tar 9.0.24.52809 dotnet -System.Globalization 9.0.24.52809 dotnet -System.Globalization.Calendars 9.0.24.52809 dotnet -System.Globalization.Extensions 9.0.24.52809 dotnet -System.IO 9.0.24.52809 dotnet -System.IO.Compression 9.0.24.52809 dotnet -System.IO.Compression.Brotli 9.0.24.52809 dotnet -System.IO.Compression.FileSystem 9.0.24.52809 dotnet -System.IO.Compression.ZipFile 9.0.24.52809 dotnet -System.IO.FileSystem 9.0.24.52809 dotnet -System.IO.FileSystem.AccessControl 9.0.24.52809 dotnet -System.IO.FileSystem.DriveInfo 9.0.24.52809 dotnet -System.IO.FileSystem.Primitives 9.0.24.52809 dotnet -System.IO.FileSystem.Watcher 9.0.24.52809 dotnet -System.IO.IsolatedStorage 9.0.24.52809 dotnet -System.IO.MemoryMappedFiles 9.0.24.52809 dotnet -System.IO.Pipelines 9.0.24.52809 dotnet -System.IO.Pipes 9.0.24.52809 dotnet -System.IO.Pipes.AccessControl 9.0.24.52809 dotnet -System.IO.UnmanagedMemoryStream 9.0.24.52809 dotnet -System.Linq 9.0.24.52809 dotnet +System.Drawing.Primitives 9.0.124.61010 dotnet +System.Dynamic.Runtime 9.0.124.61010 dotnet +System.Formats.Asn1 9.0.124.61010 dotnet +System.Formats.Tar 9.0.124.61010 dotnet +System.Globalization 9.0.124.61010 dotnet +System.Globalization.Calendars 9.0.124.61010 dotnet +System.Globalization.Extensions 9.0.124.61010 dotnet +System.IO 9.0.124.61010 dotnet +System.IO.Compression 9.0.124.61010 dotnet +System.IO.Compression.Brotli 9.0.124.61010 dotnet +System.IO.Compression.FileSystem 9.0.124.61010 dotnet +System.IO.Compression.ZipFile 9.0.124.61010 dotnet +System.IO.FileSystem 9.0.124.61010 dotnet +System.IO.FileSystem.AccessControl 9.0.124.61010 dotnet +System.IO.FileSystem.DriveInfo 9.0.124.61010 dotnet +System.IO.FileSystem.Primitives 9.0.124.61010 dotnet +System.IO.FileSystem.Watcher 9.0.124.61010 dotnet +System.IO.IsolatedStorage 9.0.124.61010 dotnet +System.IO.MemoryMappedFiles 9.0.124.61010 dotnet +System.IO.Pipelines 9.0.124.61010 dotnet +System.IO.Pipes 9.0.124.61010 dotnet +System.IO.Pipes.AccessControl 9.0.124.61010 dotnet +System.IO.UnmanagedMemoryStream 9.0.124.61010 dotnet +System.Linq 9.0.124.61010 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 9.0.24.52809 dotnet -System.Linq.Parallel 9.0.24.52809 dotnet -System.Linq.Queryable 9.0.24.52809 dotnet -System.Memory 9.0.24.52809 dotnet -System.Net 9.0.24.52809 dotnet -System.Net.Http 9.0.24.52809 dotnet -System.Net.Http.Json 9.0.24.52809 dotnet -System.Net.HttpListener 9.0.24.52809 dotnet -System.Net.Mail 9.0.24.52809 dotnet -System.Net.NameResolution 9.0.24.52809 dotnet -System.Net.NetworkInformation 9.0.24.52809 dotnet -System.Net.Ping 9.0.24.52809 dotnet -System.Net.Primitives 9.0.24.52809 dotnet -System.Net.Quic 9.0.24.52809 dotnet -System.Net.Requests 9.0.24.52809 dotnet -System.Net.Security 9.0.24.52809 dotnet -System.Net.ServicePoint 9.0.24.52809 dotnet -System.Net.Sockets 9.0.24.52809 dotnet -System.Net.WebClient 9.0.24.52809 dotnet -System.Net.WebHeaderCollection 9.0.24.52809 dotnet -System.Net.WebProxy 9.0.24.52809 dotnet -System.Net.WebSockets 9.0.24.52809 dotnet -System.Net.WebSockets.Client 9.0.24.52809 dotnet -System.Numerics 9.0.24.52809 dotnet -System.Numerics.Vectors 9.0.24.52809 dotnet -System.ObjectModel 9.0.24.52809 dotnet -System.Private.CoreLib 9.0.24.52809 dotnet -System.Private.DataContractSerialization 9.0.24.52809 dotnet -System.Private.Uri 9.0.24.52809 dotnet +System.Linq.Expressions 9.0.124.61010 dotnet +System.Linq.Parallel 9.0.124.61010 dotnet +System.Linq.Queryable 9.0.124.61010 dotnet +System.Memory 9.0.124.61010 dotnet +System.Net 9.0.124.61010 dotnet +System.Net.Http 9.0.124.61010 dotnet +System.Net.Http.Json 9.0.124.61010 dotnet +System.Net.HttpListener 9.0.124.61010 dotnet +System.Net.Mail 9.0.124.61010 dotnet +System.Net.NameResolution 9.0.124.61010 dotnet +System.Net.NetworkInformation 9.0.124.61010 dotnet +System.Net.Ping 9.0.124.61010 dotnet +System.Net.Primitives 9.0.124.61010 dotnet +System.Net.Quic 9.0.124.61010 dotnet +System.Net.Requests 9.0.124.61010 dotnet +System.Net.Security 9.0.124.61010 dotnet +System.Net.ServicePoint 9.0.124.61010 dotnet +System.Net.Sockets 9.0.124.61010 dotnet +System.Net.WebClient 9.0.124.61010 dotnet +System.Net.WebHeaderCollection 9.0.124.61010 dotnet +System.Net.WebProxy 9.0.124.61010 dotnet +System.Net.WebSockets 9.0.124.61010 dotnet +System.Net.WebSockets.Client 9.0.124.61010 dotnet +System.Numerics 9.0.124.61010 dotnet +System.Numerics.Vectors 9.0.124.61010 dotnet +System.ObjectModel 9.0.124.61010 dotnet +System.Private.CoreLib 9.0.124.61010 dotnet +System.Private.DataContractSerialization 9.0.124.61010 dotnet +System.Private.Uri 9.0.124.61010 dotnet System.Private.Windows.Core 9.0.24.52901 dotnet -System.Private.Xml 9.0.24.52809 dotnet -System.Private.Xml.Linq 9.0.24.52809 dotnet -System.Reflection 9.0.24.52809 dotnet -System.Reflection.DispatchProxy 9.0.24.52809 dotnet -System.Reflection.Emit 9.0.24.52809 dotnet -System.Reflection.Emit.ILGeneration 9.0.24.52809 dotnet -System.Reflection.Emit.Lightweight 9.0.24.52809 dotnet -System.Reflection.Extensions 9.0.24.52809 dotnet -System.Reflection.Metadata 9.0.24.52809 dotnet -System.Reflection.Primitives 9.0.24.52809 dotnet -System.Reflection.TypeExtensions 9.0.24.52809 dotnet -System.Resources.Reader 9.0.24.52809 dotnet -System.Resources.ResourceManager 9.0.24.52809 dotnet -System.Resources.Writer 9.0.24.52809 dotnet -System.Runtime 9.0.24.52809 dotnet -System.Runtime.CompilerServices.Unsafe 9.0.24.52809 dotnet -System.Runtime.CompilerServices.VisualC 9.0.24.52809 dotnet -System.Runtime.Extensions 9.0.24.52809 dotnet -System.Runtime.Handles 9.0.24.52809 dotnet -System.Runtime.InteropServices 9.0.24.52809 dotnet -System.Runtime.InteropServices.JavaScript 9.0.24.52809 dotnet -System.Runtime.InteropServices.RuntimeInformation 9.0.24.52809 dotnet -System.Runtime.Intrinsics 9.0.24.52809 dotnet -System.Runtime.Loader 9.0.24.52809 dotnet -System.Runtime.Numerics 9.0.24.52809 dotnet -System.Runtime.Serialization 9.0.24.52809 dotnet -System.Runtime.Serialization.Formatters 9.0.24.52809 dotnet -System.Runtime.Serialization.Json 9.0.24.52809 dotnet -System.Runtime.Serialization.Primitives 9.0.24.52809 dotnet -System.Runtime.Serialization.Xml 9.0.24.52809 dotnet -System.Security 9.0.24.52809 dotnet -System.Security.AccessControl 9.0.24.52809 dotnet -System.Security.Claims 9.0.24.52809 dotnet -System.Security.Cryptography 9.0.24.52809 dotnet -System.Security.Cryptography.Algorithms 9.0.24.52809 dotnet -System.Security.Cryptography.Cng 9.0.24.52809 dotnet -System.Security.Cryptography.Csp 9.0.24.52809 dotnet -System.Security.Cryptography.Encoding 9.0.24.52809 dotnet -System.Security.Cryptography.OpenSsl 9.0.24.52809 dotnet -System.Security.Cryptography.Pkcs 9.0.24.52809 dotnet -System.Security.Cryptography.Primitives 9.0.24.52809 dotnet -System.Security.Cryptography.X509Certificates 9.0.24.52809 dotnet -System.Security.Cryptography.Xml 9.0.24.52809 dotnet -System.Security.Principal 9.0.24.52809 dotnet -System.Security.Principal.Windows 9.0.24.52809 dotnet -System.Security.SecureString 9.0.24.52809 dotnet -System.ServiceModel.Web 9.0.24.52809 dotnet -System.ServiceProcess 9.0.24.52809 dotnet -System.Text.Encoding 9.0.24.52809 dotnet -System.Text.Encoding.CodePages 9.0.24.52809 dotnet -System.Text.Encoding.Extensions 9.0.24.52809 dotnet -System.Text.Encodings.Web 9.0.24.52809 dotnet -System.Text.Json 9.0.24.52809 dotnet -System.Text.RegularExpressions 9.0.24.52809 dotnet -System.Threading 9.0.24.52809 dotnet -System.Threading.Channels 9.0.24.52809 dotnet -System.Threading.Overlapped 9.0.24.52809 dotnet -System.Threading.RateLimiting 9.0.24.52809 dotnet -System.Threading.Tasks 9.0.24.52809 dotnet -System.Threading.Tasks.Dataflow 9.0.24.52809 dotnet -System.Threading.Tasks.Extensions 9.0.24.52809 dotnet -System.Threading.Tasks.Parallel 9.0.24.52809 dotnet -System.Threading.Thread 9.0.24.52809 dotnet -System.Threading.ThreadPool 9.0.24.52809 dotnet -System.Threading.Timer 9.0.24.52809 dotnet -System.Transactions 9.0.24.52809 dotnet -System.Transactions.Local 9.0.24.52809 dotnet -System.ValueTuple 9.0.24.52809 dotnet -System.Web 9.0.24.52809 dotnet -System.Web.HttpUtility 9.0.24.52809 dotnet -System.Windows 9.0.24.52809 dotnet -System.Xml 9.0.24.52809 dotnet -System.Xml.Linq 9.0.24.52809 dotnet -System.Xml.ReaderWriter 9.0.24.52809 dotnet -System.Xml.Serialization 9.0.24.52809 dotnet -System.Xml.XDocument 9.0.24.52809 dotnet -System.Xml.XPath 9.0.24.52809 dotnet -System.Xml.XPath.XDocument 9.0.24.52809 dotnet -System.Xml.XmlDocument 9.0.24.52809 dotnet -System.Xml.XmlSerializer 9.0.24.52809 dotnet +System.Private.Xml 9.0.124.61010 dotnet +System.Private.Xml.Linq 9.0.124.61010 dotnet +System.Reflection 9.0.124.61010 dotnet +System.Reflection.DispatchProxy 9.0.124.61010 dotnet +System.Reflection.Emit 9.0.124.61010 dotnet +System.Reflection.Emit.ILGeneration 9.0.124.61010 dotnet +System.Reflection.Emit.Lightweight 9.0.124.61010 dotnet +System.Reflection.Extensions 9.0.124.61010 dotnet +System.Reflection.Metadata 9.0.124.61010 dotnet +System.Reflection.Primitives 9.0.124.61010 dotnet +System.Reflection.TypeExtensions 9.0.124.61010 dotnet +System.Resources.Reader 9.0.124.61010 dotnet +System.Resources.ResourceManager 9.0.124.61010 dotnet +System.Resources.Writer 9.0.124.61010 dotnet +System.Runtime 9.0.124.61010 dotnet +System.Runtime.CompilerServices.Unsafe 9.0.124.61010 dotnet +System.Runtime.CompilerServices.VisualC 9.0.124.61010 dotnet +System.Runtime.Extensions 9.0.124.61010 dotnet +System.Runtime.Handles 9.0.124.61010 dotnet +System.Runtime.InteropServices 9.0.124.61010 dotnet +System.Runtime.InteropServices.JavaScript 9.0.124.61010 dotnet +System.Runtime.InteropServices.RuntimeInformation 9.0.124.61010 dotnet +System.Runtime.Intrinsics 9.0.124.61010 dotnet +System.Runtime.Loader 9.0.124.61010 dotnet +System.Runtime.Numerics 9.0.124.61010 dotnet +System.Runtime.Serialization 9.0.124.61010 dotnet +System.Runtime.Serialization.Formatters 9.0.124.61010 dotnet +System.Runtime.Serialization.Json 9.0.124.61010 dotnet +System.Runtime.Serialization.Primitives 9.0.124.61010 dotnet +System.Runtime.Serialization.Xml 9.0.124.61010 dotnet +System.Security 9.0.124.61010 dotnet +System.Security.AccessControl 9.0.124.61010 dotnet +System.Security.Claims 9.0.124.61010 dotnet +System.Security.Cryptography 9.0.124.61010 dotnet +System.Security.Cryptography.Algorithms 9.0.124.61010 dotnet +System.Security.Cryptography.Cng 9.0.124.61010 dotnet +System.Security.Cryptography.Csp 9.0.124.61010 dotnet +System.Security.Cryptography.Encoding 9.0.124.61010 dotnet +System.Security.Cryptography.OpenSsl 9.0.124.61010 dotnet +System.Security.Cryptography.Pkcs 9.0.124.61010 dotnet +System.Security.Cryptography.Primitives 9.0.124.61010 dotnet +System.Security.Cryptography.X509Certificates 9.0.124.61010 dotnet +System.Security.Cryptography.Xml 9.0.124.61010 dotnet +System.Security.Principal 9.0.124.61010 dotnet +System.Security.Principal.Windows 9.0.124.61010 dotnet +System.Security.SecureString 9.0.124.61010 dotnet +System.ServiceModel.Web 9.0.124.61010 dotnet +System.ServiceProcess 9.0.124.61010 dotnet +System.Text.Encoding 9.0.124.61010 dotnet +System.Text.Encoding.CodePages 9.0.124.61010 dotnet +System.Text.Encoding.Extensions 9.0.124.61010 dotnet +System.Text.Encodings.Web 9.0.124.61010 dotnet +System.Text.Json 9.0.124.61010 dotnet +System.Text.RegularExpressions 9.0.124.61010 dotnet +System.Threading 9.0.124.61010 dotnet +System.Threading.Channels 9.0.124.61010 dotnet +System.Threading.Overlapped 9.0.124.61010 dotnet +System.Threading.RateLimiting 9.0.124.61010 dotnet +System.Threading.Tasks 9.0.124.61010 dotnet +System.Threading.Tasks.Dataflow 9.0.124.61010 dotnet +System.Threading.Tasks.Extensions 9.0.124.61010 dotnet +System.Threading.Tasks.Parallel 9.0.124.61010 dotnet +System.Threading.Thread 9.0.124.61010 dotnet +System.Threading.ThreadPool 9.0.124.61010 dotnet +System.Threading.Timer 9.0.124.61010 dotnet +System.Transactions 9.0.124.61010 dotnet +System.Transactions.Local 9.0.124.61010 dotnet +System.ValueTuple 9.0.124.61010 dotnet +System.Web 9.0.124.61010 dotnet +System.Web.HttpUtility 9.0.124.61010 dotnet +System.Windows 9.0.124.61010 dotnet +System.Xml 9.0.124.61010 dotnet +System.Xml.Linq 9.0.124.61010 dotnet +System.Xml.ReaderWriter 9.0.124.61010 dotnet +System.Xml.Serialization 9.0.124.61010 dotnet +System.Xml.XDocument 9.0.124.61010 dotnet +System.Xml.XPath 9.0.124.61010 dotnet +System.Xml.XPath.XDocument 9.0.124.61010 dotnet +System.Xml.XmlDocument 9.0.124.61010 dotnet +System.Xml.XmlSerializer 9.0.124.61010 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 9.0.24.52809 dotnet +WindowsBase 9.0.124.61010 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -422,10 +422,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025011305+ubu2404 deb +jellyfin 2025012005+ubu2404 deb jellyfin-ffmpeg7 7.0.2-8-noble deb -jellyfin-server 2025011305+ubu2404 deb -jellyfin-web 2025011305+ubu2404 deb +jellyfin-server 2025012005+ubu2404 deb +jellyfin-web 2025012005+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -573,11 +573,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.3 deb mount 2.39.3-9ubuntu6.1 deb -mscorlib 9.0.24.52809 dotnet +mscorlib 9.0.124.61010 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 9.0.24.52809 dotnet +netstandard 9.0.124.61010 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb From 6878f713c50b82093e2b61de2bb0616bf935d2ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Jan 2025 03:17:27 +0000 Subject: [PATCH 2114/2257] Bot Updating Package Versions --- package_versions.txt | 578 +++++++++++++++++++++---------------------- 1 file changed, 289 insertions(+), 289 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e1ad053..e4c0d1c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.2.0 dotnet -Audio Tools Library (ATL) for .NET 6.8.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.11.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.3.0 dotnet BlurHashSharp.SkiaSharp 1.3.3.0 dotnet @@ -16,107 +16,107 @@ HarfBuzzSharp 7.3.0.3 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.3 dotnet (+13 duplicates) +Jellyfin Server 10.10.4 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.3 dotnet -Jellyfin.Extensions.dll 10.10.3 dotnet +Jellyfin.Data.dll 10.10.4 dotnet +Jellyfin.Extensions.dll 10.10.4 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.3 dotnet +Jellyfin.Networking.dll 10.10.4 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authentication 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authorization 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Components 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Components.Server 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Components.Web 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Cors 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1124.52116 dotnet -Microsoft.AspNetCore.DataProtection 8.0.1124.52116 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1124.52116 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Hosting 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http.Features 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Http.Results 8.0.1124.52116 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.1124.52116 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.1124.52116 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Identity 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Localization 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Metadata 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1124.52116 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.1124.52116 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Razor 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.1124.52116 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.1124.52116 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.1124.52116 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Rewrite 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Routing 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1124.52116 dotnet -Microsoft.AspNetCore.Session 8.0.1124.52116 dotnet -Microsoft.AspNetCore.SignalR 8.0.1124.52116 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.1124.52116 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.1124.52116 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1124.52116 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.1124.52116 dotnet -Microsoft.AspNetCore.WebSockets 8.0.1124.52116 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.1124.52116 dotnet +Microsoft.AspNetCore 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authentication 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authorization 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Components 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Components.Server 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Components.Web 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Cors 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1224.60312 dotnet +Microsoft.AspNetCore.DataProtection 8.0.1224.60312 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1224.60312 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Hosting 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http.Features 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Http.Results 8.0.1224.60312 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.1224.60312 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.1224.60312 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Identity 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Localization 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Metadata 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1224.60312 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.1224.60312 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Razor 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.1224.60312 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.1224.60312 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.1224.60312 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Rewrite 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Routing 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1224.60312 dotnet +Microsoft.AspNetCore.Session 8.0.1224.60312 dotnet +Microsoft.AspNetCore.SignalR 8.0.1224.60312 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.1224.60312 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.1224.60312 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1224.60312 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.1224.60312 dotnet +Microsoft.AspNetCore.WebSockets 8.0.1224.60312 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.1224.60312 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.1124.51707 dotnet +Microsoft.CSharp 8.0.1224.60305 dotnet Microsoft.Data.Sqlite 8.0.1124.52104 dotnet Microsoft.EntityFrameworkCore 8.0.1124.52104 dotnet Microsoft.EntityFrameworkCore.Abstractions 8.0.1124.52104 dotnet @@ -131,55 +131,55 @@ Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Json 8.0.1024.47404 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.1124.52116 dotnet -Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.47404 dotnet -Microsoft.Extensions.Configuration.Xml 8.0.1024.47404 dotnet +Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.1224.60312 dotnet +Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet +Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.46610 dotnet Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics 8.0.1024.47404 dotnet +Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1124.52116 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1124.52116 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1224.60312 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1224.60312 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1124.52116 dotnet -Microsoft.Extensions.Features 8.0.1124.52116 dotnet +Microsoft.Extensions.Features 8.0.1224.60312 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.1124.52116 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.1224.60312 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet -Microsoft.Extensions.Hosting.Abstractions 8.0.1024.47404 dotnet +Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet Microsoft.Extensions.Http 8.0.1024.46610 dotnet -Microsoft.Extensions.Identity.Core 8.0.1124.52116 dotnet -Microsoft.Extensions.Identity.Stores 8.0.1124.52116 dotnet -Microsoft.Extensions.Localization 8.0.1124.52116 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.1124.52116 dotnet +Microsoft.Extensions.Identity.Core 8.0.1224.60312 dotnet +Microsoft.Extensions.Identity.Stores 8.0.1224.60312 dotnet +Microsoft.Extensions.Localization 8.0.1224.60312 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.1224.60312 dotnet Microsoft.Extensions.Logging 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.1024.47404 dotnet -Microsoft.Extensions.Logging.Configuration 8.0.1024.47404 dotnet -Microsoft.Extensions.Logging.Console 8.0.1024.47404 dotnet -Microsoft.Extensions.Logging.Debug 8.0.1024.47404 dotnet -Microsoft.Extensions.Logging.EventLog 8.0.1024.47404 dotnet -Microsoft.Extensions.Logging.EventSource 8.0.1024.47404 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet -Microsoft.Extensions.ObjectPool 8.0.1124.52116 dotnet +Microsoft.Extensions.ObjectPool 8.0.1224.60312 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.1124.52116 dotnet -Microsoft.JSInterop 8.0.1124.52116 dotnet -Microsoft.Net.Http.Headers 8.0.1124.52116 dotnet +Microsoft.Extensions.WebEncoders 8.0.1224.60312 dotnet +Microsoft.JSInterop 8.0.1224.60312 dotnet +Microsoft.Net.Http.Headers 8.0.1224.60312 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.1124.51707 dotnet -Microsoft.VisualBasic.Core 13.0.1124.51707 dotnet -Microsoft.Win32.Primitives 8.0.1124.51707 dotnet -Microsoft.Win32.Registry 8.0.1124.51707 dotnet +Microsoft.VisualBasic 8.0.1224.60305 dotnet +Microsoft.VisualBasic.Core 13.0.1224.60305 dotnet +Microsoft.Win32.Primitives 8.0.1224.60305 dotnet +Microsoft.Win32.Registry 8.0.1224.60305 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet -NEbml.Core 0.11.0.0 dotnet +NEbml.Core 0.12.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet Prometheus.AspNetCore.dll 8.2.1 dotnet Prometheus.NetStandard.dll 8.2.1 dotnet @@ -209,178 +209,178 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.1124.51707 dotnet -System.AppContext 8.0.1124.51707 dotnet -System.Buffers 8.0.1124.51707 dotnet -System.Collections 8.0.1124.51707 dotnet -System.Collections.Concurrent 8.0.1124.51707 dotnet -System.Collections.Immutable 8.0.1124.51707 dotnet -System.Collections.NonGeneric 8.0.1124.51707 dotnet -System.Collections.Specialized 8.0.1124.51707 dotnet -System.ComponentModel 8.0.1124.51707 dotnet -System.ComponentModel.Annotations 8.0.1124.51707 dotnet -System.ComponentModel.DataAnnotations 8.0.1124.51707 dotnet -System.ComponentModel.EventBasedAsync 8.0.1124.51707 dotnet -System.ComponentModel.Primitives 8.0.1124.51707 dotnet -System.ComponentModel.TypeConverter 8.0.1124.51707 dotnet -System.Configuration 8.0.1124.51707 dotnet -System.Console 8.0.1124.51707 dotnet -System.Core 8.0.1124.51707 dotnet -System.Data 8.0.1124.51707 dotnet -System.Data.Common 8.0.1124.51707 dotnet -System.Data.DataSetExtensions 8.0.1124.51707 dotnet -System.Diagnostics.Contracts 8.0.1124.51707 dotnet -System.Diagnostics.Debug 8.0.1124.51707 dotnet -System.Diagnostics.DiagnosticSource 8.0.1124.51707 dotnet -System.Diagnostics.EventLog 8.0.1024.47404 dotnet -System.Diagnostics.FileVersionInfo 8.0.1124.51707 dotnet -System.Diagnostics.Process 8.0.1124.51707 dotnet -System.Diagnostics.StackTrace 8.0.1124.51707 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.1124.51707 dotnet -System.Diagnostics.Tools 8.0.1124.51707 dotnet -System.Diagnostics.TraceSource 8.0.1124.51707 dotnet -System.Diagnostics.Tracing 8.0.1124.51707 dotnet -System.Drawing 8.0.1124.51707 dotnet +System 8.0.1224.60305 dotnet +System.AppContext 8.0.1224.60305 dotnet +System.Buffers 8.0.1224.60305 dotnet +System.Collections 8.0.1224.60305 dotnet +System.Collections.Concurrent 8.0.1224.60305 dotnet +System.Collections.Immutable 8.0.1224.60305 dotnet +System.Collections.NonGeneric 8.0.1224.60305 dotnet +System.Collections.Specialized 8.0.1224.60305 dotnet +System.ComponentModel 8.0.1224.60305 dotnet +System.ComponentModel.Annotations 8.0.1224.60305 dotnet +System.ComponentModel.DataAnnotations 8.0.1224.60305 dotnet +System.ComponentModel.EventBasedAsync 8.0.1224.60305 dotnet +System.ComponentModel.Primitives 8.0.1224.60305 dotnet +System.ComponentModel.TypeConverter 8.0.1224.60305 dotnet +System.Configuration 8.0.1224.60305 dotnet +System.Console 8.0.1224.60305 dotnet +System.Core 8.0.1224.60305 dotnet +System.Data 8.0.1224.60305 dotnet +System.Data.Common 8.0.1224.60305 dotnet +System.Data.DataSetExtensions 8.0.1224.60305 dotnet +System.Diagnostics.Contracts 8.0.1224.60305 dotnet +System.Diagnostics.Debug 8.0.1224.60305 dotnet +System.Diagnostics.DiagnosticSource 8.0.1224.60305 dotnet +System.Diagnostics.EventLog 8.0.1024.46610 dotnet +System.Diagnostics.FileVersionInfo 8.0.1224.60305 dotnet +System.Diagnostics.Process 8.0.1224.60305 dotnet +System.Diagnostics.StackTrace 8.0.1224.60305 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.1224.60305 dotnet +System.Diagnostics.Tools 8.0.1224.60305 dotnet +System.Diagnostics.TraceSource 8.0.1224.60305 dotnet +System.Diagnostics.Tracing 8.0.1224.60305 dotnet +System.Drawing 8.0.1224.60305 dotnet System.Drawing.Common 8.0.824.36606 dotnet -System.Drawing.Primitives 8.0.1124.51707 dotnet -System.Dynamic.Runtime 8.0.1124.51707 dotnet -System.Formats.Asn1 8.0.1124.51707 dotnet -System.Formats.Tar 8.0.1124.51707 dotnet -System.Globalization 8.0.1124.51707 dotnet -System.Globalization.Calendars 8.0.1124.51707 dotnet -System.Globalization.Extensions 8.0.1124.51707 dotnet -System.IO 8.0.1124.51707 dotnet -System.IO.Compression 8.0.1124.51707 dotnet -System.IO.Compression.Brotli 8.0.1124.51707 dotnet -System.IO.Compression.FileSystem 8.0.1124.51707 dotnet -System.IO.Compression.ZipFile 8.0.1124.51707 dotnet -System.IO.FileSystem 8.0.1124.51707 dotnet -System.IO.FileSystem.AccessControl 8.0.1124.51707 dotnet -System.IO.FileSystem.DriveInfo 8.0.1124.51707 dotnet -System.IO.FileSystem.Primitives 8.0.1124.51707 dotnet -System.IO.FileSystem.Watcher 8.0.1124.51707 dotnet -System.IO.IsolatedStorage 8.0.1124.51707 dotnet -System.IO.MemoryMappedFiles 8.0.1124.51707 dotnet +System.Drawing.Primitives 8.0.1224.60305 dotnet +System.Dynamic.Runtime 8.0.1224.60305 dotnet +System.Formats.Asn1 8.0.1224.60305 dotnet +System.Formats.Tar 8.0.1224.60305 dotnet +System.Globalization 8.0.1224.60305 dotnet +System.Globalization.Calendars 8.0.1224.60305 dotnet +System.Globalization.Extensions 8.0.1224.60305 dotnet +System.IO 8.0.1224.60305 dotnet +System.IO.Compression 8.0.1224.60305 dotnet +System.IO.Compression.Brotli 8.0.1224.60305 dotnet +System.IO.Compression.FileSystem 8.0.1224.60305 dotnet +System.IO.Compression.ZipFile 8.0.1224.60305 dotnet +System.IO.FileSystem 8.0.1224.60305 dotnet +System.IO.FileSystem.AccessControl 8.0.1224.60305 dotnet +System.IO.FileSystem.DriveInfo 8.0.1224.60305 dotnet +System.IO.FileSystem.Primitives 8.0.1224.60305 dotnet +System.IO.FileSystem.Watcher 8.0.1224.60305 dotnet +System.IO.IsolatedStorage 8.0.1224.60305 dotnet +System.IO.MemoryMappedFiles 8.0.1224.60305 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.1124.51707 dotnet -System.IO.Pipes.AccessControl 8.0.1124.51707 dotnet -System.IO.UnmanagedMemoryStream 8.0.1124.51707 dotnet -System.Linq 8.0.1124.51707 dotnet +System.IO.Pipes 8.0.1224.60305 dotnet +System.IO.Pipes.AccessControl 8.0.1224.60305 dotnet +System.IO.UnmanagedMemoryStream 8.0.1224.60305 dotnet +System.Linq 8.0.1224.60305 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.1124.51707 dotnet -System.Linq.Parallel 8.0.1124.51707 dotnet -System.Linq.Queryable 8.0.1124.51707 dotnet -System.Memory 8.0.1124.51707 dotnet -System.Net 8.0.1124.51707 dotnet -System.Net.Http 8.0.1124.51707 dotnet -System.Net.Http.Json 8.0.1124.51707 dotnet -System.Net.HttpListener 8.0.1124.51707 dotnet -System.Net.Mail 8.0.1124.51707 dotnet -System.Net.NameResolution 8.0.1124.51707 dotnet -System.Net.NetworkInformation 8.0.1124.51707 dotnet -System.Net.Ping 8.0.1124.51707 dotnet -System.Net.Primitives 8.0.1124.51707 dotnet -System.Net.Quic 8.0.1124.51707 dotnet -System.Net.Requests 8.0.1124.51707 dotnet -System.Net.Security 8.0.1124.51707 dotnet -System.Net.ServicePoint 8.0.1124.51707 dotnet -System.Net.Sockets 8.0.1124.51707 dotnet -System.Net.WebClient 8.0.1124.51707 dotnet -System.Net.WebHeaderCollection 8.0.1124.51707 dotnet -System.Net.WebProxy 8.0.1124.51707 dotnet -System.Net.WebSockets 8.0.1124.51707 dotnet -System.Net.WebSockets.Client 8.0.1124.51707 dotnet -System.Numerics 8.0.1124.51707 dotnet -System.Numerics.Vectors 8.0.1124.51707 dotnet -System.ObjectModel 8.0.1124.51707 dotnet -System.Private.CoreLib 8.0.1124.51707 dotnet -System.Private.DataContractSerialization 8.0.1124.51707 dotnet -System.Private.Uri 8.0.1124.51707 dotnet -System.Private.Xml 8.0.1124.51707 dotnet -System.Private.Xml.Linq 8.0.1124.51707 dotnet -System.Reflection 8.0.1124.51707 dotnet -System.Reflection.DispatchProxy 8.0.1124.51707 dotnet -System.Reflection.Emit 8.0.1124.51707 dotnet -System.Reflection.Emit.ILGeneration 8.0.1124.51707 dotnet -System.Reflection.Emit.Lightweight 8.0.1124.51707 dotnet -System.Reflection.Extensions 8.0.1124.51707 dotnet -System.Reflection.Metadata 8.0.1124.51707 dotnet -System.Reflection.Primitives 8.0.1124.51707 dotnet -System.Reflection.TypeExtensions 8.0.1124.51707 dotnet -System.Resources.Reader 8.0.1124.51707 dotnet -System.Resources.ResourceManager 8.0.1124.51707 dotnet -System.Resources.Writer 8.0.1124.51707 dotnet -System.Runtime 8.0.1124.51707 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.1124.51707 dotnet -System.Runtime.CompilerServices.VisualC 8.0.1124.51707 dotnet -System.Runtime.Extensions 8.0.1124.51707 dotnet -System.Runtime.Handles 8.0.1124.51707 dotnet -System.Runtime.InteropServices 8.0.1124.51707 dotnet -System.Runtime.InteropServices.JavaScript 8.0.1124.51707 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.1124.51707 dotnet -System.Runtime.Intrinsics 8.0.1124.51707 dotnet -System.Runtime.Loader 8.0.1124.51707 dotnet -System.Runtime.Numerics 8.0.1124.51707 dotnet -System.Runtime.Serialization 8.0.1124.51707 dotnet -System.Runtime.Serialization.Formatters 8.0.1124.51707 dotnet -System.Runtime.Serialization.Json 8.0.1124.51707 dotnet -System.Runtime.Serialization.Primitives 8.0.1124.51707 dotnet -System.Runtime.Serialization.Xml 8.0.1124.51707 dotnet -System.Security 8.0.1124.51707 dotnet -System.Security.AccessControl 8.0.1124.51707 dotnet -System.Security.Claims 8.0.1124.51707 dotnet -System.Security.Cryptography 8.0.1124.51707 dotnet -System.Security.Cryptography.Algorithms 8.0.1124.51707 dotnet -System.Security.Cryptography.Cng 8.0.1124.51707 dotnet -System.Security.Cryptography.Csp 8.0.1124.51707 dotnet -System.Security.Cryptography.Encoding 8.0.1124.51707 dotnet -System.Security.Cryptography.OpenSsl 8.0.1124.51707 dotnet +System.Linq.Expressions 8.0.1224.60305 dotnet +System.Linq.Parallel 8.0.1224.60305 dotnet +System.Linq.Queryable 8.0.1224.60305 dotnet +System.Memory 8.0.1224.60305 dotnet +System.Net 8.0.1224.60305 dotnet +System.Net.Http 8.0.1224.60305 dotnet +System.Net.Http.Json 8.0.1224.60305 dotnet +System.Net.HttpListener 8.0.1224.60305 dotnet +System.Net.Mail 8.0.1224.60305 dotnet +System.Net.NameResolution 8.0.1224.60305 dotnet +System.Net.NetworkInformation 8.0.1224.60305 dotnet +System.Net.Ping 8.0.1224.60305 dotnet +System.Net.Primitives 8.0.1224.60305 dotnet +System.Net.Quic 8.0.1224.60305 dotnet +System.Net.Requests 8.0.1224.60305 dotnet +System.Net.Security 8.0.1224.60305 dotnet +System.Net.ServicePoint 8.0.1224.60305 dotnet +System.Net.Sockets 8.0.1224.60305 dotnet +System.Net.WebClient 8.0.1224.60305 dotnet +System.Net.WebHeaderCollection 8.0.1224.60305 dotnet +System.Net.WebProxy 8.0.1224.60305 dotnet +System.Net.WebSockets 8.0.1224.60305 dotnet +System.Net.WebSockets.Client 8.0.1224.60305 dotnet +System.Numerics 8.0.1224.60305 dotnet +System.Numerics.Vectors 8.0.1224.60305 dotnet +System.ObjectModel 8.0.1224.60305 dotnet +System.Private.CoreLib 8.0.1224.60305 dotnet +System.Private.DataContractSerialization 8.0.1224.60305 dotnet +System.Private.Uri 8.0.1224.60305 dotnet +System.Private.Xml 8.0.1224.60305 dotnet +System.Private.Xml.Linq 8.0.1224.60305 dotnet +System.Reflection 8.0.1224.60305 dotnet +System.Reflection.DispatchProxy 8.0.1224.60305 dotnet +System.Reflection.Emit 8.0.1224.60305 dotnet +System.Reflection.Emit.ILGeneration 8.0.1224.60305 dotnet +System.Reflection.Emit.Lightweight 8.0.1224.60305 dotnet +System.Reflection.Extensions 8.0.1224.60305 dotnet +System.Reflection.Metadata 8.0.1224.60305 dotnet +System.Reflection.Primitives 8.0.1224.60305 dotnet +System.Reflection.TypeExtensions 8.0.1224.60305 dotnet +System.Resources.Reader 8.0.1224.60305 dotnet +System.Resources.ResourceManager 8.0.1224.60305 dotnet +System.Resources.Writer 8.0.1224.60305 dotnet +System.Runtime 8.0.1224.60305 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.1224.60305 dotnet +System.Runtime.CompilerServices.VisualC 8.0.1224.60305 dotnet +System.Runtime.Extensions 8.0.1224.60305 dotnet +System.Runtime.Handles 8.0.1224.60305 dotnet +System.Runtime.InteropServices 8.0.1224.60305 dotnet +System.Runtime.InteropServices.JavaScript 8.0.1224.60305 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.1224.60305 dotnet +System.Runtime.Intrinsics 8.0.1224.60305 dotnet +System.Runtime.Loader 8.0.1224.60305 dotnet +System.Runtime.Numerics 8.0.1224.60305 dotnet +System.Runtime.Serialization 8.0.1224.60305 dotnet +System.Runtime.Serialization.Formatters 8.0.1224.60305 dotnet +System.Runtime.Serialization.Json 8.0.1224.60305 dotnet +System.Runtime.Serialization.Primitives 8.0.1224.60305 dotnet +System.Runtime.Serialization.Xml 8.0.1224.60305 dotnet +System.Security 8.0.1224.60305 dotnet +System.Security.AccessControl 8.0.1224.60305 dotnet +System.Security.Claims 8.0.1224.60305 dotnet +System.Security.Cryptography 8.0.1224.60305 dotnet +System.Security.Cryptography.Algorithms 8.0.1224.60305 dotnet +System.Security.Cryptography.Cng 8.0.1224.60305 dotnet +System.Security.Cryptography.Csp 8.0.1224.60305 dotnet +System.Security.Cryptography.Encoding 8.0.1224.60305 dotnet +System.Security.Cryptography.OpenSsl 8.0.1224.60305 dotnet System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet -System.Security.Cryptography.Primitives 8.0.1124.51707 dotnet -System.Security.Cryptography.X509Certificates 8.0.1124.51707 dotnet +System.Security.Cryptography.Primitives 8.0.1224.60305 dotnet +System.Security.Cryptography.X509Certificates 8.0.1224.60305 dotnet System.Security.Cryptography.Xml 8.0.1024.46610 dotnet -System.Security.Principal 8.0.1124.51707 dotnet -System.Security.Principal.Windows 8.0.1124.51707 dotnet -System.Security.SecureString 8.0.1124.51707 dotnet -System.ServiceModel.Web 8.0.1124.51707 dotnet -System.ServiceProcess 8.0.1124.51707 dotnet -System.Text.Encoding 8.0.1124.51707 dotnet -System.Text.Encoding.CodePages 8.0.1124.51707 dotnet -System.Text.Encoding.Extensions 8.0.1124.51707 dotnet -System.Text.Encodings.Web 8.0.1124.51707 dotnet -System.Text.Json 8.0.1124.51707 dotnet -System.Text.RegularExpressions 8.0.1124.51707 dotnet -System.Threading 8.0.1124.51707 dotnet -System.Threading.Channels 8.0.1124.51707 dotnet -System.Threading.Overlapped 8.0.1124.51707 dotnet +System.Security.Principal 8.0.1224.60305 dotnet +System.Security.Principal.Windows 8.0.1224.60305 dotnet +System.Security.SecureString 8.0.1224.60305 dotnet +System.ServiceModel.Web 8.0.1224.60305 dotnet +System.ServiceProcess 8.0.1224.60305 dotnet +System.Text.Encoding 8.0.1224.60305 dotnet +System.Text.Encoding.CodePages 8.0.1224.60305 dotnet +System.Text.Encoding.Extensions 8.0.1224.60305 dotnet +System.Text.Encodings.Web 8.0.1224.60305 dotnet +System.Text.Json 8.0.1224.60305 dotnet +System.Text.RegularExpressions 8.0.1224.60305 dotnet +System.Threading 8.0.1224.60305 dotnet +System.Threading.Channels 8.0.1224.60305 dotnet +System.Threading.Overlapped 8.0.1224.60305 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.1124.51707 dotnet -System.Threading.Tasks.Dataflow 8.0.1124.51707 dotnet -System.Threading.Tasks.Extensions 8.0.1124.51707 dotnet -System.Threading.Tasks.Parallel 8.0.1124.51707 dotnet -System.Threading.Thread 8.0.1124.51707 dotnet -System.Threading.ThreadPool 8.0.1124.51707 dotnet -System.Threading.Timer 8.0.1124.51707 dotnet -System.Transactions 8.0.1124.51707 dotnet -System.Transactions.Local 8.0.1124.51707 dotnet -System.ValueTuple 8.0.1124.51707 dotnet -System.Web 8.0.1124.51707 dotnet -System.Web.HttpUtility 8.0.1124.51707 dotnet -System.Windows 8.0.1124.51707 dotnet -System.Xml 8.0.1124.51707 dotnet -System.Xml.Linq 8.0.1124.51707 dotnet -System.Xml.ReaderWriter 8.0.1124.51707 dotnet -System.Xml.Serialization 8.0.1124.51707 dotnet -System.Xml.XDocument 8.0.1124.51707 dotnet -System.Xml.XPath 8.0.1124.51707 dotnet -System.Xml.XPath.XDocument 8.0.1124.51707 dotnet -System.Xml.XmlDocument 8.0.1124.51707 dotnet -System.Xml.XmlSerializer 8.0.1124.51707 dotnet +System.Threading.Tasks 8.0.1224.60305 dotnet +System.Threading.Tasks.Dataflow 8.0.1224.60305 dotnet +System.Threading.Tasks.Extensions 8.0.1224.60305 dotnet +System.Threading.Tasks.Parallel 8.0.1224.60305 dotnet +System.Threading.Thread 8.0.1224.60305 dotnet +System.Threading.ThreadPool 8.0.1224.60305 dotnet +System.Threading.Timer 8.0.1224.60305 dotnet +System.Transactions 8.0.1224.60305 dotnet +System.Transactions.Local 8.0.1224.60305 dotnet +System.ValueTuple 8.0.1224.60305 dotnet +System.Web 8.0.1224.60305 dotnet +System.Web.HttpUtility 8.0.1224.60305 dotnet +System.Windows 8.0.1224.60305 dotnet +System.Xml 8.0.1224.60305 dotnet +System.Xml.Linq 8.0.1224.60305 dotnet +System.Xml.ReaderWriter 8.0.1224.60305 dotnet +System.Xml.Serialization 8.0.1224.60305 dotnet +System.Xml.XDocument 8.0.1224.60305 dotnet +System.Xml.XPath 8.0.1224.60305 dotnet +System.Xml.XPath.XDocument 8.0.1224.60305 dotnet +System.Xml.XmlDocument 8.0.1224.60305 dotnet +System.Xml.XmlSerializer 8.0.1224.60305 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.1124.51707 dotnet +WindowsBase 8.0.1224.60305 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.3+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-8-noble deb -jellyfin-server 10.10.3+ubu2404 deb -jellyfin-web 10.10.3+ubu2404 deb +jellyfin 10.10.4+ubu2404 deb +jellyfin-ffmpeg7 7.0.2-9-noble deb +jellyfin-server 10.10.4+ubu2404 deb +jellyfin-web 10.10.4+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -568,11 +568,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.0.9-0ubuntu0.3 deb mount 2.39.3-9ubuntu6.1 deb -mscorlib 8.0.1124.51707 dotnet +mscorlib 8.0.1224.60305 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.1124.51707 dotnet +netstandard 8.0.1224.60305 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb From 59af1fdcc65e5b9c6f1fcc7bcf6807136d5e69d6 Mon Sep 17 00:00:00 2001 From: quietsy <github@qtsy.cc> Date: Wed, 22 Jan 2025 14:53:44 +0200 Subject: [PATCH 2115/2257] Add categories to readme-vars.yml --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index c524af4..7445a95 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -5,6 +5,7 @@ project_name: jellyfin project_url: "https://github.com/jellyfin/jellyfin" project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-logo.png" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" +project_categories: "Media Servers,Music,Audiobooks" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it." # supported architectures available_architectures: From 144eb37b33f1beb04f2d992deabe1dfc7b6edc53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Jan 2025 20:14:08 +0000 Subject: [PATCH 2116/2257] 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 e4c0d1c..d66bf03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,8 +2,8 @@ NAME VERSION AsyncKeyedLock 7.0.2.0 dotnet Audio Tools Library (ATL) for .NET 6.11.0.0 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet -BlurHashSharp 1.3.3.0 dotnet -BlurHashSharp.SkiaSharp 1.3.3.0 dotnet +BlurHashSharp 1.3.4.0 dotnet +BlurHashSharp.SkiaSharp 1.3.4.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet @@ -16,14 +16,14 @@ HarfBuzzSharp 7.3.0.3 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.4 dotnet (+13 duplicates) +Jellyfin Server 10.10.5 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.4 dotnet -Jellyfin.Extensions.dll 10.10.4 dotnet +Jellyfin.Data.dll 10.10.5 dotnet +Jellyfin.Extensions.dll 10.10.5 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.4 dotnet +Jellyfin.Networking.dll 10.10.5 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -420,10 +420,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.4+ubu2404 deb +jellyfin 10.10.5+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 10.10.4+ubu2404 deb -jellyfin-web 10.10.4+ubu2404 deb +jellyfin-server 10.10.5+ubu2404 deb +jellyfin-web 10.10.5+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From fbbc4acc71a37075a8ecb527abba466e41d85115 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 12:51:56 +0000 Subject: [PATCH 2117/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d66bf03..9d4bc79 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -455,7 +455,7 @@ libdrm-nouveau2 2.4.120-2buil libdrm-radeon1 2.4.120-2build1 deb libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb -libelf1t64 0.190-1.1build4 deb +libelf1t64 0.190-1.1build4.1 deb libexpat1 2.6.1-2ubuntu0.2 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb From fe907d3f918e613eb2731403a493acaa934f1b82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 12:55:01 +0000 Subject: [PATCH 2118/2257] 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 69a0458..41faafd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -423,7 +423,7 @@ gzip 1.12-1ubuntu3 hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 2025012005+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-8-noble deb +jellyfin-ffmpeg7 7.0.2-9-noble deb jellyfin-server 2025012005+ubu2404 deb jellyfin-web 2025012005+ubu2404 deb jq 1.7.1-3build1 deb @@ -460,7 +460,7 @@ libdrm-nouveau2 2.4.120-2buil libdrm-radeon1 2.4.120-2build1 deb libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb -libelf1t64 0.190-1.1build4 deb +libelf1t64 0.190-1.1build4.1 deb libexpat1 2.6.1-2ubuntu0.2 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb From bea03dc731662df867a5b6ce043d9066dd89737e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 12:54:09 +0000 Subject: [PATCH 2119/2257] Bot Updating Templated Files --- Jenkinsfile | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2a0af80..a0f94ef 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 02fdbf85169629ac9a145ed9257aa95eee0a858c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 12:56:51 +0000 Subject: [PATCH 2120/2257] 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 cd8f883..f47d603 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 a1b8f4e..27771a7 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 e70b8ef..2840e04 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-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY - if grep -q "^jellyfin_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^jellyfin_nightly_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_nightly_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY + elif grep -q "^jellyfin_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_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 -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY + if grep -q "^jellyfin_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 01da828..ea663fc 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 7a2e1074c8c10c2a596448e98c397ac2d5ee439f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 13:00:27 +0000 Subject: [PATCH 2121/2257] Bot Updating Package Versions --- package_versions.txt | 50 ++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 27 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 41faafd..954de47 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -390,7 +390,7 @@ at 3.2.5-2.1ubun base-files 13ubuntu10.1 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.1 deb +bsdutils 1:2.39.3-9ubuntu6.2 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6 deb @@ -435,30 +435,25 @@ libacl1 2.3.2-1build1 libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb -libattr1 1:2.5.2-1build1 deb +libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb libbdplus0 0.2.0-3build1 deb -libblkid1 2.39.3-9ubuntu6.1 deb +libblkid1 2.39.3-9ubuntu6.2 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb -libbsd0 0.12.1-1build1 deb +libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb libc-bin 2.39-0ubuntu8.3 deb libc6 2.39-0ubuntu8.3 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2 deb +libcap2 1:2.66-5ubuntu2.1 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb -libdrm-amdgpu1 2.4.120-2build1 deb -libdrm-common 2.4.120-2build1 deb -libdrm-nouveau2 2.4.120-2build1 deb -libdrm-radeon1 2.4.120-2build1 deb -libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4.1 deb libexpat1 2.6.1-2ubuntu0.2 deb @@ -468,13 +463,13 @@ libfontconfig1 2.15.0-1.1ubu libfreetype6 2.13.2+dfsg-1build3 deb libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb -libgmp10 2:6.3.0+dfsg-2ubuntu6 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb -libgpg-error0 1.47-3build2 deb +libgpg-error0 1.47-3build2.1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.2 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb -libidn2-0 2.3.7-2build1 deb +libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb libk5crypto3 1.20.1-6ubuntu2.2 deb libkeyutils1 1.6.3-3build1 deb @@ -486,13 +481,13 @@ libldap2 2.6.7+dfsg-1~ libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb -libmd0 1.1.0-2build1 deb -libmount1 2.39.3-9ubuntu6.1 deb +libmd0 1.1.0-2build1.1 deb +libmount1 2.39.3-9ubuntu6.2 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb -libnghttp2-14 1.59.0-1ubuntu0.1 deb +libnghttp2-14 1.59.0-1ubuntu0.2 deb libnpth0t64 1.6-3.1build1 deb libnuma1 2.0.18-1build1 deb libogg0 1.3.5-3build1 deb @@ -505,7 +500,7 @@ libpam-modules-bin 1.5.3-5ubuntu libpam-runtime 1.5.3-5ubuntu5.1 deb libpam0g 1.5.3-5ubuntu5.1 deb libpciaccess0 0.17-3build1 deb -libpcre2-8-0 10.42-4ubuntu2 deb +libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb @@ -517,13 +512,13 @@ libsasl2-modules 2.1.28+dfsg1- libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb libse 4.0.9.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb -libselinux1 3.5-2ubuntu2 deb +libselinux1 3.5-2ubuntu2.1 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.1 deb -libsqlite3-0 3.45.1-1ubuntu2 deb +libsmartcols1 2.39.3-9ubuntu6.2 deb +libsqlite3-0 3.45.1-1ubuntu2.1 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb @@ -534,8 +529,8 @@ libtheora0 1.1.1+dfsg.1- libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.4 deb libudfread0 1.1.2-1build1 deb -libunistring5 1.1-2build1 deb -libuuid1 2.39.3-9ubuntu6.1 deb +libunistring5 1.1-2build1.1 deb +libuuid1 2.39.3-9ubuntu6.2 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -559,7 +554,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.1 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb @@ -571,8 +566,8 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.0.9-0ubuntu0.3 deb -mount 2.39.3-9ubuntu6.1 deb +mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb +mount 2.39.3-9ubuntu6.2 deb mscorlib 9.0.124.61010 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb @@ -581,7 +576,7 @@ netstandard 9.0.124.61010 ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2build2 deb +perl-base 5.38.2-3.2build2.1 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb prometheus-net.DotNetRuntime 4.4.1.0 dotnet @@ -595,7 +590,8 @@ sysvinit-utils 3.08-6ubuntu3 tar 1.35+dfsg-3build1 deb tzdata 2024a-3ubuntu1.1 deb ubuntu-keyring 2023.11.28.1 deb -util-linux 2.39.3-9ubuntu6.1 deb +unminimize 0.2.1 deb +util-linux 2.39.3-9ubuntu6.2 deb xmlstarlet 1.6.1-4 deb zlib.net 1.0.8.0 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From c6dcfffa96ebd36e49d78c4801766a0670a7d685 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 13:12:40 +0000 Subject: [PATCH 2122/2257] Bot Updating Templated Files --- Jenkinsfile | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2358258..f9abf01 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 5060bc50817c2efe3ab1d53575174297e555ce6a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 13:14:53 +0000 Subject: [PATCH 2123/2257] 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 e21c936..f1f8bdb 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 a1b8f4e..27771a7 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 d6a7977..346db0f 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-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY - if grep -q "^jellyfin_master" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^jellyfin_master_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_master_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY + elif grep -q "^jellyfin_master" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_master\`; 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 -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY + if grep -q "^jellyfin_master_${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 9d6ab64..f5688f8 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 b73f6a6c67a871988ec5005d9e1a79705c2d4e52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Feb 2025 13:19:00 +0000 Subject: [PATCH 2124/2257] Bot Updating Package Versions --- package_versions.txt | 50 ++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 27 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9d4bc79..8189eef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -388,7 +388,7 @@ at 3.2.5-2.1ubun base-files 13ubuntu10.1 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.1 deb +bsdutils 1:2.39.3-9ubuntu6.2 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6 deb @@ -431,29 +431,24 @@ krb5-locales 1.20.1-6ubunt libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb -libattr1 1:2.5.2-1build1 deb +libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb -libblkid1 2.39.3-9ubuntu6.1 deb +libblkid1 2.39.3-9ubuntu6.2 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb -libbsd0 0.12.1-1build1 deb +libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb libc-bin 2.39-0ubuntu8.3 deb libc6 2.39-0ubuntu8.3 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2 deb +libcap2 1:2.66-5ubuntu2.1 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb -libdrm-amdgpu1 2.4.120-2build1 deb -libdrm-common 2.4.120-2build1 deb -libdrm-nouveau2 2.4.120-2build1 deb -libdrm-radeon1 2.4.120-2build1 deb -libdrm2 2.4.120-2build1 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1build4.1 deb libexpat1 2.6.1-2ubuntu0.2 deb @@ -463,13 +458,13 @@ libfontconfig1 2.15.0-1.1ubu libfreetype6 2.13.2+dfsg-1build3 deb libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb -libgmp10 2:6.3.0+dfsg-2ubuntu6 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb -libgpg-error0 1.47-3build2 deb +libgpg-error0 1.47-3build2.1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.2 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb -libidn2-0 2.3.7-2build1 deb +libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb libk5crypto3 1.20.1-6ubuntu2.2 deb libkeyutils1 1.6.3-3build1 deb @@ -481,13 +476,13 @@ libldap2 2.6.7+dfsg-1~ libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb -libmd0 1.1.0-2build1 deb -libmount1 2.39.3-9ubuntu6.1 deb +libmd0 1.1.0-2build1.1 deb +libmount1 2.39.3-9ubuntu6.2 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb -libnghttp2-14 1.59.0-1ubuntu0.1 deb +libnghttp2-14 1.59.0-1ubuntu0.2 deb libnpth0t64 1.6-3.1build1 deb libnuma1 2.0.18-1build1 deb libogg0 1.3.5-3build1 deb @@ -500,7 +495,7 @@ libpam-modules-bin 1.5.3-5ubuntu libpam-runtime 1.5.3-5ubuntu5.1 deb libpam0g 1.5.3-5ubuntu5.1 deb libpciaccess0 0.17-3build1 deb -libpcre2-8-0 10.42-4ubuntu2 deb +libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb @@ -512,13 +507,13 @@ libsasl2-modules 2.1.28+dfsg1- libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb libse 4.0.8.0 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb -libselinux1 3.5-2ubuntu2 deb +libselinux1 3.5-2ubuntu2.1 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.1 deb -libsqlite3-0 3.45.1-1ubuntu2 deb +libsmartcols1 2.39.3-9ubuntu6.2 deb +libsqlite3-0 3.45.1-1ubuntu2.1 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb @@ -529,8 +524,8 @@ libtheora0 1.1.1+dfsg.1- libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.4 deb libudfread0 1.1.2-1build1 deb -libunistring5 1.1-2build1 deb -libuuid1 2.39.3-9ubuntu6.1 deb +libunistring5 1.1-2build1.1 deb +libuuid1 2.39.3-9ubuntu6.2 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -554,7 +549,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.1 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb @@ -566,8 +561,8 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.0.9-0ubuntu0.3 deb -mount 2.39.3-9ubuntu6.1 deb +mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb +mount 2.39.3-9ubuntu6.2 deb mscorlib 8.0.1224.60305 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb @@ -576,7 +571,7 @@ netstandard 8.0.1224.6030 ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2build2 deb +perl-base 5.38.2-3.2build2.1 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb prometheus-net.DotNetRuntime 4.4.1.0 dotnet @@ -589,7 +584,8 @@ sysvinit-utils 3.08-6ubuntu3 tar 1.35+dfsg-3build1 deb tzdata 2024a-3ubuntu1.1 deb ubuntu-keyring 2023.11.28.1 deb -util-linux 2.39.3-9ubuntu6.1 deb +unminimize 0.2.1 deb +util-linux 2.39.3-9ubuntu6.2 deb xmlstarlet 1.6.1-4 deb zlib.net 1.0.8.0 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From bf19804b440ca7bb1fc69ffbafa6fccc65899cef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Feb 2025 12:52:02 +0000 Subject: [PATCH 2125/2257] Bot Updating Templated Files --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f9abf01..7afd086 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 0b39f808a7ca2289da34cc09ee423fd6731ffebe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Feb 2025 12:53:29 +0000 Subject: [PATCH 2126/2257] Bot Updating Templated Files --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a0f94ef..08dcf25 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 baf72a48abbe6e67a9835a0b597fc4f4c450bc9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Feb 2025 12:56:01 +0000 Subject: [PATCH 2127/2257] 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 8189eef..e68fb8d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -518,11 +518,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.4 deb +libsystemd0 255.4-1ubuntu8.5 deb libtasn1-6 4.19.0-3build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.4 deb +libudev1 255.4-1ubuntu8.5 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.2 deb @@ -579,10 +579,10 @@ publicsuffix 20231001.0357 readline-common 8.2-4build1 deb sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.4 deb +systemd-standalone-sysusers 255.4-1ubuntu8.5 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2024a-3ubuntu1.1 deb +tzdata 2024b-0ubuntu0.24.04 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From 3ecfe3290e99230eccc17542c7455c43b8787fdc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Feb 2025 12:59:48 +0000 Subject: [PATCH 2128/2257] 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 954de47..8fe42d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -523,11 +523,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.4 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.4 deb +libsystemd0 255.4-1ubuntu8.5 deb libtasn1-6 4.19.0-3build1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.4 deb +libudev1 255.4-1ubuntu8.5 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.2 deb @@ -585,10 +585,10 @@ readline-common 8.2-4build1 sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5 deb -systemd-standalone-sysusers 255.4-1ubuntu8.4 deb +systemd-standalone-sysusers 255.4-1ubuntu8.5 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2024a-3ubuntu1.1 deb +tzdata 2024b-0ubuntu0.24.04 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From 5bd42d4c20f936cf8ec4192067bf051b053aaac8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Feb 2025 15:15:50 +0000 Subject: [PATCH 2129/2257] Bot Updating Package Versions --- package_versions.txt | 651 +++++++++++++++++++++---------------------- 1 file changed, 325 insertions(+), 326 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8fe42d2..d81ad1c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,9 +1,9 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.12.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.16+3e439d3991497ffc46f2c095c8ff8e9294bfff26 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet -BlurHashSharp 1.3.3.0 dotnet -BlurHashSharp.SkiaSharp 1.3.3.0 dotnet +BlurHashSharp 1.3.4.0 dotnet +BlurHashSharp.SkiaSharp 1.3.4.0 dotnet CommandLine 2.9.1.0 dotnet Diacritics.NET 3.3.29 dotnet DiscUtils.Core 0.16.13.55129 dotnet @@ -29,158 +29,157 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 9.0.124.61009 dotnet -Microsoft.AspNetCore.Antiforgery 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authentication 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authentication.Cookies 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authentication.Core 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authentication.OAuth 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authorization 9.0.124.61009 dotnet -Microsoft.AspNetCore.Authorization.Policy 9.0.124.61009 dotnet -Microsoft.AspNetCore.Components 9.0.124.61009 dotnet -Microsoft.AspNetCore.Components.Authorization 9.0.124.61009 dotnet -Microsoft.AspNetCore.Components.Endpoints 9.0.124.61009 dotnet -Microsoft.AspNetCore.Components.Forms 9.0.124.61009 dotnet -Microsoft.AspNetCore.Components.Server 9.0.124.61009 dotnet -Microsoft.AspNetCore.Components.Web 9.0.124.61009 dotnet -Microsoft.AspNetCore.Connections.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.CookiePolicy 9.0.124.61009 dotnet -Microsoft.AspNetCore.Cors 9.0.124.61009 dotnet -Microsoft.AspNetCore.Cryptography.Internal 9.0.124.61009 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.124.61009 dotnet -Microsoft.AspNetCore.DataProtection 9.0.124.61009 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Diagnostics 9.0.124.61009 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.124.61009 dotnet -Microsoft.AspNetCore.HostFiltering 9.0.124.61009 dotnet -Microsoft.AspNetCore.Hosting 9.0.124.61009 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Html.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http.Connections 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http.Connections.Common 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http.Extensions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http.Features 9.0.124.61009 dotnet -Microsoft.AspNetCore.Http.Results 9.0.124.61009 dotnet -Microsoft.AspNetCore.HttpLogging 9.0.124.61009 dotnet -Microsoft.AspNetCore.HttpOverrides 9.0.124.61009 dotnet -Microsoft.AspNetCore.HttpsPolicy 9.0.124.61009 dotnet -Microsoft.AspNetCore.Identity 9.0.124.61009 dotnet -Microsoft.AspNetCore.Localization 9.0.124.61009 dotnet -Microsoft.AspNetCore.Localization.Routing 9.0.124.61009 dotnet -Microsoft.AspNetCore.Metadata 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Core 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Cors 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Localization 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.Razor 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 9.0.124.61009 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.124.61009 dotnet -Microsoft.AspNetCore.OutputCaching 9.0.124.61009 dotnet -Microsoft.AspNetCore.RateLimiting 9.0.124.61009 dotnet -Microsoft.AspNetCore.Razor 9.0.124.61009 dotnet -Microsoft.AspNetCore.Razor.Runtime 9.0.124.61009 dotnet -Microsoft.AspNetCore.RequestDecompression 9.0.124.61009 dotnet -Microsoft.AspNetCore.ResponseCaching 9.0.124.61009 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.ResponseCompression 9.0.124.61009 dotnet -Microsoft.AspNetCore.Rewrite 9.0.124.61009 dotnet -Microsoft.AspNetCore.Routing 9.0.124.61009 dotnet -Microsoft.AspNetCore.Routing.Abstractions 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.HttpSys 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.IIS 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.IISIntegration 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.Kestrel 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.124.61009 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.124.61009 dotnet -Microsoft.AspNetCore.Session 9.0.124.61009 dotnet -Microsoft.AspNetCore.SignalR 9.0.124.61009 dotnet -Microsoft.AspNetCore.SignalR.Common 9.0.124.61009 dotnet -Microsoft.AspNetCore.SignalR.Core 9.0.124.61009 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.124.61009 dotnet -Microsoft.AspNetCore.StaticAssets 9.0.124.61009 dotnet -Microsoft.AspNetCore.StaticFiles 9.0.124.61009 dotnet -Microsoft.AspNetCore.WebSockets 9.0.124.61009 dotnet -Microsoft.AspNetCore.WebUtilities 9.0.124.61009 dotnet +Microsoft.AspNetCore 9.0.225.6704 dotnet +Microsoft.AspNetCore.Antiforgery 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authentication 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authentication.Cookies 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authentication.Core 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authentication.OAuth 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authorization 9.0.225.6704 dotnet +Microsoft.AspNetCore.Authorization.Policy 9.0.225.6704 dotnet +Microsoft.AspNetCore.Components 9.0.225.6704 dotnet +Microsoft.AspNetCore.Components.Authorization 9.0.225.6704 dotnet +Microsoft.AspNetCore.Components.Endpoints 9.0.225.6704 dotnet +Microsoft.AspNetCore.Components.Forms 9.0.225.6704 dotnet +Microsoft.AspNetCore.Components.Server 9.0.225.6704 dotnet +Microsoft.AspNetCore.Components.Web 9.0.225.6704 dotnet +Microsoft.AspNetCore.Connections.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.CookiePolicy 9.0.225.6704 dotnet +Microsoft.AspNetCore.Cors 9.0.225.6704 dotnet +Microsoft.AspNetCore.Cryptography.Internal 9.0.225.6704 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.225.6704 dotnet +Microsoft.AspNetCore.DataProtection 9.0.225.6704 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Diagnostics 9.0.225.6704 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.225.6704 dotnet +Microsoft.AspNetCore.HostFiltering 9.0.225.6704 dotnet +Microsoft.AspNetCore.Hosting 9.0.225.6704 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Html.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http.Connections 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http.Connections.Common 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http.Extensions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http.Features 9.0.225.6704 dotnet +Microsoft.AspNetCore.Http.Results 9.0.225.6704 dotnet +Microsoft.AspNetCore.HttpLogging 9.0.225.6704 dotnet +Microsoft.AspNetCore.HttpOverrides 9.0.225.6704 dotnet +Microsoft.AspNetCore.HttpsPolicy 9.0.225.6704 dotnet +Microsoft.AspNetCore.Identity 9.0.225.6704 dotnet +Microsoft.AspNetCore.Localization 9.0.225.6704 dotnet +Microsoft.AspNetCore.Localization.Routing 9.0.225.6704 dotnet +Microsoft.AspNetCore.Metadata 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Core 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Cors 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Localization 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.Razor 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 9.0.225.6704 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.225.6704 dotnet +Microsoft.AspNetCore.OutputCaching 9.0.225.6704 dotnet +Microsoft.AspNetCore.RateLimiting 9.0.225.6704 dotnet +Microsoft.AspNetCore.Razor 9.0.225.6704 dotnet +Microsoft.AspNetCore.Razor.Runtime 9.0.225.6704 dotnet +Microsoft.AspNetCore.RequestDecompression 9.0.225.6704 dotnet +Microsoft.AspNetCore.ResponseCaching 9.0.225.6704 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.ResponseCompression 9.0.225.6704 dotnet +Microsoft.AspNetCore.Rewrite 9.0.225.6704 dotnet +Microsoft.AspNetCore.Routing 9.0.225.6704 dotnet +Microsoft.AspNetCore.Routing.Abstractions 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.HttpSys 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.IIS 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.IISIntegration 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.Kestrel 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.225.6704 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.225.6704 dotnet +Microsoft.AspNetCore.Session 9.0.225.6704 dotnet +Microsoft.AspNetCore.SignalR 9.0.225.6704 dotnet +Microsoft.AspNetCore.SignalR.Common 9.0.225.6704 dotnet +Microsoft.AspNetCore.SignalR.Core 9.0.225.6704 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.225.6704 dotnet +Microsoft.AspNetCore.StaticAssets 9.0.225.6704 dotnet +Microsoft.AspNetCore.StaticFiles 9.0.225.6704 dotnet +Microsoft.AspNetCore.WebSockets 9.0.225.6704 dotnet +Microsoft.AspNetCore.WebUtilities 9.0.225.6704 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 9.0.124.61010 dotnet +Microsoft.CSharp 9.0.225.6610 dotnet Microsoft.Data.Sqlite 9.0.124.61002 dotnet Microsoft.EntityFrameworkCore 9.0.124.61002 dotnet Microsoft.EntityFrameworkCore.Abstractions 9.0.124.61002 dotnet Microsoft.EntityFrameworkCore.Relational 9.0.124.61002 dotnet Microsoft.EntityFrameworkCore.Sqlite 9.0.124.61002 dotnet -Microsoft.Extensions.Caching.Abstractions 9.0.124.61010 dotnet -Microsoft.Extensions.Caching.Memory 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.Abstractions 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.Binder 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.CommandLine 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.FileExtensions 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.Ini 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.Json 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 9.0.124.61009 dotnet -Microsoft.Extensions.Configuration.UserSecrets 9.0.124.61010 dotnet -Microsoft.Extensions.Configuration.Xml 9.0.124.61010 dotnet -Microsoft.Extensions.DependencyInjection 9.0.124.61010 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 9.0.124.61010 dotnet +Microsoft.Extensions.Caching.Abstractions 9.0.225.6610 dotnet +Microsoft.Extensions.Caching.Memory 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.Abstractions 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.Binder 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.CommandLine 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.FileExtensions 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.Ini 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.Json 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 9.0.225.6704 dotnet +Microsoft.Extensions.Configuration.UserSecrets 9.0.225.6610 dotnet +Microsoft.Extensions.Configuration.Xml 9.0.225.6610 dotnet +Microsoft.Extensions.DependencyInjection 9.0.225.6610 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 9.0.225.6610 dotnet Microsoft.Extensions.DependencyModel 9.0.124.61010 dotnet -Microsoft.Extensions.Diagnostics 9.0.124.61010 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 9.0.124.61010 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 9.0.124.61009 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.124.61009 dotnet +Microsoft.Extensions.Diagnostics 9.0.225.6610 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 9.0.225.6610 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 9.0.225.6704 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.225.6704 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.124.61009 dotnet -Microsoft.Extensions.Features 9.0.124.61009 dotnet -Microsoft.Extensions.FileProviders.Abstractions 9.0.124.61010 dotnet -Microsoft.Extensions.FileProviders.Composite 9.0.124.61010 dotnet -Microsoft.Extensions.FileProviders.Embedded 9.0.124.61009 dotnet -Microsoft.Extensions.FileProviders.Physical 9.0.124.61010 dotnet -Microsoft.Extensions.FileSystemGlobbing 9.0.124.61010 dotnet -Microsoft.Extensions.Hosting 9.0.124.61010 dotnet -Microsoft.Extensions.Hosting.Abstractions 9.0.124.61010 dotnet -Microsoft.Extensions.Http 9.0.124.61010 dotnet -Microsoft.Extensions.Identity.Core 9.0.124.61009 dotnet -Microsoft.Extensions.Identity.Stores 9.0.124.61009 dotnet -Microsoft.Extensions.Localization 9.0.124.61009 dotnet -Microsoft.Extensions.Localization.Abstractions 9.0.124.61009 dotnet -Microsoft.Extensions.Logging 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.Abstractions 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.Configuration 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.Console 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.Debug 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.EventLog 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.EventSource 9.0.124.61010 dotnet -Microsoft.Extensions.Logging.TraceSource 9.0.124.61010 dotnet -Microsoft.Extensions.ObjectPool 9.0.124.61009 dotnet -Microsoft.Extensions.Options 9.0.124.61010 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 9.0.124.61010 dotnet -Microsoft.Extensions.Options.DataAnnotations 9.0.124.61010 dotnet -Microsoft.Extensions.Primitives 9.0.124.61010 dotnet -Microsoft.Extensions.WebEncoders 9.0.124.61009 dotnet -Microsoft.JSInterop 9.0.124.61009 dotnet -Microsoft.Net.Http.Headers 9.0.124.61009 dotnet +Microsoft.Extensions.Features 9.0.225.6704 dotnet +Microsoft.Extensions.FileProviders.Abstractions 9.0.225.6610 dotnet +Microsoft.Extensions.FileProviders.Composite 9.0.225.6610 dotnet +Microsoft.Extensions.FileProviders.Embedded 9.0.225.6704 dotnet +Microsoft.Extensions.FileProviders.Physical 9.0.225.6610 dotnet +Microsoft.Extensions.FileSystemGlobbing 9.0.225.6610 dotnet +Microsoft.Extensions.Hosting 9.0.225.6610 dotnet +Microsoft.Extensions.Hosting.Abstractions 9.0.225.6610 dotnet +Microsoft.Extensions.Http 9.0.225.6610 dotnet +Microsoft.Extensions.Identity.Core 9.0.225.6704 dotnet +Microsoft.Extensions.Identity.Stores 9.0.225.6704 dotnet +Microsoft.Extensions.Localization 9.0.225.6704 dotnet +Microsoft.Extensions.Localization.Abstractions 9.0.225.6704 dotnet +Microsoft.Extensions.Logging 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.Abstractions 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.Configuration 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.Console 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.Debug 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.EventLog 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.EventSource 9.0.225.6610 dotnet +Microsoft.Extensions.Logging.TraceSource 9.0.225.6610 dotnet +Microsoft.Extensions.ObjectPool 9.0.225.6704 dotnet +Microsoft.Extensions.Options 9.0.225.6610 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 9.0.225.6610 dotnet +Microsoft.Extensions.Options.DataAnnotations 9.0.225.6610 dotnet +Microsoft.Extensions.Primitives 9.0.225.6610 dotnet +Microsoft.Extensions.WebEncoders 9.0.225.6704 dotnet +Microsoft.JSInterop 9.0.225.6704 dotnet +Microsoft.Net.Http.Headers 9.0.225.6704 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 9.0.124.61010 dotnet -Microsoft.VisualBasic.Core 14.0.124.61010 dotnet -Microsoft.Win32.Primitives 9.0.124.61010 dotnet -Microsoft.Win32.Registry 9.0.124.61010 dotnet +Microsoft.VisualBasic 9.0.225.6610 dotnet +Microsoft.VisualBasic.Core 14.0.225.6610 dotnet +Microsoft.Win32.Primitives 9.0.225.6610 dotnet +Microsoft.Win32.Registry 9.0.225.6610 dotnet Microsoft.Win32.SystemEvents 9.0.24.52809 dotnet -Mono.Nat 3.0.4 dotnet -NEbml.Core 0.11.0.0 dotnet +NEbml.Core 0.12.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet Prometheus.AspNetCore.dll 8.2.1 dotnet Prometheus.NetStandard.dll 8.2.1 dotnet @@ -210,184 +209,184 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 9.0.124.61010 dotnet -System.AppContext 9.0.124.61010 dotnet -System.Buffers 9.0.124.61010 dotnet -System.Collections 9.0.124.61010 dotnet -System.Collections.Concurrent 9.0.124.61010 dotnet -System.Collections.Immutable 9.0.124.61010 dotnet -System.Collections.NonGeneric 9.0.124.61010 dotnet -System.Collections.Specialized 9.0.124.61010 dotnet -System.ComponentModel 9.0.124.61010 dotnet -System.ComponentModel.Annotations 9.0.124.61010 dotnet -System.ComponentModel.DataAnnotations 9.0.124.61010 dotnet -System.ComponentModel.EventBasedAsync 9.0.124.61010 dotnet -System.ComponentModel.Primitives 9.0.124.61010 dotnet -System.ComponentModel.TypeConverter 9.0.124.61010 dotnet -System.Configuration 9.0.124.61010 dotnet -System.Console 9.0.124.61010 dotnet -System.Core 9.0.124.61010 dotnet -System.Data 9.0.124.61010 dotnet -System.Data.Common 9.0.124.61010 dotnet -System.Data.DataSetExtensions 9.0.124.61010 dotnet -System.Diagnostics.Contracts 9.0.124.61010 dotnet -System.Diagnostics.Debug 9.0.124.61010 dotnet -System.Diagnostics.DiagnosticSource 9.0.124.61010 dotnet -System.Diagnostics.EventLog 9.0.124.61010 dotnet -System.Diagnostics.FileVersionInfo 9.0.124.61010 dotnet -System.Diagnostics.Process 9.0.124.61010 dotnet -System.Diagnostics.StackTrace 9.0.124.61010 dotnet -System.Diagnostics.TextWriterTraceListener 9.0.124.61010 dotnet -System.Diagnostics.Tools 9.0.124.61010 dotnet -System.Diagnostics.TraceSource 9.0.124.61010 dotnet -System.Diagnostics.Tracing 9.0.124.61010 dotnet -System.Drawing 9.0.124.61010 dotnet +System 9.0.225.6610 dotnet +System.AppContext 9.0.225.6610 dotnet +System.Buffers 9.0.225.6610 dotnet +System.Collections 9.0.225.6610 dotnet +System.Collections.Concurrent 9.0.225.6610 dotnet +System.Collections.Immutable 9.0.225.6610 dotnet +System.Collections.NonGeneric 9.0.225.6610 dotnet +System.Collections.Specialized 9.0.225.6610 dotnet +System.ComponentModel 9.0.225.6610 dotnet +System.ComponentModel.Annotations 9.0.225.6610 dotnet +System.ComponentModel.DataAnnotations 9.0.225.6610 dotnet +System.ComponentModel.EventBasedAsync 9.0.225.6610 dotnet +System.ComponentModel.Primitives 9.0.225.6610 dotnet +System.ComponentModel.TypeConverter 9.0.225.6610 dotnet +System.Configuration 9.0.225.6610 dotnet +System.Console 9.0.225.6610 dotnet +System.Core 9.0.225.6610 dotnet +System.Data 9.0.225.6610 dotnet +System.Data.Common 9.0.225.6610 dotnet +System.Data.DataSetExtensions 9.0.225.6610 dotnet +System.Diagnostics.Contracts 9.0.225.6610 dotnet +System.Diagnostics.Debug 9.0.225.6610 dotnet +System.Diagnostics.DiagnosticSource 9.0.225.6610 dotnet +System.Diagnostics.EventLog 9.0.225.6610 dotnet +System.Diagnostics.FileVersionInfo 9.0.225.6610 dotnet +System.Diagnostics.Process 9.0.225.6610 dotnet +System.Diagnostics.StackTrace 9.0.225.6610 dotnet +System.Diagnostics.TextWriterTraceListener 9.0.225.6610 dotnet +System.Diagnostics.Tools 9.0.225.6610 dotnet +System.Diagnostics.TraceSource 9.0.225.6610 dotnet +System.Diagnostics.Tracing 9.0.225.6610 dotnet +System.Drawing 9.0.225.6610 dotnet System.Drawing.Common 9.0.24.52901 dotnet -System.Drawing.Primitives 9.0.124.61010 dotnet -System.Dynamic.Runtime 9.0.124.61010 dotnet -System.Formats.Asn1 9.0.124.61010 dotnet -System.Formats.Tar 9.0.124.61010 dotnet -System.Globalization 9.0.124.61010 dotnet -System.Globalization.Calendars 9.0.124.61010 dotnet -System.Globalization.Extensions 9.0.124.61010 dotnet -System.IO 9.0.124.61010 dotnet -System.IO.Compression 9.0.124.61010 dotnet -System.IO.Compression.Brotli 9.0.124.61010 dotnet -System.IO.Compression.FileSystem 9.0.124.61010 dotnet -System.IO.Compression.ZipFile 9.0.124.61010 dotnet -System.IO.FileSystem 9.0.124.61010 dotnet -System.IO.FileSystem.AccessControl 9.0.124.61010 dotnet -System.IO.FileSystem.DriveInfo 9.0.124.61010 dotnet -System.IO.FileSystem.Primitives 9.0.124.61010 dotnet -System.IO.FileSystem.Watcher 9.0.124.61010 dotnet -System.IO.IsolatedStorage 9.0.124.61010 dotnet -System.IO.MemoryMappedFiles 9.0.124.61010 dotnet -System.IO.Pipelines 9.0.124.61010 dotnet -System.IO.Pipes 9.0.124.61010 dotnet -System.IO.Pipes.AccessControl 9.0.124.61010 dotnet -System.IO.UnmanagedMemoryStream 9.0.124.61010 dotnet -System.Linq 9.0.124.61010 dotnet +System.Drawing.Primitives 9.0.225.6610 dotnet +System.Dynamic.Runtime 9.0.225.6610 dotnet +System.Formats.Asn1 9.0.225.6610 dotnet +System.Formats.Tar 9.0.225.6610 dotnet +System.Globalization 9.0.225.6610 dotnet +System.Globalization.Calendars 9.0.225.6610 dotnet +System.Globalization.Extensions 9.0.225.6610 dotnet +System.IO 9.0.225.6610 dotnet +System.IO.Compression 9.0.225.6610 dotnet +System.IO.Compression.Brotli 9.0.225.6610 dotnet +System.IO.Compression.FileSystem 9.0.225.6610 dotnet +System.IO.Compression.ZipFile 9.0.225.6610 dotnet +System.IO.FileSystem 9.0.225.6610 dotnet +System.IO.FileSystem.AccessControl 9.0.225.6610 dotnet +System.IO.FileSystem.DriveInfo 9.0.225.6610 dotnet +System.IO.FileSystem.Primitives 9.0.225.6610 dotnet +System.IO.FileSystem.Watcher 9.0.225.6610 dotnet +System.IO.IsolatedStorage 9.0.225.6610 dotnet +System.IO.MemoryMappedFiles 9.0.225.6610 dotnet +System.IO.Pipelines 9.0.225.6610 dotnet +System.IO.Pipes 9.0.225.6610 dotnet +System.IO.Pipes.AccessControl 9.0.225.6610 dotnet +System.IO.UnmanagedMemoryStream 9.0.225.6610 dotnet +System.Linq 9.0.225.6610 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 9.0.124.61010 dotnet -System.Linq.Parallel 9.0.124.61010 dotnet -System.Linq.Queryable 9.0.124.61010 dotnet -System.Memory 9.0.124.61010 dotnet -System.Net 9.0.124.61010 dotnet -System.Net.Http 9.0.124.61010 dotnet -System.Net.Http.Json 9.0.124.61010 dotnet -System.Net.HttpListener 9.0.124.61010 dotnet -System.Net.Mail 9.0.124.61010 dotnet -System.Net.NameResolution 9.0.124.61010 dotnet -System.Net.NetworkInformation 9.0.124.61010 dotnet -System.Net.Ping 9.0.124.61010 dotnet -System.Net.Primitives 9.0.124.61010 dotnet -System.Net.Quic 9.0.124.61010 dotnet -System.Net.Requests 9.0.124.61010 dotnet -System.Net.Security 9.0.124.61010 dotnet -System.Net.ServicePoint 9.0.124.61010 dotnet -System.Net.Sockets 9.0.124.61010 dotnet -System.Net.WebClient 9.0.124.61010 dotnet -System.Net.WebHeaderCollection 9.0.124.61010 dotnet -System.Net.WebProxy 9.0.124.61010 dotnet -System.Net.WebSockets 9.0.124.61010 dotnet -System.Net.WebSockets.Client 9.0.124.61010 dotnet -System.Numerics 9.0.124.61010 dotnet -System.Numerics.Vectors 9.0.124.61010 dotnet -System.ObjectModel 9.0.124.61010 dotnet -System.Private.CoreLib 9.0.124.61010 dotnet -System.Private.DataContractSerialization 9.0.124.61010 dotnet -System.Private.Uri 9.0.124.61010 dotnet +System.Linq.Expressions 9.0.225.6610 dotnet +System.Linq.Parallel 9.0.225.6610 dotnet +System.Linq.Queryable 9.0.225.6610 dotnet +System.Memory 9.0.225.6610 dotnet +System.Net 9.0.225.6610 dotnet +System.Net.Http 9.0.225.6610 dotnet +System.Net.Http.Json 9.0.225.6610 dotnet +System.Net.HttpListener 9.0.225.6610 dotnet +System.Net.Mail 9.0.225.6610 dotnet +System.Net.NameResolution 9.0.225.6610 dotnet +System.Net.NetworkInformation 9.0.225.6610 dotnet +System.Net.Ping 9.0.225.6610 dotnet +System.Net.Primitives 9.0.225.6610 dotnet +System.Net.Quic 9.0.225.6610 dotnet +System.Net.Requests 9.0.225.6610 dotnet +System.Net.Security 9.0.225.6610 dotnet +System.Net.ServicePoint 9.0.225.6610 dotnet +System.Net.Sockets 9.0.225.6610 dotnet +System.Net.WebClient 9.0.225.6610 dotnet +System.Net.WebHeaderCollection 9.0.225.6610 dotnet +System.Net.WebProxy 9.0.225.6610 dotnet +System.Net.WebSockets 9.0.225.6610 dotnet +System.Net.WebSockets.Client 9.0.225.6610 dotnet +System.Numerics 9.0.225.6610 dotnet +System.Numerics.Vectors 9.0.225.6610 dotnet +System.ObjectModel 9.0.225.6610 dotnet +System.Private.CoreLib 9.0.225.6610 dotnet +System.Private.DataContractSerialization 9.0.225.6610 dotnet +System.Private.Uri 9.0.225.6610 dotnet System.Private.Windows.Core 9.0.24.52901 dotnet -System.Private.Xml 9.0.124.61010 dotnet -System.Private.Xml.Linq 9.0.124.61010 dotnet -System.Reflection 9.0.124.61010 dotnet -System.Reflection.DispatchProxy 9.0.124.61010 dotnet -System.Reflection.Emit 9.0.124.61010 dotnet -System.Reflection.Emit.ILGeneration 9.0.124.61010 dotnet -System.Reflection.Emit.Lightweight 9.0.124.61010 dotnet -System.Reflection.Extensions 9.0.124.61010 dotnet -System.Reflection.Metadata 9.0.124.61010 dotnet -System.Reflection.Primitives 9.0.124.61010 dotnet -System.Reflection.TypeExtensions 9.0.124.61010 dotnet -System.Resources.Reader 9.0.124.61010 dotnet -System.Resources.ResourceManager 9.0.124.61010 dotnet -System.Resources.Writer 9.0.124.61010 dotnet -System.Runtime 9.0.124.61010 dotnet -System.Runtime.CompilerServices.Unsafe 9.0.124.61010 dotnet -System.Runtime.CompilerServices.VisualC 9.0.124.61010 dotnet -System.Runtime.Extensions 9.0.124.61010 dotnet -System.Runtime.Handles 9.0.124.61010 dotnet -System.Runtime.InteropServices 9.0.124.61010 dotnet -System.Runtime.InteropServices.JavaScript 9.0.124.61010 dotnet -System.Runtime.InteropServices.RuntimeInformation 9.0.124.61010 dotnet -System.Runtime.Intrinsics 9.0.124.61010 dotnet -System.Runtime.Loader 9.0.124.61010 dotnet -System.Runtime.Numerics 9.0.124.61010 dotnet -System.Runtime.Serialization 9.0.124.61010 dotnet -System.Runtime.Serialization.Formatters 9.0.124.61010 dotnet -System.Runtime.Serialization.Json 9.0.124.61010 dotnet -System.Runtime.Serialization.Primitives 9.0.124.61010 dotnet -System.Runtime.Serialization.Xml 9.0.124.61010 dotnet -System.Security 9.0.124.61010 dotnet -System.Security.AccessControl 9.0.124.61010 dotnet -System.Security.Claims 9.0.124.61010 dotnet -System.Security.Cryptography 9.0.124.61010 dotnet -System.Security.Cryptography.Algorithms 9.0.124.61010 dotnet -System.Security.Cryptography.Cng 9.0.124.61010 dotnet -System.Security.Cryptography.Csp 9.0.124.61010 dotnet -System.Security.Cryptography.Encoding 9.0.124.61010 dotnet -System.Security.Cryptography.OpenSsl 9.0.124.61010 dotnet -System.Security.Cryptography.Pkcs 9.0.124.61010 dotnet -System.Security.Cryptography.Primitives 9.0.124.61010 dotnet -System.Security.Cryptography.X509Certificates 9.0.124.61010 dotnet -System.Security.Cryptography.Xml 9.0.124.61010 dotnet -System.Security.Principal 9.0.124.61010 dotnet -System.Security.Principal.Windows 9.0.124.61010 dotnet -System.Security.SecureString 9.0.124.61010 dotnet -System.ServiceModel.Web 9.0.124.61010 dotnet -System.ServiceProcess 9.0.124.61010 dotnet -System.Text.Encoding 9.0.124.61010 dotnet -System.Text.Encoding.CodePages 9.0.124.61010 dotnet -System.Text.Encoding.Extensions 9.0.124.61010 dotnet -System.Text.Encodings.Web 9.0.124.61010 dotnet -System.Text.Json 9.0.124.61010 dotnet -System.Text.RegularExpressions 9.0.124.61010 dotnet -System.Threading 9.0.124.61010 dotnet -System.Threading.Channels 9.0.124.61010 dotnet -System.Threading.Overlapped 9.0.124.61010 dotnet -System.Threading.RateLimiting 9.0.124.61010 dotnet -System.Threading.Tasks 9.0.124.61010 dotnet -System.Threading.Tasks.Dataflow 9.0.124.61010 dotnet -System.Threading.Tasks.Extensions 9.0.124.61010 dotnet -System.Threading.Tasks.Parallel 9.0.124.61010 dotnet -System.Threading.Thread 9.0.124.61010 dotnet -System.Threading.ThreadPool 9.0.124.61010 dotnet -System.Threading.Timer 9.0.124.61010 dotnet -System.Transactions 9.0.124.61010 dotnet -System.Transactions.Local 9.0.124.61010 dotnet -System.ValueTuple 9.0.124.61010 dotnet -System.Web 9.0.124.61010 dotnet -System.Web.HttpUtility 9.0.124.61010 dotnet -System.Windows 9.0.124.61010 dotnet -System.Xml 9.0.124.61010 dotnet -System.Xml.Linq 9.0.124.61010 dotnet -System.Xml.ReaderWriter 9.0.124.61010 dotnet -System.Xml.Serialization 9.0.124.61010 dotnet -System.Xml.XDocument 9.0.124.61010 dotnet -System.Xml.XPath 9.0.124.61010 dotnet -System.Xml.XPath.XDocument 9.0.124.61010 dotnet -System.Xml.XmlDocument 9.0.124.61010 dotnet -System.Xml.XmlSerializer 9.0.124.61010 dotnet +System.Private.Xml 9.0.225.6610 dotnet +System.Private.Xml.Linq 9.0.225.6610 dotnet +System.Reflection 9.0.225.6610 dotnet +System.Reflection.DispatchProxy 9.0.225.6610 dotnet +System.Reflection.Emit 9.0.225.6610 dotnet +System.Reflection.Emit.ILGeneration 9.0.225.6610 dotnet +System.Reflection.Emit.Lightweight 9.0.225.6610 dotnet +System.Reflection.Extensions 9.0.225.6610 dotnet +System.Reflection.Metadata 9.0.225.6610 dotnet +System.Reflection.Primitives 9.0.225.6610 dotnet +System.Reflection.TypeExtensions 9.0.225.6610 dotnet +System.Resources.Reader 9.0.225.6610 dotnet +System.Resources.ResourceManager 9.0.225.6610 dotnet +System.Resources.Writer 9.0.225.6610 dotnet +System.Runtime 9.0.225.6610 dotnet +System.Runtime.CompilerServices.Unsafe 9.0.225.6610 dotnet +System.Runtime.CompilerServices.VisualC 9.0.225.6610 dotnet +System.Runtime.Extensions 9.0.225.6610 dotnet +System.Runtime.Handles 9.0.225.6610 dotnet +System.Runtime.InteropServices 9.0.225.6610 dotnet +System.Runtime.InteropServices.JavaScript 9.0.225.6610 dotnet +System.Runtime.InteropServices.RuntimeInformation 9.0.225.6610 dotnet +System.Runtime.Intrinsics 9.0.225.6610 dotnet +System.Runtime.Loader 9.0.225.6610 dotnet +System.Runtime.Numerics 9.0.225.6610 dotnet +System.Runtime.Serialization 9.0.225.6610 dotnet +System.Runtime.Serialization.Formatters 9.0.225.6610 dotnet +System.Runtime.Serialization.Json 9.0.225.6610 dotnet +System.Runtime.Serialization.Primitives 9.0.225.6610 dotnet +System.Runtime.Serialization.Xml 9.0.225.6610 dotnet +System.Security 9.0.225.6610 dotnet +System.Security.AccessControl 9.0.225.6610 dotnet +System.Security.Claims 9.0.225.6610 dotnet +System.Security.Cryptography 9.0.225.6610 dotnet +System.Security.Cryptography.Algorithms 9.0.225.6610 dotnet +System.Security.Cryptography.Cng 9.0.225.6610 dotnet +System.Security.Cryptography.Csp 9.0.225.6610 dotnet +System.Security.Cryptography.Encoding 9.0.225.6610 dotnet +System.Security.Cryptography.OpenSsl 9.0.225.6610 dotnet +System.Security.Cryptography.Pkcs 9.0.225.6610 dotnet +System.Security.Cryptography.Primitives 9.0.225.6610 dotnet +System.Security.Cryptography.X509Certificates 9.0.225.6610 dotnet +System.Security.Cryptography.Xml 9.0.225.6610 dotnet +System.Security.Principal 9.0.225.6610 dotnet +System.Security.Principal.Windows 9.0.225.6610 dotnet +System.Security.SecureString 9.0.225.6610 dotnet +System.ServiceModel.Web 9.0.225.6610 dotnet +System.ServiceProcess 9.0.225.6610 dotnet +System.Text.Encoding 9.0.225.6610 dotnet +System.Text.Encoding.CodePages 9.0.225.6610 dotnet +System.Text.Encoding.Extensions 9.0.225.6610 dotnet +System.Text.Encodings.Web 9.0.225.6610 dotnet +System.Text.Json 9.0.225.6610 dotnet +System.Text.RegularExpressions 9.0.225.6610 dotnet +System.Threading 9.0.225.6610 dotnet +System.Threading.Channels 9.0.225.6610 dotnet +System.Threading.Overlapped 9.0.225.6610 dotnet +System.Threading.RateLimiting 9.0.225.6610 dotnet +System.Threading.Tasks 9.0.225.6610 dotnet +System.Threading.Tasks.Dataflow 9.0.225.6610 dotnet +System.Threading.Tasks.Extensions 9.0.225.6610 dotnet +System.Threading.Tasks.Parallel 9.0.225.6610 dotnet +System.Threading.Thread 9.0.225.6610 dotnet +System.Threading.ThreadPool 9.0.225.6610 dotnet +System.Threading.Timer 9.0.225.6610 dotnet +System.Transactions 9.0.225.6610 dotnet +System.Transactions.Local 9.0.225.6610 dotnet +System.ValueTuple 9.0.225.6610 dotnet +System.Web 9.0.225.6610 dotnet +System.Web.HttpUtility 9.0.225.6610 dotnet +System.Windows 9.0.225.6610 dotnet +System.Xml 9.0.225.6610 dotnet +System.Xml.Linq 9.0.225.6610 dotnet +System.Xml.ReaderWriter 9.0.225.6610 dotnet +System.Xml.Serialization 9.0.225.6610 dotnet +System.Xml.XDocument 9.0.225.6610 dotnet +System.Xml.XPath 9.0.225.6610 dotnet +System.Xml.XPath.XDocument 9.0.225.6610 dotnet +System.Xml.XmlDocument 9.0.225.6610 dotnet +System.Xml.XmlSerializer 9.0.225.6610 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 9.0.124.61010 dotnet +WindowsBase 9.0.225.6610 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10.1 deb +base-files 13ubuntu10.2 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb bsdutils 1:2.39.3-9ubuntu6.2 deb @@ -422,14 +421,14 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025012005+ubu2404 deb +jellyfin 2025021314+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025012005+ubu2404 deb -jellyfin-web 2025012005+ubu2404 deb +jellyfin-server 2025021314+ubu2404 deb +jellyfin-web 2025021314+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.2 deb +krb5-locales 1.20.1-6ubuntu2.3 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb @@ -444,8 +443,8 @@ libbluray2 1:1.3.4-1buil libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.3 deb -libc6 2.39-0ubuntu8.3 deb +libc-bin 2.39-0ubuntu8.4 deb +libc6 2.39-0ubuntu8.4 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2.1 deb @@ -466,15 +465,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.2 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.3 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.2 deb +libk5crypto3 1.20.1-6ubuntu2.3 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.2 deb -libkrb5support0 1.20.1-6ubuntu2.2 deb +libkrb5-3 1.20.1-6ubuntu2.3 deb +libkrb5support0 1.20.1-6ubuntu2.3 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb @@ -562,17 +561,17 @@ libxxhash0 0.8.2-2build1 libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.3 deb +locales 2.39-0ubuntu8.4 deb login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb mount 2.39.3-9ubuntu6.2 deb -mscorlib 9.0.124.61010 dotnet +mscorlib 9.0.225.6610 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 9.0.124.61010 dotnet +netstandard 9.0.225.6610 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb @@ -588,7 +587,7 @@ sudo 1.9.15p5-3ubu systemd-standalone-sysusers 255.4-1ubuntu8.5 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2024b-0ubuntu0.24.04 deb +tzdata 2024b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From b925097ae95bf8c933930f9d839cc699946f95f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Feb 2025 23:13:36 +0000 Subject: [PATCH 2130/2257] Bot Updating Package Versions --- package_versions.txt | 572 +++++++++++++++++++++---------------------- 1 file changed, 286 insertions(+), 286 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e68fb8d..3b8c1f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.0.2.0 dotnet -Audio Tools Library (ATL) for .NET 6.11.0.0 dotnet +Audio Tools Library (ATL) for .NET 6.16+3e439d3991497ffc46f2c095c8ff8e9294bfff26 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.4.0 dotnet BlurHashSharp.SkiaSharp 1.3.4.0 dotnet @@ -16,107 +16,107 @@ HarfBuzzSharp 7.3.0.3 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.5 dotnet (+13 duplicates) +Jellyfin Server 10.10.6 dotnet (+13 duplicates) Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.5 dotnet -Jellyfin.Extensions.dll 10.10.5 dotnet +Jellyfin.Data.dll 10.10.6 dotnet +Jellyfin.Extensions.dll 10.10.6 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.5 dotnet +Jellyfin.Networking.dll 10.10.6 dotnet Jellyfin.XmlTv 1.0.0.0 dotnet Json.NET 13.0.3.27908 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authentication 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authorization 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Components 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Components.Server 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Components.Web 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Cors 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1224.60312 dotnet -Microsoft.AspNetCore.DataProtection 8.0.1224.60312 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1224.60312 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Hosting 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http.Features 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Http.Results 8.0.1224.60312 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.1224.60312 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.1224.60312 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Identity 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Localization 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Metadata 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1224.60312 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.1224.60312 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Razor 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.1224.60312 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.1224.60312 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.1224.60312 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Rewrite 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Routing 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1224.60312 dotnet -Microsoft.AspNetCore.Session 8.0.1224.60312 dotnet -Microsoft.AspNetCore.SignalR 8.0.1224.60312 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.1224.60312 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.1224.60312 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1224.60312 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.1224.60312 dotnet -Microsoft.AspNetCore.WebSockets 8.0.1224.60312 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.1224.60312 dotnet +Microsoft.AspNetCore 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Antiforgery 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authentication 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authentication.Cookies 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authentication.Core 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authentication.OAuth 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authorization 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Authorization.Policy 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Components 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Components.Authorization 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Components.Endpoints 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Components.Forms 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Components.Server 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Components.Web 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Connections.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.CookiePolicy 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Cors 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Cryptography.Internal 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1325.6610 dotnet +Microsoft.AspNetCore.DataProtection 8.0.1325.6610 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Diagnostics 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1325.6610 dotnet +Microsoft.AspNetCore.HostFiltering 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Hosting 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Html.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http.Connections 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http.Connections.Common 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http.Extensions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http.Features 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Http.Results 8.0.1325.6610 dotnet +Microsoft.AspNetCore.HttpLogging 8.0.1325.6610 dotnet +Microsoft.AspNetCore.HttpOverrides 8.0.1325.6610 dotnet +Microsoft.AspNetCore.HttpsPolicy 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Identity 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Localization 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Localization.Routing 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Metadata 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Core 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Cors 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Localization 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.Razor 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1325.6610 dotnet +Microsoft.AspNetCore.OutputCaching 8.0.1325.6610 dotnet +Microsoft.AspNetCore.RateLimiting 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Razor 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Razor.Runtime 8.0.1325.6610 dotnet +Microsoft.AspNetCore.RequestDecompression 8.0.1325.6610 dotnet +Microsoft.AspNetCore.ResponseCaching 8.0.1325.6610 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.ResponseCompression 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Rewrite 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Routing 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Routing.Abstractions 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.HttpSys 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.IIS 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.IISIntegration 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.Kestrel 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1325.6610 dotnet +Microsoft.AspNetCore.Session 8.0.1325.6610 dotnet +Microsoft.AspNetCore.SignalR 8.0.1325.6610 dotnet +Microsoft.AspNetCore.SignalR.Common 8.0.1325.6610 dotnet +Microsoft.AspNetCore.SignalR.Core 8.0.1325.6610 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1325.6610 dotnet +Microsoft.AspNetCore.StaticFiles 8.0.1325.6610 dotnet +Microsoft.AspNetCore.WebSockets 8.0.1325.6610 dotnet +Microsoft.AspNetCore.WebUtilities 8.0.1325.6610 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.1224.60305 dotnet +Microsoft.CSharp 8.0.1325.6609 dotnet Microsoft.Data.Sqlite 8.0.1124.52104 dotnet Microsoft.EntityFrameworkCore 8.0.1124.52104 dotnet Microsoft.EntityFrameworkCore.Abstractions 8.0.1124.52104 dotnet @@ -132,7 +132,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.1224.60312 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 8.0.1325.6610 dotnet Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet @@ -140,43 +140,43 @@ Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.4661 Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1224.60312 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1224.60312 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1325.6610 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1325.6610 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1124.52116 dotnet -Microsoft.Extensions.Features 8.0.1224.60312 dotnet +Microsoft.Extensions.Features 8.0.1325.6610 dotnet Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.1224.60312 dotnet +Microsoft.Extensions.FileProviders.Embedded 8.0.1325.6610 dotnet Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet Microsoft.Extensions.Http 8.0.1024.46610 dotnet -Microsoft.Extensions.Identity.Core 8.0.1224.60312 dotnet -Microsoft.Extensions.Identity.Stores 8.0.1224.60312 dotnet -Microsoft.Extensions.Localization 8.0.1224.60312 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.1224.60312 dotnet +Microsoft.Extensions.Identity.Core 8.0.1325.6610 dotnet +Microsoft.Extensions.Identity.Stores 8.0.1325.6610 dotnet +Microsoft.Extensions.Localization 8.0.1325.6610 dotnet +Microsoft.Extensions.Localization.Abstractions 8.0.1325.6610 dotnet Microsoft.Extensions.Logging 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.1024.46610 dotnet +Microsoft.Extensions.Logging.Abstractions 8.0.1325.6609 dotnet Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet -Microsoft.Extensions.ObjectPool 8.0.1224.60312 dotnet +Microsoft.Extensions.ObjectPool 8.0.1325.6610 dotnet Microsoft.Extensions.Options 8.0.224.6711 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.1224.60312 dotnet -Microsoft.JSInterop 8.0.1224.60312 dotnet -Microsoft.Net.Http.Headers 8.0.1224.60312 dotnet +Microsoft.Extensions.WebEncoders 8.0.1325.6610 dotnet +Microsoft.JSInterop 8.0.1325.6610 dotnet +Microsoft.Net.Http.Headers 8.0.1325.6610 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.1224.60305 dotnet -Microsoft.VisualBasic.Core 13.0.1224.60305 dotnet -Microsoft.Win32.Primitives 8.0.1224.60305 dotnet -Microsoft.Win32.Registry 8.0.1224.60305 dotnet +Microsoft.VisualBasic 8.0.1325.6609 dotnet +Microsoft.VisualBasic.Core 13.0.1325.6609 dotnet +Microsoft.Win32.Primitives 8.0.1325.6609 dotnet +Microsoft.Win32.Registry 8.0.1325.6609 dotnet Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet Mono.Nat 3.0.4 dotnet NEbml.Core 0.12.0.0 dotnet @@ -209,183 +209,183 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.1224.60305 dotnet -System.AppContext 8.0.1224.60305 dotnet -System.Buffers 8.0.1224.60305 dotnet -System.Collections 8.0.1224.60305 dotnet -System.Collections.Concurrent 8.0.1224.60305 dotnet -System.Collections.Immutable 8.0.1224.60305 dotnet -System.Collections.NonGeneric 8.0.1224.60305 dotnet -System.Collections.Specialized 8.0.1224.60305 dotnet -System.ComponentModel 8.0.1224.60305 dotnet -System.ComponentModel.Annotations 8.0.1224.60305 dotnet -System.ComponentModel.DataAnnotations 8.0.1224.60305 dotnet -System.ComponentModel.EventBasedAsync 8.0.1224.60305 dotnet -System.ComponentModel.Primitives 8.0.1224.60305 dotnet -System.ComponentModel.TypeConverter 8.0.1224.60305 dotnet -System.Configuration 8.0.1224.60305 dotnet -System.Console 8.0.1224.60305 dotnet -System.Core 8.0.1224.60305 dotnet -System.Data 8.0.1224.60305 dotnet -System.Data.Common 8.0.1224.60305 dotnet -System.Data.DataSetExtensions 8.0.1224.60305 dotnet -System.Diagnostics.Contracts 8.0.1224.60305 dotnet -System.Diagnostics.Debug 8.0.1224.60305 dotnet -System.Diagnostics.DiagnosticSource 8.0.1224.60305 dotnet +System 8.0.1325.6609 dotnet +System.AppContext 8.0.1325.6609 dotnet +System.Buffers 8.0.1325.6609 dotnet +System.Collections 8.0.1325.6609 dotnet +System.Collections.Concurrent 8.0.1325.6609 dotnet +System.Collections.Immutable 8.0.1325.6609 dotnet +System.Collections.NonGeneric 8.0.1325.6609 dotnet +System.Collections.Specialized 8.0.1325.6609 dotnet +System.ComponentModel 8.0.1325.6609 dotnet +System.ComponentModel.Annotations 8.0.1325.6609 dotnet +System.ComponentModel.DataAnnotations 8.0.1325.6609 dotnet +System.ComponentModel.EventBasedAsync 8.0.1325.6609 dotnet +System.ComponentModel.Primitives 8.0.1325.6609 dotnet +System.ComponentModel.TypeConverter 8.0.1325.6609 dotnet +System.Configuration 8.0.1325.6609 dotnet +System.Console 8.0.1325.6609 dotnet +System.Core 8.0.1325.6609 dotnet +System.Data 8.0.1325.6609 dotnet +System.Data.Common 8.0.1325.6609 dotnet +System.Data.DataSetExtensions 8.0.1325.6609 dotnet +System.Diagnostics.Contracts 8.0.1325.6609 dotnet +System.Diagnostics.Debug 8.0.1325.6609 dotnet +System.Diagnostics.DiagnosticSource 8.0.1325.6609 dotnet System.Diagnostics.EventLog 8.0.1024.46610 dotnet -System.Diagnostics.FileVersionInfo 8.0.1224.60305 dotnet -System.Diagnostics.Process 8.0.1224.60305 dotnet -System.Diagnostics.StackTrace 8.0.1224.60305 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.1224.60305 dotnet -System.Diagnostics.Tools 8.0.1224.60305 dotnet -System.Diagnostics.TraceSource 8.0.1224.60305 dotnet -System.Diagnostics.Tracing 8.0.1224.60305 dotnet -System.Drawing 8.0.1224.60305 dotnet +System.Diagnostics.FileVersionInfo 8.0.1325.6609 dotnet +System.Diagnostics.Process 8.0.1325.6609 dotnet +System.Diagnostics.StackTrace 8.0.1325.6609 dotnet +System.Diagnostics.TextWriterTraceListener 8.0.1325.6609 dotnet +System.Diagnostics.Tools 8.0.1325.6609 dotnet +System.Diagnostics.TraceSource 8.0.1325.6609 dotnet +System.Diagnostics.Tracing 8.0.1325.6609 dotnet +System.Drawing 8.0.1325.6609 dotnet System.Drawing.Common 8.0.824.36606 dotnet -System.Drawing.Primitives 8.0.1224.60305 dotnet -System.Dynamic.Runtime 8.0.1224.60305 dotnet -System.Formats.Asn1 8.0.1224.60305 dotnet -System.Formats.Tar 8.0.1224.60305 dotnet -System.Globalization 8.0.1224.60305 dotnet -System.Globalization.Calendars 8.0.1224.60305 dotnet -System.Globalization.Extensions 8.0.1224.60305 dotnet -System.IO 8.0.1224.60305 dotnet -System.IO.Compression 8.0.1224.60305 dotnet -System.IO.Compression.Brotli 8.0.1224.60305 dotnet -System.IO.Compression.FileSystem 8.0.1224.60305 dotnet -System.IO.Compression.ZipFile 8.0.1224.60305 dotnet -System.IO.FileSystem 8.0.1224.60305 dotnet -System.IO.FileSystem.AccessControl 8.0.1224.60305 dotnet -System.IO.FileSystem.DriveInfo 8.0.1224.60305 dotnet -System.IO.FileSystem.Primitives 8.0.1224.60305 dotnet -System.IO.FileSystem.Watcher 8.0.1224.60305 dotnet -System.IO.IsolatedStorage 8.0.1224.60305 dotnet -System.IO.MemoryMappedFiles 8.0.1224.60305 dotnet +System.Drawing.Primitives 8.0.1325.6609 dotnet +System.Dynamic.Runtime 8.0.1325.6609 dotnet +System.Formats.Asn1 8.0.1325.6609 dotnet +System.Formats.Tar 8.0.1325.6609 dotnet +System.Globalization 8.0.1325.6609 dotnet +System.Globalization.Calendars 8.0.1325.6609 dotnet +System.Globalization.Extensions 8.0.1325.6609 dotnet +System.IO 8.0.1325.6609 dotnet +System.IO.Compression 8.0.1325.6609 dotnet +System.IO.Compression.Brotli 8.0.1325.6609 dotnet +System.IO.Compression.FileSystem 8.0.1325.6609 dotnet +System.IO.Compression.ZipFile 8.0.1325.6609 dotnet +System.IO.FileSystem 8.0.1325.6609 dotnet +System.IO.FileSystem.AccessControl 8.0.1325.6609 dotnet +System.IO.FileSystem.DriveInfo 8.0.1325.6609 dotnet +System.IO.FileSystem.Primitives 8.0.1325.6609 dotnet +System.IO.FileSystem.Watcher 8.0.1325.6609 dotnet +System.IO.IsolatedStorage 8.0.1325.6609 dotnet +System.IO.MemoryMappedFiles 8.0.1325.6609 dotnet System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.1224.60305 dotnet -System.IO.Pipes.AccessControl 8.0.1224.60305 dotnet -System.IO.UnmanagedMemoryStream 8.0.1224.60305 dotnet -System.Linq 8.0.1224.60305 dotnet +System.IO.Pipes 8.0.1325.6609 dotnet +System.IO.Pipes.AccessControl 8.0.1325.6609 dotnet +System.IO.UnmanagedMemoryStream 8.0.1325.6609 dotnet +System.Linq 8.0.1325.6609 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.1224.60305 dotnet -System.Linq.Parallel 8.0.1224.60305 dotnet -System.Linq.Queryable 8.0.1224.60305 dotnet -System.Memory 8.0.1224.60305 dotnet -System.Net 8.0.1224.60305 dotnet -System.Net.Http 8.0.1224.60305 dotnet -System.Net.Http.Json 8.0.1224.60305 dotnet -System.Net.HttpListener 8.0.1224.60305 dotnet -System.Net.Mail 8.0.1224.60305 dotnet -System.Net.NameResolution 8.0.1224.60305 dotnet -System.Net.NetworkInformation 8.0.1224.60305 dotnet -System.Net.Ping 8.0.1224.60305 dotnet -System.Net.Primitives 8.0.1224.60305 dotnet -System.Net.Quic 8.0.1224.60305 dotnet -System.Net.Requests 8.0.1224.60305 dotnet -System.Net.Security 8.0.1224.60305 dotnet -System.Net.ServicePoint 8.0.1224.60305 dotnet -System.Net.Sockets 8.0.1224.60305 dotnet -System.Net.WebClient 8.0.1224.60305 dotnet -System.Net.WebHeaderCollection 8.0.1224.60305 dotnet -System.Net.WebProxy 8.0.1224.60305 dotnet -System.Net.WebSockets 8.0.1224.60305 dotnet -System.Net.WebSockets.Client 8.0.1224.60305 dotnet -System.Numerics 8.0.1224.60305 dotnet -System.Numerics.Vectors 8.0.1224.60305 dotnet -System.ObjectModel 8.0.1224.60305 dotnet -System.Private.CoreLib 8.0.1224.60305 dotnet -System.Private.DataContractSerialization 8.0.1224.60305 dotnet -System.Private.Uri 8.0.1224.60305 dotnet -System.Private.Xml 8.0.1224.60305 dotnet -System.Private.Xml.Linq 8.0.1224.60305 dotnet -System.Reflection 8.0.1224.60305 dotnet -System.Reflection.DispatchProxy 8.0.1224.60305 dotnet -System.Reflection.Emit 8.0.1224.60305 dotnet -System.Reflection.Emit.ILGeneration 8.0.1224.60305 dotnet -System.Reflection.Emit.Lightweight 8.0.1224.60305 dotnet -System.Reflection.Extensions 8.0.1224.60305 dotnet -System.Reflection.Metadata 8.0.1224.60305 dotnet -System.Reflection.Primitives 8.0.1224.60305 dotnet -System.Reflection.TypeExtensions 8.0.1224.60305 dotnet -System.Resources.Reader 8.0.1224.60305 dotnet -System.Resources.ResourceManager 8.0.1224.60305 dotnet -System.Resources.Writer 8.0.1224.60305 dotnet -System.Runtime 8.0.1224.60305 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.1224.60305 dotnet -System.Runtime.CompilerServices.VisualC 8.0.1224.60305 dotnet -System.Runtime.Extensions 8.0.1224.60305 dotnet -System.Runtime.Handles 8.0.1224.60305 dotnet -System.Runtime.InteropServices 8.0.1224.60305 dotnet -System.Runtime.InteropServices.JavaScript 8.0.1224.60305 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.1224.60305 dotnet -System.Runtime.Intrinsics 8.0.1224.60305 dotnet -System.Runtime.Loader 8.0.1224.60305 dotnet -System.Runtime.Numerics 8.0.1224.60305 dotnet -System.Runtime.Serialization 8.0.1224.60305 dotnet -System.Runtime.Serialization.Formatters 8.0.1224.60305 dotnet -System.Runtime.Serialization.Json 8.0.1224.60305 dotnet -System.Runtime.Serialization.Primitives 8.0.1224.60305 dotnet -System.Runtime.Serialization.Xml 8.0.1224.60305 dotnet -System.Security 8.0.1224.60305 dotnet -System.Security.AccessControl 8.0.1224.60305 dotnet -System.Security.Claims 8.0.1224.60305 dotnet -System.Security.Cryptography 8.0.1224.60305 dotnet -System.Security.Cryptography.Algorithms 8.0.1224.60305 dotnet -System.Security.Cryptography.Cng 8.0.1224.60305 dotnet -System.Security.Cryptography.Csp 8.0.1224.60305 dotnet -System.Security.Cryptography.Encoding 8.0.1224.60305 dotnet -System.Security.Cryptography.OpenSsl 8.0.1224.60305 dotnet +System.Linq.Expressions 8.0.1325.6609 dotnet +System.Linq.Parallel 8.0.1325.6609 dotnet +System.Linq.Queryable 8.0.1325.6609 dotnet +System.Memory 8.0.1325.6609 dotnet +System.Net 8.0.1325.6609 dotnet +System.Net.Http 8.0.1325.6609 dotnet +System.Net.Http.Json 8.0.1325.6609 dotnet +System.Net.HttpListener 8.0.1325.6609 dotnet +System.Net.Mail 8.0.1325.6609 dotnet +System.Net.NameResolution 8.0.1325.6609 dotnet +System.Net.NetworkInformation 8.0.1325.6609 dotnet +System.Net.Ping 8.0.1325.6609 dotnet +System.Net.Primitives 8.0.1325.6609 dotnet +System.Net.Quic 8.0.1325.6609 dotnet +System.Net.Requests 8.0.1325.6609 dotnet +System.Net.Security 8.0.1325.6609 dotnet +System.Net.ServicePoint 8.0.1325.6609 dotnet +System.Net.Sockets 8.0.1325.6609 dotnet +System.Net.WebClient 8.0.1325.6609 dotnet +System.Net.WebHeaderCollection 8.0.1325.6609 dotnet +System.Net.WebProxy 8.0.1325.6609 dotnet +System.Net.WebSockets 8.0.1325.6609 dotnet +System.Net.WebSockets.Client 8.0.1325.6609 dotnet +System.Numerics 8.0.1325.6609 dotnet +System.Numerics.Vectors 8.0.1325.6609 dotnet +System.ObjectModel 8.0.1325.6609 dotnet +System.Private.CoreLib 8.0.1325.6609 dotnet +System.Private.DataContractSerialization 8.0.1325.6609 dotnet +System.Private.Uri 8.0.1325.6609 dotnet +System.Private.Xml 8.0.1325.6609 dotnet +System.Private.Xml.Linq 8.0.1325.6609 dotnet +System.Reflection 8.0.1325.6609 dotnet +System.Reflection.DispatchProxy 8.0.1325.6609 dotnet +System.Reflection.Emit 8.0.1325.6609 dotnet +System.Reflection.Emit.ILGeneration 8.0.1325.6609 dotnet +System.Reflection.Emit.Lightweight 8.0.1325.6609 dotnet +System.Reflection.Extensions 8.0.1325.6609 dotnet +System.Reflection.Metadata 8.0.1325.6609 dotnet +System.Reflection.Primitives 8.0.1325.6609 dotnet +System.Reflection.TypeExtensions 8.0.1325.6609 dotnet +System.Resources.Reader 8.0.1325.6609 dotnet +System.Resources.ResourceManager 8.0.1325.6609 dotnet +System.Resources.Writer 8.0.1325.6609 dotnet +System.Runtime 8.0.1325.6609 dotnet +System.Runtime.CompilerServices.Unsafe 8.0.1325.6609 dotnet +System.Runtime.CompilerServices.VisualC 8.0.1325.6609 dotnet +System.Runtime.Extensions 8.0.1325.6609 dotnet +System.Runtime.Handles 8.0.1325.6609 dotnet +System.Runtime.InteropServices 8.0.1325.6609 dotnet +System.Runtime.InteropServices.JavaScript 8.0.1325.6609 dotnet +System.Runtime.InteropServices.RuntimeInformation 8.0.1325.6609 dotnet +System.Runtime.Intrinsics 8.0.1325.6609 dotnet +System.Runtime.Loader 8.0.1325.6609 dotnet +System.Runtime.Numerics 8.0.1325.6609 dotnet +System.Runtime.Serialization 8.0.1325.6609 dotnet +System.Runtime.Serialization.Formatters 8.0.1325.6609 dotnet +System.Runtime.Serialization.Json 8.0.1325.6609 dotnet +System.Runtime.Serialization.Primitives 8.0.1325.6609 dotnet +System.Runtime.Serialization.Xml 8.0.1325.6609 dotnet +System.Security 8.0.1325.6609 dotnet +System.Security.AccessControl 8.0.1325.6609 dotnet +System.Security.Claims 8.0.1325.6609 dotnet +System.Security.Cryptography 8.0.1325.6609 dotnet +System.Security.Cryptography.Algorithms 8.0.1325.6609 dotnet +System.Security.Cryptography.Cng 8.0.1325.6609 dotnet +System.Security.Cryptography.Csp 8.0.1325.6609 dotnet +System.Security.Cryptography.Encoding 8.0.1325.6609 dotnet +System.Security.Cryptography.OpenSsl 8.0.1325.6609 dotnet System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet -System.Security.Cryptography.Primitives 8.0.1224.60305 dotnet -System.Security.Cryptography.X509Certificates 8.0.1224.60305 dotnet +System.Security.Cryptography.Primitives 8.0.1325.6609 dotnet +System.Security.Cryptography.X509Certificates 8.0.1325.6609 dotnet System.Security.Cryptography.Xml 8.0.1024.46610 dotnet -System.Security.Principal 8.0.1224.60305 dotnet -System.Security.Principal.Windows 8.0.1224.60305 dotnet -System.Security.SecureString 8.0.1224.60305 dotnet -System.ServiceModel.Web 8.0.1224.60305 dotnet -System.ServiceProcess 8.0.1224.60305 dotnet -System.Text.Encoding 8.0.1224.60305 dotnet -System.Text.Encoding.CodePages 8.0.1224.60305 dotnet -System.Text.Encoding.Extensions 8.0.1224.60305 dotnet -System.Text.Encodings.Web 8.0.1224.60305 dotnet -System.Text.Json 8.0.1224.60305 dotnet -System.Text.RegularExpressions 8.0.1224.60305 dotnet -System.Threading 8.0.1224.60305 dotnet -System.Threading.Channels 8.0.1224.60305 dotnet -System.Threading.Overlapped 8.0.1224.60305 dotnet +System.Security.Principal 8.0.1325.6609 dotnet +System.Security.Principal.Windows 8.0.1325.6609 dotnet +System.Security.SecureString 8.0.1325.6609 dotnet +System.ServiceModel.Web 8.0.1325.6609 dotnet +System.ServiceProcess 8.0.1325.6609 dotnet +System.Text.Encoding 8.0.1325.6609 dotnet +System.Text.Encoding.CodePages 8.0.1325.6609 dotnet +System.Text.Encoding.Extensions 8.0.1325.6609 dotnet +System.Text.Encodings.Web 8.0.1325.6609 dotnet +System.Text.Json 8.0.1325.6609 dotnet +System.Text.RegularExpressions 8.0.1325.6609 dotnet +System.Threading 8.0.1325.6609 dotnet +System.Threading.Channels 8.0.1325.6609 dotnet +System.Threading.Overlapped 8.0.1325.6609 dotnet System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.1224.60305 dotnet -System.Threading.Tasks.Dataflow 8.0.1224.60305 dotnet -System.Threading.Tasks.Extensions 8.0.1224.60305 dotnet -System.Threading.Tasks.Parallel 8.0.1224.60305 dotnet -System.Threading.Thread 8.0.1224.60305 dotnet -System.Threading.ThreadPool 8.0.1224.60305 dotnet -System.Threading.Timer 8.0.1224.60305 dotnet -System.Transactions 8.0.1224.60305 dotnet -System.Transactions.Local 8.0.1224.60305 dotnet -System.ValueTuple 8.0.1224.60305 dotnet -System.Web 8.0.1224.60305 dotnet -System.Web.HttpUtility 8.0.1224.60305 dotnet -System.Windows 8.0.1224.60305 dotnet -System.Xml 8.0.1224.60305 dotnet -System.Xml.Linq 8.0.1224.60305 dotnet -System.Xml.ReaderWriter 8.0.1224.60305 dotnet -System.Xml.Serialization 8.0.1224.60305 dotnet -System.Xml.XDocument 8.0.1224.60305 dotnet -System.Xml.XPath 8.0.1224.60305 dotnet -System.Xml.XPath.XDocument 8.0.1224.60305 dotnet -System.Xml.XmlDocument 8.0.1224.60305 dotnet -System.Xml.XmlSerializer 8.0.1224.60305 dotnet +System.Threading.Tasks 8.0.1325.6609 dotnet +System.Threading.Tasks.Dataflow 8.0.1325.6609 dotnet +System.Threading.Tasks.Extensions 8.0.1325.6609 dotnet +System.Threading.Tasks.Parallel 8.0.1325.6609 dotnet +System.Threading.Thread 8.0.1325.6609 dotnet +System.Threading.ThreadPool 8.0.1325.6609 dotnet +System.Threading.Timer 8.0.1325.6609 dotnet +System.Transactions 8.0.1325.6609 dotnet +System.Transactions.Local 8.0.1325.6609 dotnet +System.ValueTuple 8.0.1325.6609 dotnet +System.Web 8.0.1325.6609 dotnet +System.Web.HttpUtility 8.0.1325.6609 dotnet +System.Windows 8.0.1325.6609 dotnet +System.Xml 8.0.1325.6609 dotnet +System.Xml.Linq 8.0.1325.6609 dotnet +System.Xml.ReaderWriter 8.0.1325.6609 dotnet +System.Xml.Serialization 8.0.1325.6609 dotnet +System.Xml.XDocument 8.0.1325.6609 dotnet +System.Xml.XPath 8.0.1325.6609 dotnet +System.Xml.XPath.XDocument 8.0.1325.6609 dotnet +System.Xml.XmlDocument 8.0.1325.6609 dotnet +System.Xml.XmlSerializer 8.0.1325.6609 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.1224.60305 dotnet +WindowsBase 8.0.1325.6609 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10.1 deb +base-files 13ubuntu10.2 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb bsdutils 1:2.39.3-9ubuntu6.2 deb @@ -420,14 +420,14 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.5+ubu2404 deb +jellyfin 10.10.6+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 10.10.5+ubu2404 deb -jellyfin-web 10.10.5+ubu2404 deb +jellyfin-server 10.10.6+ubu2404 deb +jellyfin-web 10.10.6+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.2 deb +krb5-locales 1.20.1-6ubuntu2.3 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb @@ -439,8 +439,8 @@ libbluray2 1:1.3.4-1buil libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.3 deb -libc6 2.39-0ubuntu8.3 deb +libc-bin 2.39-0ubuntu8.4 deb +libc6 2.39-0ubuntu8.4 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2.1 deb @@ -461,15 +461,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.2 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.3 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.2 deb +libk5crypto3 1.20.1-6ubuntu2.3 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.2 deb -libkrb5support0 1.20.1-6ubuntu2.2 deb +libkrb5-3 1.20.1-6ubuntu2.3 deb +libkrb5support0 1.20.1-6ubuntu2.3 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb @@ -557,17 +557,17 @@ libxxhash0 0.8.2-2build1 libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.3 deb +locales 2.39-0ubuntu8.4 deb login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb mount 2.39.3-9ubuntu6.2 deb -mscorlib 8.0.1224.60305 dotnet +mscorlib 8.0.1325.6609 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.1224.60305 dotnet +netstandard 8.0.1325.6609 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb @@ -582,7 +582,7 @@ sensible-utils 0.0.22 systemd-standalone-sysusers 255.4-1ubuntu8.5 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2024b-0ubuntu0.24.04 deb +tzdata 2024b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From 65a837646a6ab3851e5514812d2d6381f43b4ec1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Feb 2025 07:15:34 +0000 Subject: [PATCH 2131/2257] 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 d81ad1c..d8ab03c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -118,11 +118,11 @@ Microsoft.AspNetCore.WebSockets 9.0.225.6704 Microsoft.AspNetCore.WebUtilities 9.0.225.6704 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet Microsoft.CSharp 9.0.225.6610 dotnet -Microsoft.Data.Sqlite 9.0.124.61002 dotnet -Microsoft.EntityFrameworkCore 9.0.124.61002 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.124.61002 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.124.61002 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.124.61002 dotnet +Microsoft.Data.Sqlite 9.0.225.6701 dotnet +Microsoft.EntityFrameworkCore 9.0.225.6701 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.225.6701 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.225.6701 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.225.6701 dotnet Microsoft.Extensions.Caching.Abstractions 9.0.225.6610 dotnet Microsoft.Extensions.Caching.Memory 9.0.225.6610 dotnet Microsoft.Extensions.Configuration 9.0.225.6610 dotnet @@ -138,12 +138,12 @@ Microsoft.Extensions.Configuration.UserSecrets 9.0.225.6610 Microsoft.Extensions.Configuration.Xml 9.0.225.6610 dotnet Microsoft.Extensions.DependencyInjection 9.0.225.6610 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.DependencyModel 9.0.124.61010 dotnet +Microsoft.Extensions.DependencyModel 9.0.225.6610 dotnet Microsoft.Extensions.Diagnostics 9.0.225.6610 dotnet Microsoft.Extensions.Diagnostics.Abstractions 9.0.225.6610 dotnet Microsoft.Extensions.Diagnostics.HealthChecks 9.0.225.6704 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.225.6704 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.124.61009 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.225.6704 dotnet Microsoft.Extensions.Features 9.0.225.6704 dotnet Microsoft.Extensions.FileProviders.Abstractions 9.0.225.6610 dotnet Microsoft.Extensions.FileProviders.Composite 9.0.225.6610 dotnet @@ -421,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025021314+ubu2404 deb +jellyfin 2025021706+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025021314+ubu2404 deb -jellyfin-web 2025021314+ubu2404 deb +jellyfin-server 2025021706+ubu2404 deb +jellyfin-web 2025021706+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 00fc4e9397085478d3c4368df2e132ede4ae6702 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Feb 2025 06:19:34 +0000 Subject: [PATCH 2132/2257] 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 d8ab03c..d8bb74a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.16+3e439d3991497ffc46f2c095c8ff8e9294bfff26 dotnet +Audio Tools Library (ATL) for .NET 6.17+808f649597bba1d45b0f25156b003c6006c7ed51 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.4.0 dotnet BlurHashSharp.SkiaSharp 1.3.4.0 dotnet @@ -421,14 +421,14 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025021706+ubu2404 deb +jellyfin 2025022405+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025021706+ubu2404 deb -jellyfin-web 2025021706+ubu2404 deb +jellyfin-server 2025022405+ubu2404 deb +jellyfin-web 2025022405+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.3 deb +krb5-locales 1.20.1-6ubuntu2.4 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb @@ -465,15 +465,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.3 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.4 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.3 deb +libk5crypto3 1.20.1-6ubuntu2.4 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.3 deb -libkrb5support0 1.20.1-6ubuntu2.3 deb +libkrb5-3 1.20.1-6ubuntu2.4 deb +libkrb5support0 1.20.1-6ubuntu2.4 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb From bdabdc739d7009bcefde3ad7fb2030d3384c0eb0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Feb 2025 12:55:10 +0000 Subject: [PATCH 2133/2257] 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 3b8c1f4..9090bb2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -427,7 +427,7 @@ jellyfin-web 10.10.6+ubu24 jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.3 deb +krb5-locales 1.20.1-6ubuntu2.4 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb @@ -461,15 +461,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.3 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.4 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.3 deb +libk5crypto3 1.20.1-6ubuntu2.4 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.3 deb -libkrb5support0 1.20.1-6ubuntu2.3 deb +libkrb5-3 1.20.1-6ubuntu2.4 deb +libkrb5support0 1.20.1-6ubuntu2.4 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb From ebd61b413aa32e6b764158f8c5fe1ad5baf7e3c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Mar 2025 06:20:03 +0000 Subject: [PATCH 2134/2257] 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 d8bb74a..699549e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.17+808f649597bba1d45b0f25156b003c6006c7ed51 dotnet +Audio Tools Library (ATL) for .NET 6.18+1ab1c2b4e094fc45180d0b58b2aff576b8e12baa dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.4.0 dotnet BlurHashSharp.SkiaSharp 1.3.4.0 dotnet @@ -421,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025022405+ubu2404 deb +jellyfin 2025030305+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025022405+ubu2404 deb -jellyfin-web 2025022405+ubu2404 deb +jellyfin-server 2025030305+ubu2404 deb +jellyfin-web 2025030305+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -447,7 +447,7 @@ libc-bin 2.39-0ubuntu8 libc6 2.39-0ubuntu8.4 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2.1 deb +libcap2 1:2.66-5ubuntu2.2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb libcurl4t64 8.5.0-2ubuntu10.6 deb @@ -463,7 +463,7 @@ libfreetype6 2.13.2+dfsg-1 libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb -libgnutls30t64 3.8.3-1.1ubuntu3.2 deb +libgnutls30t64 3.8.3-1.1ubuntu3.3 deb libgpg-error0 1.47-3build2.1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.4 deb libhogweed6t64 3.9.1-2.2build1.1 deb @@ -475,8 +475,8 @@ libkeyutils1 1.6.3-3build1 libkrb5-3 1.20.1-6ubuntu2.4 deb libkrb5support0 1.20.1-6ubuntu2.4 deb libksba8 1.6.6-1build1 deb -libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb -libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb @@ -520,10 +520,10 @@ libsmartcols1 2.39.3-9ubunt libsqlite3-0 3.45.1-1ubuntu2.1 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.4 deb +libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.5 deb -libtasn1-6 4.19.0-3build1 deb +libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.5 deb @@ -553,7 +553,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.1 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb @@ -573,7 +573,7 @@ ncurses-bin 6.4+20240113- netcat-openbsd 1.226-1ubuntu2 deb netstandard 9.0.225.6610 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.4 deb +openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb perl-base 5.38.2-3.2build2.1 deb pinentry-curses 1.2.1-3ubuntu5 deb From aafa95871135ded51cfdcde363275fbe2c36960b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 4 Mar 2025 12:56:47 +0000 Subject: [PATCH 2135/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9090bb2..fdfe8e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -443,7 +443,7 @@ libc-bin 2.39-0ubuntu8 libc6 2.39-0ubuntu8.4 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2.1 deb +libcap2 1:2.66-5ubuntu2.2 deb libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libcrypt1 1:4.4.36-4build1 deb libcurl4t64 8.5.0-2ubuntu10.6 deb @@ -459,7 +459,7 @@ libfreetype6 2.13.2+dfsg-1 libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb -libgnutls30t64 3.8.3-1.1ubuntu3.2 deb +libgnutls30t64 3.8.3-1.1ubuntu3.3 deb libgpg-error0 1.47-3build2.1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.4 deb libhogweed6t64 3.9.1-2.2build1.1 deb @@ -471,8 +471,8 @@ libkeyutils1 1.6.3-3build1 libkrb5-3 1.20.1-6ubuntu2.4 deb libkrb5support0 1.20.1-6ubuntu2.4 deb libksba8 1.6.6-1build1 deb -libldap-common 2.6.7+dfsg-1~exp1ubuntu8.1 deb -libldap2 2.6.7+dfsg-1~exp1ubuntu8.1 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1build0.1 deb @@ -516,10 +516,10 @@ libsmartcols1 2.39.3-9ubunt libsqlite3-0 3.45.1-1ubuntu2.1 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.4 deb +libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.5 deb -libtasn1-6 4.19.0-3build1 deb +libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.5 deb @@ -549,7 +549,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.1 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1build1 deb @@ -569,7 +569,7 @@ ncurses-bin 6.4+20240113- netcat-openbsd 1.226-1ubuntu2 deb netstandard 8.0.1325.6609 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.4 deb +openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb perl-base 5.38.2-3.2build2.1 deb pinentry-curses 1.2.1-3ubuntu5 deb From d8f0ff9df7c83f6556d534e772f8bf1f5667ec37 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Mar 2025 06:17:45 +0000 Subject: [PATCH 2136/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 699549e..2a8b7be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,14 +421,14 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025030305+ubu2404 deb +jellyfin 2025031005+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025030305+ubu2404 deb -jellyfin-web 2025030305+ubu2404 deb +jellyfin-server 2025031005+ubu2404 deb +jellyfin-web 2025031005+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.4 deb +krb5-locales 1.20.1-6ubuntu2.5 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb @@ -465,15 +465,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.3 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.4 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.4 deb +libk5crypto3 1.20.1-6ubuntu2.5 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.4 deb -libkrb5support0 1.20.1-6ubuntu2.4 deb +libkrb5-3 1.20.1-6ubuntu2.5 deb +libkrb5support0 1.20.1-6ubuntu2.5 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb From f59db6bef495d138993da433e357f7677d7ef4c8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Mar 2025 12:58:20 +0000 Subject: [PATCH 2137/2257] 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 fdfe8e4..9034926 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -427,7 +427,7 @@ jellyfin-web 10.10.6+ubu24 jq 1.7.1-3build1 deb karaoke --dev 2024.728.2.0 dotnet keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.4 deb +krb5-locales 1.20.1-6ubuntu2.5 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb @@ -461,15 +461,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.3 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.4 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.4 deb +libk5crypto3 1.20.1-6ubuntu2.5 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.4 deb -libkrb5support0 1.20.1-6ubuntu2.4 deb +libkrb5-3 1.20.1-6ubuntu2.5 deb +libkrb5support0 1.20.1-6ubuntu2.5 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb From e4c3e69216db5f3fa75509a6df9fc718bc027c96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Mar 2025 05:16:39 +0000 Subject: [PATCH 2138/2257] Bot Updating Package Versions --- package_versions.txt | 640 +++++++++++++++++++++---------------------- 1 file changed, 320 insertions(+), 320 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2a8b7be..1e95236 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.18+1ab1c2b4e094fc45180d0b58b2aff576b8e12baa dotnet +Audio Tools Library (ATL) for .NET 6.19+4f7b4887c912c0868c725cd9e2a6010140973506 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet BlurHashSharp 1.3.4.0 dotnet BlurHashSharp.SkiaSharp 1.3.4.0 dotnet @@ -29,155 +29,155 @@ Json.NET 13.0.3.27908 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 9.0.225.6704 dotnet -Microsoft.AspNetCore.Antiforgery 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authentication 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authentication.Cookies 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authentication.Core 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authentication.OAuth 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authorization 9.0.225.6704 dotnet -Microsoft.AspNetCore.Authorization.Policy 9.0.225.6704 dotnet -Microsoft.AspNetCore.Components 9.0.225.6704 dotnet -Microsoft.AspNetCore.Components.Authorization 9.0.225.6704 dotnet -Microsoft.AspNetCore.Components.Endpoints 9.0.225.6704 dotnet -Microsoft.AspNetCore.Components.Forms 9.0.225.6704 dotnet -Microsoft.AspNetCore.Components.Server 9.0.225.6704 dotnet -Microsoft.AspNetCore.Components.Web 9.0.225.6704 dotnet -Microsoft.AspNetCore.Connections.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.CookiePolicy 9.0.225.6704 dotnet -Microsoft.AspNetCore.Cors 9.0.225.6704 dotnet -Microsoft.AspNetCore.Cryptography.Internal 9.0.225.6704 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.225.6704 dotnet -Microsoft.AspNetCore.DataProtection 9.0.225.6704 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Diagnostics 9.0.225.6704 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.225.6704 dotnet -Microsoft.AspNetCore.HostFiltering 9.0.225.6704 dotnet -Microsoft.AspNetCore.Hosting 9.0.225.6704 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Html.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http.Connections 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http.Connections.Common 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http.Extensions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http.Features 9.0.225.6704 dotnet -Microsoft.AspNetCore.Http.Results 9.0.225.6704 dotnet -Microsoft.AspNetCore.HttpLogging 9.0.225.6704 dotnet -Microsoft.AspNetCore.HttpOverrides 9.0.225.6704 dotnet -Microsoft.AspNetCore.HttpsPolicy 9.0.225.6704 dotnet -Microsoft.AspNetCore.Identity 9.0.225.6704 dotnet -Microsoft.AspNetCore.Localization 9.0.225.6704 dotnet -Microsoft.AspNetCore.Localization.Routing 9.0.225.6704 dotnet -Microsoft.AspNetCore.Metadata 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Core 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Cors 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Localization 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.Razor 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 9.0.225.6704 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.225.6704 dotnet -Microsoft.AspNetCore.OutputCaching 9.0.225.6704 dotnet -Microsoft.AspNetCore.RateLimiting 9.0.225.6704 dotnet -Microsoft.AspNetCore.Razor 9.0.225.6704 dotnet -Microsoft.AspNetCore.Razor.Runtime 9.0.225.6704 dotnet -Microsoft.AspNetCore.RequestDecompression 9.0.225.6704 dotnet -Microsoft.AspNetCore.ResponseCaching 9.0.225.6704 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.ResponseCompression 9.0.225.6704 dotnet -Microsoft.AspNetCore.Rewrite 9.0.225.6704 dotnet -Microsoft.AspNetCore.Routing 9.0.225.6704 dotnet -Microsoft.AspNetCore.Routing.Abstractions 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.HttpSys 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.IIS 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.IISIntegration 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.Kestrel 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.225.6704 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.225.6704 dotnet -Microsoft.AspNetCore.Session 9.0.225.6704 dotnet -Microsoft.AspNetCore.SignalR 9.0.225.6704 dotnet -Microsoft.AspNetCore.SignalR.Common 9.0.225.6704 dotnet -Microsoft.AspNetCore.SignalR.Core 9.0.225.6704 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.225.6704 dotnet -Microsoft.AspNetCore.StaticAssets 9.0.225.6704 dotnet -Microsoft.AspNetCore.StaticFiles 9.0.225.6704 dotnet -Microsoft.AspNetCore.WebSockets 9.0.225.6704 dotnet -Microsoft.AspNetCore.WebUtilities 9.0.225.6704 dotnet +Microsoft.AspNetCore 9.0.325.11220 dotnet +Microsoft.AspNetCore.Antiforgery 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authentication 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authentication.BearerToken 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authentication.Cookies 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authentication.Core 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authentication.OAuth 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authorization 9.0.325.11220 dotnet +Microsoft.AspNetCore.Authorization.Policy 9.0.325.11220 dotnet +Microsoft.AspNetCore.Components 9.0.325.11220 dotnet +Microsoft.AspNetCore.Components.Authorization 9.0.325.11220 dotnet +Microsoft.AspNetCore.Components.Endpoints 9.0.325.11220 dotnet +Microsoft.AspNetCore.Components.Forms 9.0.325.11220 dotnet +Microsoft.AspNetCore.Components.Server 9.0.325.11220 dotnet +Microsoft.AspNetCore.Components.Web 9.0.325.11220 dotnet +Microsoft.AspNetCore.Connections.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.CookiePolicy 9.0.325.11220 dotnet +Microsoft.AspNetCore.Cors 9.0.325.11220 dotnet +Microsoft.AspNetCore.Cryptography.Internal 9.0.325.11220 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.325.11220 dotnet +Microsoft.AspNetCore.DataProtection 9.0.325.11220 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Diagnostics 9.0.325.11220 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.325.11220 dotnet +Microsoft.AspNetCore.HostFiltering 9.0.325.11220 dotnet +Microsoft.AspNetCore.Hosting 9.0.325.11220 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Html.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http.Connections 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http.Connections.Common 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http.Extensions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http.Features 9.0.325.11220 dotnet +Microsoft.AspNetCore.Http.Results 9.0.325.11220 dotnet +Microsoft.AspNetCore.HttpLogging 9.0.325.11220 dotnet +Microsoft.AspNetCore.HttpOverrides 9.0.325.11220 dotnet +Microsoft.AspNetCore.HttpsPolicy 9.0.325.11220 dotnet +Microsoft.AspNetCore.Identity 9.0.325.11220 dotnet +Microsoft.AspNetCore.Localization 9.0.325.11220 dotnet +Microsoft.AspNetCore.Localization.Routing 9.0.325.11220 dotnet +Microsoft.AspNetCore.Metadata 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Core 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Cors 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Localization 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.Razor 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 9.0.325.11220 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.325.11220 dotnet +Microsoft.AspNetCore.OutputCaching 9.0.325.11220 dotnet +Microsoft.AspNetCore.RateLimiting 9.0.325.11220 dotnet +Microsoft.AspNetCore.Razor 9.0.325.11220 dotnet +Microsoft.AspNetCore.Razor.Runtime 9.0.325.11220 dotnet +Microsoft.AspNetCore.RequestDecompression 9.0.325.11220 dotnet +Microsoft.AspNetCore.ResponseCaching 9.0.325.11220 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.ResponseCompression 9.0.325.11220 dotnet +Microsoft.AspNetCore.Rewrite 9.0.325.11220 dotnet +Microsoft.AspNetCore.Routing 9.0.325.11220 dotnet +Microsoft.AspNetCore.Routing.Abstractions 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.HttpSys 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.IIS 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.IISIntegration 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.Kestrel 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.325.11220 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.325.11220 dotnet +Microsoft.AspNetCore.Session 9.0.325.11220 dotnet +Microsoft.AspNetCore.SignalR 9.0.325.11220 dotnet +Microsoft.AspNetCore.SignalR.Common 9.0.325.11220 dotnet +Microsoft.AspNetCore.SignalR.Core 9.0.325.11220 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.325.11220 dotnet +Microsoft.AspNetCore.StaticAssets 9.0.325.11220 dotnet +Microsoft.AspNetCore.StaticFiles 9.0.325.11220 dotnet +Microsoft.AspNetCore.WebSockets 9.0.325.11220 dotnet +Microsoft.AspNetCore.WebUtilities 9.0.325.11220 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 9.0.225.6610 dotnet -Microsoft.Data.Sqlite 9.0.225.6701 dotnet -Microsoft.EntityFrameworkCore 9.0.225.6701 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.225.6701 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.225.6701 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.225.6701 dotnet -Microsoft.Extensions.Caching.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.Caching.Memory 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.Binder 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.CommandLine 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.FileExtensions 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.Ini 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.Json 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 9.0.225.6704 dotnet -Microsoft.Extensions.Configuration.UserSecrets 9.0.225.6610 dotnet -Microsoft.Extensions.Configuration.Xml 9.0.225.6610 dotnet -Microsoft.Extensions.DependencyInjection 9.0.225.6610 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.DependencyModel 9.0.225.6610 dotnet -Microsoft.Extensions.Diagnostics 9.0.225.6610 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 9.0.225.6704 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.225.6704 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.225.6704 dotnet -Microsoft.Extensions.Features 9.0.225.6704 dotnet -Microsoft.Extensions.FileProviders.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.FileProviders.Composite 9.0.225.6610 dotnet -Microsoft.Extensions.FileProviders.Embedded 9.0.225.6704 dotnet -Microsoft.Extensions.FileProviders.Physical 9.0.225.6610 dotnet -Microsoft.Extensions.FileSystemGlobbing 9.0.225.6610 dotnet -Microsoft.Extensions.Hosting 9.0.225.6610 dotnet -Microsoft.Extensions.Hosting.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.Http 9.0.225.6610 dotnet -Microsoft.Extensions.Identity.Core 9.0.225.6704 dotnet -Microsoft.Extensions.Identity.Stores 9.0.225.6704 dotnet -Microsoft.Extensions.Localization 9.0.225.6704 dotnet -Microsoft.Extensions.Localization.Abstractions 9.0.225.6704 dotnet -Microsoft.Extensions.Logging 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.Abstractions 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.Configuration 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.Console 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.Debug 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.EventLog 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.EventSource 9.0.225.6610 dotnet -Microsoft.Extensions.Logging.TraceSource 9.0.225.6610 dotnet -Microsoft.Extensions.ObjectPool 9.0.225.6704 dotnet -Microsoft.Extensions.Options 9.0.225.6610 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 9.0.225.6610 dotnet -Microsoft.Extensions.Options.DataAnnotations 9.0.225.6610 dotnet -Microsoft.Extensions.Primitives 9.0.225.6610 dotnet -Microsoft.Extensions.WebEncoders 9.0.225.6704 dotnet -Microsoft.JSInterop 9.0.225.6704 dotnet -Microsoft.Net.Http.Headers 9.0.225.6704 dotnet +Microsoft.CSharp 9.0.325.11113 dotnet +Microsoft.Data.Sqlite 9.0.325.11202 dotnet +Microsoft.EntityFrameworkCore 9.0.325.11202 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.325.11202 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.325.11202 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.325.11202 dotnet +Microsoft.Extensions.Caching.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.Caching.Memory 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.Binder 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.CommandLine 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.FileExtensions 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.Ini 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.Json 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 9.0.325.11220 dotnet +Microsoft.Extensions.Configuration.UserSecrets 9.0.325.11113 dotnet +Microsoft.Extensions.Configuration.Xml 9.0.325.11113 dotnet +Microsoft.Extensions.DependencyInjection 9.0.325.11113 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.DependencyModel 9.0.325.11113 dotnet +Microsoft.Extensions.Diagnostics 9.0.325.11113 dotnet +Microsoft.Extensions.Diagnostics.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 9.0.325.11220 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.325.11220 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.325.11220 dotnet +Microsoft.Extensions.Features 9.0.325.11220 dotnet +Microsoft.Extensions.FileProviders.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.FileProviders.Composite 9.0.325.11113 dotnet +Microsoft.Extensions.FileProviders.Embedded 9.0.325.11220 dotnet +Microsoft.Extensions.FileProviders.Physical 9.0.325.11113 dotnet +Microsoft.Extensions.FileSystemGlobbing 9.0.325.11113 dotnet +Microsoft.Extensions.Hosting 9.0.325.11113 dotnet +Microsoft.Extensions.Hosting.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.Http 9.0.325.11113 dotnet +Microsoft.Extensions.Identity.Core 9.0.325.11220 dotnet +Microsoft.Extensions.Identity.Stores 9.0.325.11220 dotnet +Microsoft.Extensions.Localization 9.0.325.11220 dotnet +Microsoft.Extensions.Localization.Abstractions 9.0.325.11220 dotnet +Microsoft.Extensions.Logging 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.Abstractions 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.Configuration 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.Console 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.Debug 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.EventLog 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.EventSource 9.0.325.11113 dotnet +Microsoft.Extensions.Logging.TraceSource 9.0.325.11113 dotnet +Microsoft.Extensions.ObjectPool 9.0.325.11220 dotnet +Microsoft.Extensions.Options 9.0.325.11113 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 9.0.325.11113 dotnet +Microsoft.Extensions.Options.DataAnnotations 9.0.325.11113 dotnet +Microsoft.Extensions.Primitives 9.0.325.11113 dotnet +Microsoft.Extensions.WebEncoders 9.0.325.11220 dotnet +Microsoft.JSInterop 9.0.325.11220 dotnet +Microsoft.Net.Http.Headers 9.0.325.11220 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 9.0.225.6610 dotnet -Microsoft.VisualBasic.Core 14.0.225.6610 dotnet -Microsoft.Win32.Primitives 9.0.225.6610 dotnet -Microsoft.Win32.Registry 9.0.225.6610 dotnet +Microsoft.VisualBasic 9.0.325.11113 dotnet +Microsoft.VisualBasic.Core 14.0.325.11113 dotnet +Microsoft.Win32.Primitives 9.0.325.11113 dotnet +Microsoft.Win32.Registry 9.0.325.11113 dotnet Microsoft.Win32.SystemEvents 9.0.24.52809 dotnet NEbml.Core 0.12.0.0 dotnet PlaylistsNET 1.4.1.0 dotnet @@ -209,179 +209,179 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0.0 Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 9.0.225.6610 dotnet -System.AppContext 9.0.225.6610 dotnet -System.Buffers 9.0.225.6610 dotnet -System.Collections 9.0.225.6610 dotnet -System.Collections.Concurrent 9.0.225.6610 dotnet -System.Collections.Immutable 9.0.225.6610 dotnet -System.Collections.NonGeneric 9.0.225.6610 dotnet -System.Collections.Specialized 9.0.225.6610 dotnet -System.ComponentModel 9.0.225.6610 dotnet -System.ComponentModel.Annotations 9.0.225.6610 dotnet -System.ComponentModel.DataAnnotations 9.0.225.6610 dotnet -System.ComponentModel.EventBasedAsync 9.0.225.6610 dotnet -System.ComponentModel.Primitives 9.0.225.6610 dotnet -System.ComponentModel.TypeConverter 9.0.225.6610 dotnet -System.Configuration 9.0.225.6610 dotnet -System.Console 9.0.225.6610 dotnet -System.Core 9.0.225.6610 dotnet -System.Data 9.0.225.6610 dotnet -System.Data.Common 9.0.225.6610 dotnet -System.Data.DataSetExtensions 9.0.225.6610 dotnet -System.Diagnostics.Contracts 9.0.225.6610 dotnet -System.Diagnostics.Debug 9.0.225.6610 dotnet -System.Diagnostics.DiagnosticSource 9.0.225.6610 dotnet -System.Diagnostics.EventLog 9.0.225.6610 dotnet -System.Diagnostics.FileVersionInfo 9.0.225.6610 dotnet -System.Diagnostics.Process 9.0.225.6610 dotnet -System.Diagnostics.StackTrace 9.0.225.6610 dotnet -System.Diagnostics.TextWriterTraceListener 9.0.225.6610 dotnet -System.Diagnostics.Tools 9.0.225.6610 dotnet -System.Diagnostics.TraceSource 9.0.225.6610 dotnet -System.Diagnostics.Tracing 9.0.225.6610 dotnet -System.Drawing 9.0.225.6610 dotnet +System 9.0.325.11113 dotnet +System.AppContext 9.0.325.11113 dotnet +System.Buffers 9.0.325.11113 dotnet +System.Collections 9.0.325.11113 dotnet +System.Collections.Concurrent 9.0.325.11113 dotnet +System.Collections.Immutable 9.0.325.11113 dotnet +System.Collections.NonGeneric 9.0.325.11113 dotnet +System.Collections.Specialized 9.0.325.11113 dotnet +System.ComponentModel 9.0.325.11113 dotnet +System.ComponentModel.Annotations 9.0.325.11113 dotnet +System.ComponentModel.DataAnnotations 9.0.325.11113 dotnet +System.ComponentModel.EventBasedAsync 9.0.325.11113 dotnet +System.ComponentModel.Primitives 9.0.325.11113 dotnet +System.ComponentModel.TypeConverter 9.0.325.11113 dotnet +System.Configuration 9.0.325.11113 dotnet +System.Console 9.0.325.11113 dotnet +System.Core 9.0.325.11113 dotnet +System.Data 9.0.325.11113 dotnet +System.Data.Common 9.0.325.11113 dotnet +System.Data.DataSetExtensions 9.0.325.11113 dotnet +System.Diagnostics.Contracts 9.0.325.11113 dotnet +System.Diagnostics.Debug 9.0.325.11113 dotnet +System.Diagnostics.DiagnosticSource 9.0.325.11113 dotnet +System.Diagnostics.EventLog 9.0.325.11113 dotnet +System.Diagnostics.FileVersionInfo 9.0.325.11113 dotnet +System.Diagnostics.Process 9.0.325.11113 dotnet +System.Diagnostics.StackTrace 9.0.325.11113 dotnet +System.Diagnostics.TextWriterTraceListener 9.0.325.11113 dotnet +System.Diagnostics.Tools 9.0.325.11113 dotnet +System.Diagnostics.TraceSource 9.0.325.11113 dotnet +System.Diagnostics.Tracing 9.0.325.11113 dotnet +System.Drawing 9.0.325.11113 dotnet System.Drawing.Common 9.0.24.52901 dotnet -System.Drawing.Primitives 9.0.225.6610 dotnet -System.Dynamic.Runtime 9.0.225.6610 dotnet -System.Formats.Asn1 9.0.225.6610 dotnet -System.Formats.Tar 9.0.225.6610 dotnet -System.Globalization 9.0.225.6610 dotnet -System.Globalization.Calendars 9.0.225.6610 dotnet -System.Globalization.Extensions 9.0.225.6610 dotnet -System.IO 9.0.225.6610 dotnet -System.IO.Compression 9.0.225.6610 dotnet -System.IO.Compression.Brotli 9.0.225.6610 dotnet -System.IO.Compression.FileSystem 9.0.225.6610 dotnet -System.IO.Compression.ZipFile 9.0.225.6610 dotnet -System.IO.FileSystem 9.0.225.6610 dotnet -System.IO.FileSystem.AccessControl 9.0.225.6610 dotnet -System.IO.FileSystem.DriveInfo 9.0.225.6610 dotnet -System.IO.FileSystem.Primitives 9.0.225.6610 dotnet -System.IO.FileSystem.Watcher 9.0.225.6610 dotnet -System.IO.IsolatedStorage 9.0.225.6610 dotnet -System.IO.MemoryMappedFiles 9.0.225.6610 dotnet -System.IO.Pipelines 9.0.225.6610 dotnet -System.IO.Pipes 9.0.225.6610 dotnet -System.IO.Pipes.AccessControl 9.0.225.6610 dotnet -System.IO.UnmanagedMemoryStream 9.0.225.6610 dotnet -System.Linq 9.0.225.6610 dotnet +System.Drawing.Primitives 9.0.325.11113 dotnet +System.Dynamic.Runtime 9.0.325.11113 dotnet +System.Formats.Asn1 9.0.325.11113 dotnet +System.Formats.Tar 9.0.325.11113 dotnet +System.Globalization 9.0.325.11113 dotnet +System.Globalization.Calendars 9.0.325.11113 dotnet +System.Globalization.Extensions 9.0.325.11113 dotnet +System.IO 9.0.325.11113 dotnet +System.IO.Compression 9.0.325.11113 dotnet +System.IO.Compression.Brotli 9.0.325.11113 dotnet +System.IO.Compression.FileSystem 9.0.325.11113 dotnet +System.IO.Compression.ZipFile 9.0.325.11113 dotnet +System.IO.FileSystem 9.0.325.11113 dotnet +System.IO.FileSystem.AccessControl 9.0.325.11113 dotnet +System.IO.FileSystem.DriveInfo 9.0.325.11113 dotnet +System.IO.FileSystem.Primitives 9.0.325.11113 dotnet +System.IO.FileSystem.Watcher 9.0.325.11113 dotnet +System.IO.IsolatedStorage 9.0.325.11113 dotnet +System.IO.MemoryMappedFiles 9.0.325.11113 dotnet +System.IO.Pipelines 9.0.325.11113 dotnet +System.IO.Pipes 9.0.325.11113 dotnet +System.IO.Pipes.AccessControl 9.0.325.11113 dotnet +System.IO.UnmanagedMemoryStream 9.0.325.11113 dotnet +System.Linq 9.0.325.11113 dotnet System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 9.0.225.6610 dotnet -System.Linq.Parallel 9.0.225.6610 dotnet -System.Linq.Queryable 9.0.225.6610 dotnet -System.Memory 9.0.225.6610 dotnet -System.Net 9.0.225.6610 dotnet -System.Net.Http 9.0.225.6610 dotnet -System.Net.Http.Json 9.0.225.6610 dotnet -System.Net.HttpListener 9.0.225.6610 dotnet -System.Net.Mail 9.0.225.6610 dotnet -System.Net.NameResolution 9.0.225.6610 dotnet -System.Net.NetworkInformation 9.0.225.6610 dotnet -System.Net.Ping 9.0.225.6610 dotnet -System.Net.Primitives 9.0.225.6610 dotnet -System.Net.Quic 9.0.225.6610 dotnet -System.Net.Requests 9.0.225.6610 dotnet -System.Net.Security 9.0.225.6610 dotnet -System.Net.ServicePoint 9.0.225.6610 dotnet -System.Net.Sockets 9.0.225.6610 dotnet -System.Net.WebClient 9.0.225.6610 dotnet -System.Net.WebHeaderCollection 9.0.225.6610 dotnet -System.Net.WebProxy 9.0.225.6610 dotnet -System.Net.WebSockets 9.0.225.6610 dotnet -System.Net.WebSockets.Client 9.0.225.6610 dotnet -System.Numerics 9.0.225.6610 dotnet -System.Numerics.Vectors 9.0.225.6610 dotnet -System.ObjectModel 9.0.225.6610 dotnet -System.Private.CoreLib 9.0.225.6610 dotnet -System.Private.DataContractSerialization 9.0.225.6610 dotnet -System.Private.Uri 9.0.225.6610 dotnet +System.Linq.Expressions 9.0.325.11113 dotnet +System.Linq.Parallel 9.0.325.11113 dotnet +System.Linq.Queryable 9.0.325.11113 dotnet +System.Memory 9.0.325.11113 dotnet +System.Net 9.0.325.11113 dotnet +System.Net.Http 9.0.325.11113 dotnet +System.Net.Http.Json 9.0.325.11113 dotnet +System.Net.HttpListener 9.0.325.11113 dotnet +System.Net.Mail 9.0.325.11113 dotnet +System.Net.NameResolution 9.0.325.11113 dotnet +System.Net.NetworkInformation 9.0.325.11113 dotnet +System.Net.Ping 9.0.325.11113 dotnet +System.Net.Primitives 9.0.325.11113 dotnet +System.Net.Quic 9.0.325.11113 dotnet +System.Net.Requests 9.0.325.11113 dotnet +System.Net.Security 9.0.325.11113 dotnet +System.Net.ServicePoint 9.0.325.11113 dotnet +System.Net.Sockets 9.0.325.11113 dotnet +System.Net.WebClient 9.0.325.11113 dotnet +System.Net.WebHeaderCollection 9.0.325.11113 dotnet +System.Net.WebProxy 9.0.325.11113 dotnet +System.Net.WebSockets 9.0.325.11113 dotnet +System.Net.WebSockets.Client 9.0.325.11113 dotnet +System.Numerics 9.0.325.11113 dotnet +System.Numerics.Vectors 9.0.325.11113 dotnet +System.ObjectModel 9.0.325.11113 dotnet +System.Private.CoreLib 9.0.325.11113 dotnet +System.Private.DataContractSerialization 9.0.325.11113 dotnet +System.Private.Uri 9.0.325.11113 dotnet System.Private.Windows.Core 9.0.24.52901 dotnet -System.Private.Xml 9.0.225.6610 dotnet -System.Private.Xml.Linq 9.0.225.6610 dotnet -System.Reflection 9.0.225.6610 dotnet -System.Reflection.DispatchProxy 9.0.225.6610 dotnet -System.Reflection.Emit 9.0.225.6610 dotnet -System.Reflection.Emit.ILGeneration 9.0.225.6610 dotnet -System.Reflection.Emit.Lightweight 9.0.225.6610 dotnet -System.Reflection.Extensions 9.0.225.6610 dotnet -System.Reflection.Metadata 9.0.225.6610 dotnet -System.Reflection.Primitives 9.0.225.6610 dotnet -System.Reflection.TypeExtensions 9.0.225.6610 dotnet -System.Resources.Reader 9.0.225.6610 dotnet -System.Resources.ResourceManager 9.0.225.6610 dotnet -System.Resources.Writer 9.0.225.6610 dotnet -System.Runtime 9.0.225.6610 dotnet -System.Runtime.CompilerServices.Unsafe 9.0.225.6610 dotnet -System.Runtime.CompilerServices.VisualC 9.0.225.6610 dotnet -System.Runtime.Extensions 9.0.225.6610 dotnet -System.Runtime.Handles 9.0.225.6610 dotnet -System.Runtime.InteropServices 9.0.225.6610 dotnet -System.Runtime.InteropServices.JavaScript 9.0.225.6610 dotnet -System.Runtime.InteropServices.RuntimeInformation 9.0.225.6610 dotnet -System.Runtime.Intrinsics 9.0.225.6610 dotnet -System.Runtime.Loader 9.0.225.6610 dotnet -System.Runtime.Numerics 9.0.225.6610 dotnet -System.Runtime.Serialization 9.0.225.6610 dotnet -System.Runtime.Serialization.Formatters 9.0.225.6610 dotnet -System.Runtime.Serialization.Json 9.0.225.6610 dotnet -System.Runtime.Serialization.Primitives 9.0.225.6610 dotnet -System.Runtime.Serialization.Xml 9.0.225.6610 dotnet -System.Security 9.0.225.6610 dotnet -System.Security.AccessControl 9.0.225.6610 dotnet -System.Security.Claims 9.0.225.6610 dotnet -System.Security.Cryptography 9.0.225.6610 dotnet -System.Security.Cryptography.Algorithms 9.0.225.6610 dotnet -System.Security.Cryptography.Cng 9.0.225.6610 dotnet -System.Security.Cryptography.Csp 9.0.225.6610 dotnet -System.Security.Cryptography.Encoding 9.0.225.6610 dotnet -System.Security.Cryptography.OpenSsl 9.0.225.6610 dotnet -System.Security.Cryptography.Pkcs 9.0.225.6610 dotnet -System.Security.Cryptography.Primitives 9.0.225.6610 dotnet -System.Security.Cryptography.X509Certificates 9.0.225.6610 dotnet -System.Security.Cryptography.Xml 9.0.225.6610 dotnet -System.Security.Principal 9.0.225.6610 dotnet -System.Security.Principal.Windows 9.0.225.6610 dotnet -System.Security.SecureString 9.0.225.6610 dotnet -System.ServiceModel.Web 9.0.225.6610 dotnet -System.ServiceProcess 9.0.225.6610 dotnet -System.Text.Encoding 9.0.225.6610 dotnet -System.Text.Encoding.CodePages 9.0.225.6610 dotnet -System.Text.Encoding.Extensions 9.0.225.6610 dotnet -System.Text.Encodings.Web 9.0.225.6610 dotnet -System.Text.Json 9.0.225.6610 dotnet -System.Text.RegularExpressions 9.0.225.6610 dotnet -System.Threading 9.0.225.6610 dotnet -System.Threading.Channels 9.0.225.6610 dotnet -System.Threading.Overlapped 9.0.225.6610 dotnet -System.Threading.RateLimiting 9.0.225.6610 dotnet -System.Threading.Tasks 9.0.225.6610 dotnet -System.Threading.Tasks.Dataflow 9.0.225.6610 dotnet -System.Threading.Tasks.Extensions 9.0.225.6610 dotnet -System.Threading.Tasks.Parallel 9.0.225.6610 dotnet -System.Threading.Thread 9.0.225.6610 dotnet -System.Threading.ThreadPool 9.0.225.6610 dotnet -System.Threading.Timer 9.0.225.6610 dotnet -System.Transactions 9.0.225.6610 dotnet -System.Transactions.Local 9.0.225.6610 dotnet -System.ValueTuple 9.0.225.6610 dotnet -System.Web 9.0.225.6610 dotnet -System.Web.HttpUtility 9.0.225.6610 dotnet -System.Windows 9.0.225.6610 dotnet -System.Xml 9.0.225.6610 dotnet -System.Xml.Linq 9.0.225.6610 dotnet -System.Xml.ReaderWriter 9.0.225.6610 dotnet -System.Xml.Serialization 9.0.225.6610 dotnet -System.Xml.XDocument 9.0.225.6610 dotnet -System.Xml.XPath 9.0.225.6610 dotnet -System.Xml.XPath.XDocument 9.0.225.6610 dotnet -System.Xml.XmlDocument 9.0.225.6610 dotnet -System.Xml.XmlSerializer 9.0.225.6610 dotnet +System.Private.Xml 9.0.325.11113 dotnet +System.Private.Xml.Linq 9.0.325.11113 dotnet +System.Reflection 9.0.325.11113 dotnet +System.Reflection.DispatchProxy 9.0.325.11113 dotnet +System.Reflection.Emit 9.0.325.11113 dotnet +System.Reflection.Emit.ILGeneration 9.0.325.11113 dotnet +System.Reflection.Emit.Lightweight 9.0.325.11113 dotnet +System.Reflection.Extensions 9.0.325.11113 dotnet +System.Reflection.Metadata 9.0.325.11113 dotnet +System.Reflection.Primitives 9.0.325.11113 dotnet +System.Reflection.TypeExtensions 9.0.325.11113 dotnet +System.Resources.Reader 9.0.325.11113 dotnet +System.Resources.ResourceManager 9.0.325.11113 dotnet +System.Resources.Writer 9.0.325.11113 dotnet +System.Runtime 9.0.325.11113 dotnet +System.Runtime.CompilerServices.Unsafe 9.0.325.11113 dotnet +System.Runtime.CompilerServices.VisualC 9.0.325.11113 dotnet +System.Runtime.Extensions 9.0.325.11113 dotnet +System.Runtime.Handles 9.0.325.11113 dotnet +System.Runtime.InteropServices 9.0.325.11113 dotnet +System.Runtime.InteropServices.JavaScript 9.0.325.11113 dotnet +System.Runtime.InteropServices.RuntimeInformation 9.0.325.11113 dotnet +System.Runtime.Intrinsics 9.0.325.11113 dotnet +System.Runtime.Loader 9.0.325.11113 dotnet +System.Runtime.Numerics 9.0.325.11113 dotnet +System.Runtime.Serialization 9.0.325.11113 dotnet +System.Runtime.Serialization.Formatters 9.0.325.11113 dotnet +System.Runtime.Serialization.Json 9.0.325.11113 dotnet +System.Runtime.Serialization.Primitives 9.0.325.11113 dotnet +System.Runtime.Serialization.Xml 9.0.325.11113 dotnet +System.Security 9.0.325.11113 dotnet +System.Security.AccessControl 9.0.325.11113 dotnet +System.Security.Claims 9.0.325.11113 dotnet +System.Security.Cryptography 9.0.325.11113 dotnet +System.Security.Cryptography.Algorithms 9.0.325.11113 dotnet +System.Security.Cryptography.Cng 9.0.325.11113 dotnet +System.Security.Cryptography.Csp 9.0.325.11113 dotnet +System.Security.Cryptography.Encoding 9.0.325.11113 dotnet +System.Security.Cryptography.OpenSsl 9.0.325.11113 dotnet +System.Security.Cryptography.Pkcs 9.0.325.11113 dotnet +System.Security.Cryptography.Primitives 9.0.325.11113 dotnet +System.Security.Cryptography.X509Certificates 9.0.325.11113 dotnet +System.Security.Cryptography.Xml 9.0.325.11113 dotnet +System.Security.Principal 9.0.325.11113 dotnet +System.Security.Principal.Windows 9.0.325.11113 dotnet +System.Security.SecureString 9.0.325.11113 dotnet +System.ServiceModel.Web 9.0.325.11113 dotnet +System.ServiceProcess 9.0.325.11113 dotnet +System.Text.Encoding 9.0.325.11113 dotnet +System.Text.Encoding.CodePages 9.0.325.11113 dotnet +System.Text.Encoding.Extensions 9.0.325.11113 dotnet +System.Text.Encodings.Web 9.0.325.11113 dotnet +System.Text.Json 9.0.325.11113 dotnet +System.Text.RegularExpressions 9.0.325.11113 dotnet +System.Threading 9.0.325.11113 dotnet +System.Threading.Channels 9.0.325.11113 dotnet +System.Threading.Overlapped 9.0.325.11113 dotnet +System.Threading.RateLimiting 9.0.325.11113 dotnet +System.Threading.Tasks 9.0.325.11113 dotnet +System.Threading.Tasks.Dataflow 9.0.325.11113 dotnet +System.Threading.Tasks.Extensions 9.0.325.11113 dotnet +System.Threading.Tasks.Parallel 9.0.325.11113 dotnet +System.Threading.Thread 9.0.325.11113 dotnet +System.Threading.ThreadPool 9.0.325.11113 dotnet +System.Threading.Timer 9.0.325.11113 dotnet +System.Transactions 9.0.325.11113 dotnet +System.Transactions.Local 9.0.325.11113 dotnet +System.ValueTuple 9.0.325.11113 dotnet +System.Web 9.0.325.11113 dotnet +System.Web.HttpUtility 9.0.325.11113 dotnet +System.Windows 9.0.325.11113 dotnet +System.Xml 9.0.325.11113 dotnet +System.Xml.Linq 9.0.325.11113 dotnet +System.Xml.ReaderWriter 9.0.325.11113 dotnet +System.Xml.Serialization 9.0.325.11113 dotnet +System.Xml.XDocument 9.0.325.11113 dotnet +System.Xml.XPath 9.0.325.11113 dotnet +System.Xml.XPath.XDocument 9.0.325.11113 dotnet +System.Xml.XmlDocument 9.0.325.11113 dotnet +System.Xml.XmlSerializer 9.0.325.11113 dotnet TMDbLib 2.2.0.0 dotnet TagLib# 2.3.0.0 dotnet Ude.NetStandard.dll 1.2 dotnet UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 9.0.225.6610 dotnet +WindowsBase 9.0.325.11113 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb apt-utils 2.7.14build2 deb @@ -421,12 +421,12 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025031005+ubu2404 deb +jellyfin 2025031705+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025031005+ubu2404 deb -jellyfin-web 2025031005+ubu2404 deb +jellyfin-server 2025031705+ubu2404 deb +jellyfin-web 2025031705+ubu2404 deb jq 1.7.1-3build1 deb -karaoke --dev 2024.728.2.0 dotnet +karaoke --dev 2025.228.1.0 dotnet keyboxd 2.4.4-2ubuntu17 deb krb5-locales 1.20.1-6ubuntu2.5 deb libaacs0 0.11.1-2build1 deb @@ -567,11 +567,11 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb mount 2.39.3-9ubuntu6.2 deb -mscorlib 9.0.225.6610 dotnet +mscorlib 9.0.325.11113 dotnet ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb -netstandard 9.0.225.6610 dotnet +netstandard 9.0.325.11113 dotnet ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb From 5b38575d7248330e6751eca357c730087be59bd7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Mar 2025 05:17:25 +0000 Subject: [PATCH 2139/2257] 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 1e95236..d9f487f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -421,10 +421,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025031705+ubu2404 deb +jellyfin 2025032405+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025031705+ubu2404 deb -jellyfin-web 2025031705+ubu2404 deb +jellyfin-server 2025032405+ubu2404 deb +jellyfin-web 2025032405+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2025.228.1.0 dotnet keyboxd 2.4.4-2ubuntu17 deb @@ -522,11 +522,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.5 deb +libsystemd0 255.4-1ubuntu8.6 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.5 deb +libudev1 255.4-1ubuntu8.6 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.2 deb @@ -556,7 +556,7 @@ libxext6 2:1.3.4-1buil libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb -libxslt1.1 1.1.39-0exp1build1 deb +libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb libxxhash0 0.8.2-2build1 deb libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb @@ -584,7 +584,7 @@ readline-common 8.2-4build1 sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5 deb -systemd-standalone-sysusers 255.4-1ubuntu8.5 deb +systemd-standalone-sysusers 255.4-1ubuntu8.6 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2024b-0ubuntu0.24.04.1 deb From 36448dd152b604960f6efe5526f63be3eceaf009 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Mar 2025 12:56:30 +0000 Subject: [PATCH 2140/2257] 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 9034926..92b8a56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -450,7 +450,7 @@ libcurl4t64 8.5.0-2ubuntu libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libedit2 3.1-20230828-1build1 deb -libelf1t64 0.190-1.1build4.1 deb +libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.2 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb @@ -518,11 +518,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.5 deb +libsystemd0 255.4-1ubuntu8.6 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.5 deb +libudev1 255.4-1ubuntu8.6 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.2 deb @@ -552,7 +552,7 @@ libxext6 2:1.3.4-1buil libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb -libxslt1.1 1.1.39-0exp1build1 deb +libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb libxxhash0 0.8.2-2build1 deb libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb @@ -579,7 +579,7 @@ publicsuffix 20231001.0357 readline-common 8.2-4build1 deb sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.5 deb +systemd-standalone-sysusers 255.4-1ubuntu8.6 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2024b-0ubuntu0.24.04.1 deb From 8cf2ce137455eacb9e0065b45c55fae04aa2f964 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Mar 2025 12:57:37 +0000 Subject: [PATCH 2141/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d9f487f..9156f85 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -454,7 +454,7 @@ libcurl4t64 8.5.0-2ubuntu libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb libedit2 3.1-20230828-1build1 deb -libelf1t64 0.190-1.1build4.1 deb +libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.2 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb From f0747e235bbaeb94e3e7d023e9fb944283d82b48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 31 Mar 2025 05:17:38 +0000 Subject: [PATCH 2142/2257] Bot Updating Package Versions --- package_versions.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9156f85..17489d7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,8 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.19+4f7b4887c912c0868c725cd9e2a6010140973506 dotnet +Audio Tools Library (ATL) for .NET 6.20+ec0bc1b532ac3b7a9388c40d59d42d606beb29d4 dotnet BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet +BitFaster.Caching 2.5.3.0 dotnet BlurHashSharp 1.3.4.0 dotnet BlurHashSharp.SkiaSharp 1.3.4.0 dotnet CommandLine 2.9.1.0 dotnet @@ -16,9 +17,10 @@ HarfBuzzSharp 7.3.0.3 ICU4N 60.1.0 dotnet ICU4N.Transliterator 60.1.0 dotnet J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.11.0 dotnet (+13 duplicates) +Jellyfin Server 10.11.0 dotnet (+14 duplicates) Jellyfin.Api 24.4.0.0 dotnet Jellyfin.Data.dll 10.11.0 dotnet +Jellyfin.Database.Implementations.dll 10.11.0 dotnet Jellyfin.Extensions.dll 10.11.0 dotnet Jellyfin.LiveTv 24.4.0.0 dotnet Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet @@ -421,10 +423,10 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025032405+ubu2404 deb +jellyfin 2025033105+ubu2404 deb jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025032405+ubu2404 deb -jellyfin-web 2025032405+ubu2404 deb +jellyfin-server 2025033105+ubu2404 deb +jellyfin-web 2025033105+ubu2404 deb jq 1.7.1-3build1 deb karaoke --dev 2025.228.1.0 dotnet keyboxd 2.4.4-2ubuntu17 deb From 893213b38995664e944012d64c6d82ef8b0fd093 Mon Sep 17 00:00:00 2001 From: quietsy <github@qtsy.cc> Date: Tue, 1 Apr 2025 11:45:39 +0300 Subject: [PATCH 2143/2257] Add malloc trim --- Dockerfile | 2 ++ Dockerfile.aarch64 | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6f05aa2..9d5187d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" +# https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 +ENV MALLOC_TRIM_THRESHOLD_=131072 RUN \ echo "**** install jellyfin *****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 279b0f4..bf89228 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -12,6 +12,8 @@ LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" +# https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 +ENV MALLOC_TRIM_THRESHOLD_=131072 RUN \ echo "**** install jellyfin *****" && \ From 9957700609622a8435cf2e711a250e362120689a Mon Sep 17 00:00:00 2001 From: quietsy <github@qtsy.cc> Date: Tue, 1 Apr 2025 11:46:31 +0300 Subject: [PATCH 2144/2257] Add malloc trim --- Dockerfile | 2 ++ Dockerfile.aarch64 | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index a07eb2e..4c7f525 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" +# https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 +ENV MALLOC_TRIM_THRESHOLD_=131072 RUN \ echo "**** install jellyfin *****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 51ab356..1a9f078 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -12,6 +12,8 @@ LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" +# https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 +ENV MALLOC_TRIM_THRESHOLD_=131072 RUN \ echo "**** install jellyfin *****" && \ From 39b2bb3529ff5d17cdaaf0e9589cd790a89f1b91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Apr 2025 20:14:15 +0000 Subject: [PATCH 2145/2257] Bot Updating Package Versions --- package_versions.txt | 893 +++++++++++++++---------------------------- 1 file changed, 302 insertions(+), 591 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 92b8a56..10150bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,591 +1,302 @@ -NAME VERSION TYPE -AsyncKeyedLock 7.0.2.0 dotnet -Audio Tools Library (ATL) for .NET 6.16+3e439d3991497ffc46f2c095c8ff8e9294bfff26 dotnet -BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet -BlurHashSharp 1.3.4.0 dotnet -BlurHashSharp.SkiaSharp 1.3.4.0 dotnet -CommandLine 2.9.1.0 dotnet -Diacritics.NET 3.3.29 dotnet -DiscUtils.Core 0.16.13.55129 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet -HarfBuzzSharp 7.3.0.3 dotnet -ICU4N 60.1.0 dotnet -ICU4N.Transliterator 60.1.0 dotnet -J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.10.6 dotnet (+13 duplicates) -Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.10.6 dotnet -Jellyfin.Extensions.dll 10.10.6 dotnet -Jellyfin.LiveTv 24.4.0.0 dotnet -Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.10.6 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET 13.0.3.27908 dotnet -MetaBrainz.Common 3.0.0 dotnet -MetaBrainz.Common.Json 6.0.2 dotnet -MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Antiforgery 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authentication 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authentication.Cookies 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authentication.Core 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authentication.OAuth 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authorization 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Authorization.Policy 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Components 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Components.Authorization 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Components.Endpoints 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Components.Forms 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Components.Server 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Components.Web 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Connections.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.CookiePolicy 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Cors 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Cryptography.Internal 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.1325.6610 dotnet -Microsoft.AspNetCore.DataProtection 8.0.1325.6610 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Diagnostics 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 8.0.1325.6610 dotnet -Microsoft.AspNetCore.HostFiltering 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Hosting 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Html.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http.Connections 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http.Connections.Common 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http.Extensions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http.Features 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Http.Results 8.0.1325.6610 dotnet -Microsoft.AspNetCore.HttpLogging 8.0.1325.6610 dotnet -Microsoft.AspNetCore.HttpOverrides 8.0.1325.6610 dotnet -Microsoft.AspNetCore.HttpsPolicy 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Identity 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Localization 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Localization.Routing 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Metadata 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Core 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Cors 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Localization 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.Razor 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 8.0.1325.6610 dotnet -Microsoft.AspNetCore.OutputCaching 8.0.1325.6610 dotnet -Microsoft.AspNetCore.RateLimiting 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Razor 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Razor.Runtime 8.0.1325.6610 dotnet -Microsoft.AspNetCore.RequestDecompression 8.0.1325.6610 dotnet -Microsoft.AspNetCore.ResponseCaching 8.0.1325.6610 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.ResponseCompression 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Rewrite 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Routing 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Routing.Abstractions 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.HttpSys 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.IIS 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.IISIntegration 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.Kestrel 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 8.0.1325.6610 dotnet -Microsoft.AspNetCore.Session 8.0.1325.6610 dotnet -Microsoft.AspNetCore.SignalR 8.0.1325.6610 dotnet -Microsoft.AspNetCore.SignalR.Common 8.0.1325.6610 dotnet -Microsoft.AspNetCore.SignalR.Core 8.0.1325.6610 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 8.0.1325.6610 dotnet -Microsoft.AspNetCore.StaticFiles 8.0.1325.6610 dotnet -Microsoft.AspNetCore.WebSockets 8.0.1325.6610 dotnet -Microsoft.AspNetCore.WebUtilities 8.0.1325.6610 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.1325.6609 dotnet -Microsoft.Data.Sqlite 8.0.1124.52104 dotnet -Microsoft.EntityFrameworkCore 8.0.1124.52104 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.1124.52104 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.1124.52104 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.1124.52104 dotnet -Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Caching.Memory 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Binder 8.0.724.31311 dotnet -Microsoft.Extensions.Configuration.CommandLine 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.FileExtensions 8.0.724.31311 dotnet -Microsoft.Extensions.Configuration.Ini 8.0.23.53103 dotnet -Microsoft.Extensions.Configuration.Json 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 8.0.1325.6610 dotnet -Microsoft.Extensions.Configuration.UserSecrets 8.0.1024.46610 dotnet -Microsoft.Extensions.Configuration.Xml 8.0.1024.46610 dotnet -Microsoft.Extensions.DependencyInjection 8.0.1024.46610 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.DependencyModel 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 8.0.1325.6610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.1325.6610 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.1124.52116 dotnet -Microsoft.Extensions.Features 8.0.1325.6610 dotnet -Microsoft.Extensions.FileProviders.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Composite 8.0.23.53103 dotnet -Microsoft.Extensions.FileProviders.Embedded 8.0.1325.6610 dotnet -Microsoft.Extensions.FileProviders.Physical 8.0.23.53103 dotnet -Microsoft.Extensions.FileSystemGlobbing 8.0.23.53103 dotnet -Microsoft.Extensions.Hosting 8.0.1024.46610 dotnet -Microsoft.Extensions.Hosting.Abstractions 8.0.1024.46610 dotnet -Microsoft.Extensions.Http 8.0.1024.46610 dotnet -Microsoft.Extensions.Identity.Core 8.0.1325.6610 dotnet -Microsoft.Extensions.Identity.Stores 8.0.1325.6610 dotnet -Microsoft.Extensions.Localization 8.0.1325.6610 dotnet -Microsoft.Extensions.Localization.Abstractions 8.0.1325.6610 dotnet -Microsoft.Extensions.Logging 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Abstractions 8.0.1325.6609 dotnet -Microsoft.Extensions.Logging.Configuration 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Console 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.Debug 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.EventLog 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.EventSource 8.0.1024.46610 dotnet -Microsoft.Extensions.Logging.TraceSource 8.0.1024.46610 dotnet -Microsoft.Extensions.ObjectPool 8.0.1325.6610 dotnet -Microsoft.Extensions.Options 8.0.224.6711 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 8.0.23.53103 dotnet -Microsoft.Extensions.Options.DataAnnotations 8.0.23.53103 dotnet -Microsoft.Extensions.Primitives 8.0.23.53103 dotnet -Microsoft.Extensions.WebEncoders 8.0.1325.6610 dotnet -Microsoft.JSInterop 8.0.1325.6610 dotnet -Microsoft.Net.Http.Headers 8.0.1325.6610 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 8.0.1325.6609 dotnet -Microsoft.VisualBasic.Core 13.0.1325.6609 dotnet -Microsoft.Win32.Primitives 8.0.1325.6609 dotnet -Microsoft.Win32.Registry 8.0.1325.6609 dotnet -Microsoft.Win32.SystemEvents 8.0.23.53103 dotnet -Mono.Nat 3.0.4 dotnet -NEbml.Core 0.12.0.0 dotnet -PlaylistsNET 1.4.1.0 dotnet -Prometheus.AspNetCore.dll 8.2.1 dotnet -Prometheus.NetStandard.dll 8.2.1 dotnet -SQLitePCLRaw.batteries_v2 2.1.6.2060 dotnet -SQLitePCLRaw.core 2.1.6.2060 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.6.2060 dotnet -Serilog 4.1.0.0 dotnet -Serilog.AspNetCore 8.0.3.0 dotnet -Serilog.Enrichers.Thread 4.0.0.0 dotnet -Serilog.Extensions.Hosting 8.0.0.0 dotnet -Serilog.Extensions.Logging 8.0.0.0 dotnet -Serilog.Formatting.Compact 2.0.0.0 dotnet -Serilog.Settings.Configuration 8.0.4.0 dotnet -Serilog.Sinks.Async 2.1.0.0 dotnet -Serilog.Sinks.Console 6.0.0.0 dotnet -Serilog.Sinks.Debug 2.0.0.0 dotnet -Serilog.Sinks.File 6.0.0.0 dotnet -Serilog.Sinks.Graylog 3.1.1 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -SkiaSharp 2.88.9.0 dotnet -SkiaSharp.HarfBuzz 2.88.9.0 dotnet -Svg.Custom 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -Svg.Model 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -Svg.Skia 2.0.0.1+b30ba2c1f5219e32a59693e0cea5fa2549d37109 dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 8.0.1325.6609 dotnet -System.AppContext 8.0.1325.6609 dotnet -System.Buffers 8.0.1325.6609 dotnet -System.Collections 8.0.1325.6609 dotnet -System.Collections.Concurrent 8.0.1325.6609 dotnet -System.Collections.Immutable 8.0.1325.6609 dotnet -System.Collections.NonGeneric 8.0.1325.6609 dotnet -System.Collections.Specialized 8.0.1325.6609 dotnet -System.ComponentModel 8.0.1325.6609 dotnet -System.ComponentModel.Annotations 8.0.1325.6609 dotnet -System.ComponentModel.DataAnnotations 8.0.1325.6609 dotnet -System.ComponentModel.EventBasedAsync 8.0.1325.6609 dotnet -System.ComponentModel.Primitives 8.0.1325.6609 dotnet -System.ComponentModel.TypeConverter 8.0.1325.6609 dotnet -System.Configuration 8.0.1325.6609 dotnet -System.Console 8.0.1325.6609 dotnet -System.Core 8.0.1325.6609 dotnet -System.Data 8.0.1325.6609 dotnet -System.Data.Common 8.0.1325.6609 dotnet -System.Data.DataSetExtensions 8.0.1325.6609 dotnet -System.Diagnostics.Contracts 8.0.1325.6609 dotnet -System.Diagnostics.Debug 8.0.1325.6609 dotnet -System.Diagnostics.DiagnosticSource 8.0.1325.6609 dotnet -System.Diagnostics.EventLog 8.0.1024.46610 dotnet -System.Diagnostics.FileVersionInfo 8.0.1325.6609 dotnet -System.Diagnostics.Process 8.0.1325.6609 dotnet -System.Diagnostics.StackTrace 8.0.1325.6609 dotnet -System.Diagnostics.TextWriterTraceListener 8.0.1325.6609 dotnet -System.Diagnostics.Tools 8.0.1325.6609 dotnet -System.Diagnostics.TraceSource 8.0.1325.6609 dotnet -System.Diagnostics.Tracing 8.0.1325.6609 dotnet -System.Drawing 8.0.1325.6609 dotnet -System.Drawing.Common 8.0.824.36606 dotnet -System.Drawing.Primitives 8.0.1325.6609 dotnet -System.Dynamic.Runtime 8.0.1325.6609 dotnet -System.Formats.Asn1 8.0.1325.6609 dotnet -System.Formats.Tar 8.0.1325.6609 dotnet -System.Globalization 8.0.1325.6609 dotnet -System.Globalization.Calendars 8.0.1325.6609 dotnet -System.Globalization.Extensions 8.0.1325.6609 dotnet -System.IO 8.0.1325.6609 dotnet -System.IO.Compression 8.0.1325.6609 dotnet -System.IO.Compression.Brotli 8.0.1325.6609 dotnet -System.IO.Compression.FileSystem 8.0.1325.6609 dotnet -System.IO.Compression.ZipFile 8.0.1325.6609 dotnet -System.IO.FileSystem 8.0.1325.6609 dotnet -System.IO.FileSystem.AccessControl 8.0.1325.6609 dotnet -System.IO.FileSystem.DriveInfo 8.0.1325.6609 dotnet -System.IO.FileSystem.Primitives 8.0.1325.6609 dotnet -System.IO.FileSystem.Watcher 8.0.1325.6609 dotnet -System.IO.IsolatedStorage 8.0.1325.6609 dotnet -System.IO.MemoryMappedFiles 8.0.1325.6609 dotnet -System.IO.Pipelines 8.0.23.53103 dotnet -System.IO.Pipes 8.0.1325.6609 dotnet -System.IO.Pipes.AccessControl 8.0.1325.6609 dotnet -System.IO.UnmanagedMemoryStream 8.0.1325.6609 dotnet -System.Linq 8.0.1325.6609 dotnet -System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 8.0.1325.6609 dotnet -System.Linq.Parallel 8.0.1325.6609 dotnet -System.Linq.Queryable 8.0.1325.6609 dotnet -System.Memory 8.0.1325.6609 dotnet -System.Net 8.0.1325.6609 dotnet -System.Net.Http 8.0.1325.6609 dotnet -System.Net.Http.Json 8.0.1325.6609 dotnet -System.Net.HttpListener 8.0.1325.6609 dotnet -System.Net.Mail 8.0.1325.6609 dotnet -System.Net.NameResolution 8.0.1325.6609 dotnet -System.Net.NetworkInformation 8.0.1325.6609 dotnet -System.Net.Ping 8.0.1325.6609 dotnet -System.Net.Primitives 8.0.1325.6609 dotnet -System.Net.Quic 8.0.1325.6609 dotnet -System.Net.Requests 8.0.1325.6609 dotnet -System.Net.Security 8.0.1325.6609 dotnet -System.Net.ServicePoint 8.0.1325.6609 dotnet -System.Net.Sockets 8.0.1325.6609 dotnet -System.Net.WebClient 8.0.1325.6609 dotnet -System.Net.WebHeaderCollection 8.0.1325.6609 dotnet -System.Net.WebProxy 8.0.1325.6609 dotnet -System.Net.WebSockets 8.0.1325.6609 dotnet -System.Net.WebSockets.Client 8.0.1325.6609 dotnet -System.Numerics 8.0.1325.6609 dotnet -System.Numerics.Vectors 8.0.1325.6609 dotnet -System.ObjectModel 8.0.1325.6609 dotnet -System.Private.CoreLib 8.0.1325.6609 dotnet -System.Private.DataContractSerialization 8.0.1325.6609 dotnet -System.Private.Uri 8.0.1325.6609 dotnet -System.Private.Xml 8.0.1325.6609 dotnet -System.Private.Xml.Linq 8.0.1325.6609 dotnet -System.Reflection 8.0.1325.6609 dotnet -System.Reflection.DispatchProxy 8.0.1325.6609 dotnet -System.Reflection.Emit 8.0.1325.6609 dotnet -System.Reflection.Emit.ILGeneration 8.0.1325.6609 dotnet -System.Reflection.Emit.Lightweight 8.0.1325.6609 dotnet -System.Reflection.Extensions 8.0.1325.6609 dotnet -System.Reflection.Metadata 8.0.1325.6609 dotnet -System.Reflection.Primitives 8.0.1325.6609 dotnet -System.Reflection.TypeExtensions 8.0.1325.6609 dotnet -System.Resources.Reader 8.0.1325.6609 dotnet -System.Resources.ResourceManager 8.0.1325.6609 dotnet -System.Resources.Writer 8.0.1325.6609 dotnet -System.Runtime 8.0.1325.6609 dotnet -System.Runtime.CompilerServices.Unsafe 8.0.1325.6609 dotnet -System.Runtime.CompilerServices.VisualC 8.0.1325.6609 dotnet -System.Runtime.Extensions 8.0.1325.6609 dotnet -System.Runtime.Handles 8.0.1325.6609 dotnet -System.Runtime.InteropServices 8.0.1325.6609 dotnet -System.Runtime.InteropServices.JavaScript 8.0.1325.6609 dotnet -System.Runtime.InteropServices.RuntimeInformation 8.0.1325.6609 dotnet -System.Runtime.Intrinsics 8.0.1325.6609 dotnet -System.Runtime.Loader 8.0.1325.6609 dotnet -System.Runtime.Numerics 8.0.1325.6609 dotnet -System.Runtime.Serialization 8.0.1325.6609 dotnet -System.Runtime.Serialization.Formatters 8.0.1325.6609 dotnet -System.Runtime.Serialization.Json 8.0.1325.6609 dotnet -System.Runtime.Serialization.Primitives 8.0.1325.6609 dotnet -System.Runtime.Serialization.Xml 8.0.1325.6609 dotnet -System.Security 8.0.1325.6609 dotnet -System.Security.AccessControl 8.0.1325.6609 dotnet -System.Security.Claims 8.0.1325.6609 dotnet -System.Security.Cryptography 8.0.1325.6609 dotnet -System.Security.Cryptography.Algorithms 8.0.1325.6609 dotnet -System.Security.Cryptography.Cng 8.0.1325.6609 dotnet -System.Security.Cryptography.Csp 8.0.1325.6609 dotnet -System.Security.Cryptography.Encoding 8.0.1325.6609 dotnet -System.Security.Cryptography.OpenSsl 8.0.1325.6609 dotnet -System.Security.Cryptography.Pkcs 8.0.1024.46610 dotnet -System.Security.Cryptography.Primitives 8.0.1325.6609 dotnet -System.Security.Cryptography.X509Certificates 8.0.1325.6609 dotnet -System.Security.Cryptography.Xml 8.0.1024.46610 dotnet -System.Security.Principal 8.0.1325.6609 dotnet -System.Security.Principal.Windows 8.0.1325.6609 dotnet -System.Security.SecureString 8.0.1325.6609 dotnet -System.ServiceModel.Web 8.0.1325.6609 dotnet -System.ServiceProcess 8.0.1325.6609 dotnet -System.Text.Encoding 8.0.1325.6609 dotnet -System.Text.Encoding.CodePages 8.0.1325.6609 dotnet -System.Text.Encoding.Extensions 8.0.1325.6609 dotnet -System.Text.Encodings.Web 8.0.1325.6609 dotnet -System.Text.Json 8.0.1325.6609 dotnet -System.Text.RegularExpressions 8.0.1325.6609 dotnet -System.Threading 8.0.1325.6609 dotnet -System.Threading.Channels 8.0.1325.6609 dotnet -System.Threading.Overlapped 8.0.1325.6609 dotnet -System.Threading.RateLimiting 8.0.23.53103 dotnet -System.Threading.Tasks 8.0.1325.6609 dotnet -System.Threading.Tasks.Dataflow 8.0.1325.6609 dotnet -System.Threading.Tasks.Extensions 8.0.1325.6609 dotnet -System.Threading.Tasks.Parallel 8.0.1325.6609 dotnet -System.Threading.Thread 8.0.1325.6609 dotnet -System.Threading.ThreadPool 8.0.1325.6609 dotnet -System.Threading.Timer 8.0.1325.6609 dotnet -System.Transactions 8.0.1325.6609 dotnet -System.Transactions.Local 8.0.1325.6609 dotnet -System.ValueTuple 8.0.1325.6609 dotnet -System.Web 8.0.1325.6609 dotnet -System.Web.HttpUtility 8.0.1325.6609 dotnet -System.Windows 8.0.1325.6609 dotnet -System.Xml 8.0.1325.6609 dotnet -System.Xml.Linq 8.0.1325.6609 dotnet -System.Xml.ReaderWriter 8.0.1325.6609 dotnet -System.Xml.Serialization 8.0.1325.6609 dotnet -System.Xml.XDocument 8.0.1325.6609 dotnet -System.Xml.XPath 8.0.1325.6609 dotnet -System.Xml.XPath.XDocument 8.0.1325.6609 dotnet -System.Xml.XmlDocument 8.0.1325.6609 dotnet -System.Xml.XmlSerializer 8.0.1325.6609 dotnet -TMDbLib 2.2.0.0 dotnet -TagLib# 2.3.0.0 dotnet -Ude.NetStandard.dll 1.2 dotnet -UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 8.0.1325.6609 dotnet -adduser 3.137ubuntu1 deb -apt 2.7.14build2 deb -apt-utils 2.7.14build2 deb -at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10.2 deb -base-passwd 3.6.3build1 deb -bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.2 deb -ca-certificates 20240203 deb -catatonit 0.1.7-1 deb -coreutils 9.4-3ubuntu6 deb -cron 3.0pl1-184ubuntu2 deb -cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.6 deb -dash 0.5.12-6ubuntu5 deb -debconf 1.5.86ubuntu1 deb -debianutils 5.17build1 deb -diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17 deb -dpkg 1.22.6ubuntu6.1 deb -e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb -findutils 4.9.0-5build1 deb -fontconfig-config 2.15.0-1.1ubuntu2 deb -fonts-dejavu-core 2.37-8 deb -fonts-dejavu-mono 2.37-8 deb -gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17 deb -gnupg-l10n 2.4.4-2ubuntu17 deb -gnupg-utils 2.4.4-2ubuntu17 deb -gpg 2.4.4-2ubuntu17 deb -gpg-agent 2.4.4-2ubuntu17 deb -gpg-wks-client 2.4.4-2ubuntu17 deb -gpgconf 2.4.4-2ubuntu17 deb -gpgsm 2.4.4-2ubuntu17 deb -gpgv 2.4.4-2ubuntu17 deb -grep 3.11-4build1 deb -gzip 1.12-1ubuntu3 deb -hostname 3.23+nmu2ubuntu2 deb -init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.6+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 10.10.6+ubu2404 deb -jellyfin-web 10.10.6+ubu2404 deb -jq 1.7.1-3build1 deb -karaoke --dev 2024.728.2.0 dotnet -keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.5 deb -libacl1 2.3.2-1build1.1 deb -libapt-pkg6.0t64 2.7.14build2 deb -libassuan0 2.5.6-1build1 deb -libattr1 1:2.5.2-1build1.1 deb -libaudit-common 1:3.1.2-2.1build1.1 deb -libaudit1 1:3.1.2-2.1build1.1 deb -libblkid1 2.39.3-9ubuntu6.2 deb -libbluray2 1:1.3.4-1build1 deb -libbrotli1 1.1.0-2build2 deb -libbsd0 0.12.1-1build1.1 deb -libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.4 deb -libc6 2.39-0ubuntu8.4 deb -libcairo2 1.18.0-3build1 deb -libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2.2 deb -libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb -libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.6 deb -libdb5.3t64 5.3.28+dfsg2-7 deb -libdebconfclient0 0.271ubuntu3 deb -libedit2 3.1-20230828-1build1 deb -libelf1t64 0.190-1.1ubuntu0.1 deb -libexpat1 2.6.1-2ubuntu0.2 deb -libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb -libffi8 3.4.6-1build1 deb -libfontconfig1 2.15.0-1.1ubuntu2 deb -libfreetype6 2.13.2+dfsg-1build3 deb -libgcc-s1 14.2.0-4ubuntu2~24.04 deb -libgcrypt20 1.10.3-2build1 deb -libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb -libgnutls30t64 3.8.3-1.1ubuntu3.3 deb -libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb -libhogweed6t64 3.9.1-2.2build1.1 deb -libicu74 74.2-1ubuntu3.1 deb -libidn2-0 2.3.7-2build1.1 deb -libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.5 deb -libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.5 deb -libkrb5support0 1.20.1-6ubuntu2.5 deb -libksba8 1.6.6-1build1 deb -libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libllvm17t64 1:17.0.6-9ubuntu1 deb -liblz4-1 1.9.4-1build1.1 deb -liblzma5 5.6.1+really5.4.5-1build0.1 deb -libmd0 1.1.0-2build1.1 deb -libmount1 2.39.3-9ubuntu6.2 deb -libmp3lame0 3.100-6build1 deb -libmpg123-0t64 1.32.5-1ubuntu1.1 deb -libncursesw6 6.4+20240113-1ubuntu2 deb -libnettle8t64 3.9.1-2.2build1.1 deb -libnghttp2-14 1.59.0-1ubuntu0.2 deb -libnpth0t64 1.6-3.1build1 deb -libnuma1 2.0.18-1build1 deb -libogg0 1.3.5-3build1 deb -libonig5 6.9.9-1build1 deb -libopenmpt0t64 0.7.3-1.1build3 deb -libopus0 1.4-1build1 deb -libp11-kit0 0.25.3-4ubuntu2.1 deb -libpam-modules 1.5.3-5ubuntu5.1 deb -libpam-modules-bin 1.5.3-5ubuntu5.1 deb -libpam-runtime 1.5.3-5ubuntu5.1 deb -libpam0g 1.5.3-5ubuntu5.1 deb -libpciaccess0 0.17-3build1 deb -libpcre2-8-0 10.42-4ubuntu2.1 deb -libpixman-1-0 0.42.2-1build1 deb -libpng16-16t64 1.6.43-5build1 deb -libproc2-0 2:4.0.4-4ubuntu3.2 deb -libpsl5t64 0.21.2-1.1build1 deb -libreadline8t64 8.2-4build1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb -libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb -libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb -libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.8.0 dotnet -libseccomp2 2.5.5-1ubuntu3.1 deb -libselinux1 3.5-2ubuntu2.1 deb -libsemanage-common 3.5-1build5 deb -libsemanage2 3.5-1build5 deb -libsepol2 3.5-2build1 deb -libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.2 deb -libsqlite3-0 3.45.1-1ubuntu2.1 deb -libss2 1.47.0-2.4~exp1ubuntu4.1 deb -libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.5 deb -libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.6 deb -libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb -libtheora0 1.1.1+dfsg.1-16.1build3 deb -libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.6 deb -libudfread0 1.1.2-1build1 deb -libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.2 deb -libvorbis0a 1.3.7-1build3 deb -libvorbisenc2 1.3.7-1build3 deb -libvorbisfile3 1.3.7-1build3 deb -libvpx9 1.14.0-1ubuntu2.1 deb -libwebp7 1.3.2-0.4build3 deb -libwebpmux3 1.3.2-0.4build3 deb -libx11-6 2:1.8.7-1build1 deb -libx11-data 2:1.8.7-1build1 deb -libx11-xcb1 2:1.8.7-1build1 deb -libx264-164 2:0.164.3108+git31e19f9-1 deb -libx265-199 3.5-2build1 deb -libxau6 1:1.0.9-1build6 deb -libxcb-dri2-0 1.15-1ubuntu2 deb -libxcb-dri3-0 1.15-1ubuntu2 deb -libxcb-present0 1.15-1ubuntu2 deb -libxcb-randr0 1.15-1ubuntu2 deb -libxcb-render0 1.15-1ubuntu2 deb -libxcb-shm0 1.15-1ubuntu2 deb -libxcb-sync1 1.15-1ubuntu2 deb -libxcb-xfixes0 1.15-1ubuntu2 deb -libxcb1 1.15-1ubuntu2 deb -libxdmcp6 1:1.1.3-0ubuntu6 deb -libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb -libxrender1 1:0.9.10-1.1build1 deb -libxshmfence1 1.3-1build5 deb -libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb -libxxhash0 0.8.2-2build1 deb -libzstd1 1.5.5+dfsg2-2build1.1 deb -libzvbi-common 0.2.42-2 deb -libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.4 deb -login 1:4.13+dfsg1-4ubuntu3.2 deb -logsave 1.47.0-2.4~exp1ubuntu4.1 deb -mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb -mount 2.39.3-9ubuntu6.2 deb -mscorlib 8.0.1325.6609 dotnet -ncurses-base 6.4+20240113-1ubuntu2 deb -ncurses-bin 6.4+20240113-1ubuntu2 deb -netcat-openbsd 1.226-1ubuntu2 deb -netstandard 8.0.1325.6609 dotnet -ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.5 deb -passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2build2.1 deb -pinentry-curses 1.2.1-3ubuntu5 deb -procps 2:4.0.4-4ubuntu3.2 deb -prometheus-net.DotNetRuntime 4.4.1.0 dotnet -publicsuffix 20231001.0357-0.1 deb -readline-common 8.2-4build1 deb -sed 4.9-2build1 deb -sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.6 deb -sysvinit-utils 3.08-6ubuntu3 deb -tar 1.35+dfsg-3build1 deb -tzdata 2024b-0ubuntu0.24.04.1 deb -ubuntu-keyring 2023.11.28.1 deb -unminimize 0.2.1 deb -util-linux 2.39.3-9ubuntu6.2 deb -xmlstarlet 1.6.1-4 deb -zlib.net 1.0.8.0 dotnet -zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb +NAME VERSION TYPE +AsyncKeyedLock 7.0.2 dotnet +BDInfo 0.8.0 dotnet +BlurHashSharp 1.3.4 dotnet +BlurHashSharp.SkiaSharp 1.3.4 dotnet +CommandLineParser 2.9.1 dotnet +Diacritics 3.3.29 dotnet +DiscUtils.Core 0.16.13 dotnet +DiscUtils.Iso9660 0.16.13 dotnet +DiscUtils.Streams 0.16.13 dotnet +DiscUtils.Udf 0.16.13 dotnet +DotNet.Glob 3.1.3 dotnet +Emby.Naming 10.10.7.0 dotnet +Emby.Photos 24.4.0 dotnet +Emby.Server.Implementations 24.4.0 dotnet +ExCSS 4.2.3 dotnet +HarfBuzzSharp 7.3.0.3 dotnet +ICU4N 60.1.0-alpha.356 dotnet +ICU4N.Transliterator 60.1.0-alpha.356 dotnet +J2N 2.0.0 dotnet +Jellyfin.Api 24.4.0 dotnet +Jellyfin.Common 24.4.0 dotnet +Jellyfin.Controller 24.4.0 dotnet +Jellyfin.Data 24.4.0 dotnet +Jellyfin.Drawing 24.4.0 dotnet +Jellyfin.Drawing.Skia 24.4.0 dotnet +Jellyfin.Extensions 24.4.0 dotnet +Jellyfin.LiveTv 24.4.0 dotnet +Jellyfin.MediaEncoding.Hls 24.4.0 dotnet +Jellyfin.MediaEncoding.Keyframes 24.4.0 dotnet +Jellyfin.Model 24.4.0 dotnet +Jellyfin.Naming 24.4.0 dotnet +Jellyfin.Networking 24.4.0 dotnet +Jellyfin.Server.Implementations 24.4.0 dotnet +Jellyfin.XmlTv 10.8.0 dotnet +LrcParser 2025.228.1 dotnet +MediaBrowser.Common 10.10.7.0 dotnet +MediaBrowser.Controller 10.10.7.0 dotnet +MediaBrowser.LocalMetadata 24.4.0 dotnet +MediaBrowser.MediaEncoding 24.4.0 dotnet +MediaBrowser.Model 10.10.7.0 dotnet +MediaBrowser.Providers 24.4.0 dotnet +MediaBrowser.XbmcMetadata 24.4.0 dotnet +MetaBrainz.Common 3.0.0 dotnet +MetaBrainz.Common.Json 6.0.2 dotnet +MetaBrainz.MusicBrainz 6.1.0 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet +Microsoft.Data.Sqlite.Core 8.0.11 dotnet +Microsoft.EntityFrameworkCore 8.0.11 dotnet +Microsoft.EntityFrameworkCore.Abstractions 8.0.11 dotnet +Microsoft.EntityFrameworkCore.Relational 8.0.11 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.11 dotnet +Microsoft.Extensions.DependencyModel 8.0.2 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.11 dotnet +Microsoft.OpenApi 1.2.3 dotnet +Microsoft.Win32.SystemEvents 8.0.0 dotnet +Mono.Nat 3.0.4 dotnet +NEbml 0.12.0 dotnet +Newtonsoft.Json 13.0.3 dotnet +PlaylistsNET 1.4.1 dotnet +SQLitePCLRaw.bundle_e_sqlite3 2.1.6 dotnet +SQLitePCLRaw.core 2.1.6 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.6 dotnet +Serilog 4.1.0 dotnet +Serilog.AspNetCore 8.0.3 dotnet +Serilog.Enrichers.Thread 4.0.0 dotnet +Serilog.Extensions.Hosting 8.0.0 dotnet +Serilog.Extensions.Logging 8.0.0 dotnet +Serilog.Formatting.Compact 2.0.0 dotnet +Serilog.Settings.Configuration 8.0.4 dotnet +Serilog.Sinks.Async 2.1.0 dotnet +Serilog.Sinks.Console 6.0.0 dotnet +Serilog.Sinks.Debug 2.0.0 dotnet +Serilog.Sinks.File 6.0.0 dotnet +Serilog.Sinks.Graylog 3.1.1 dotnet +ShimSkiaSharp 2.0.0.1 dotnet +SkiaSharp 2.88.9 dotnet +SkiaSharp.HarfBuzz 2.88.9 dotnet +Svg.Custom 2.0.0.1 dotnet +Svg.Model 2.0.0.1 dotnet +Svg.Skia 2.0.0.1 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet +System.Drawing.Common 8.0.8 dotnet +System.Linq.Async 6.0.1 dotnet +TMDbLib 2.2.0 dotnet +TagLibSharp 2.3.0 dotnet +UTF.Unknown 2.5.1 dotnet +Ude.NetStandard 1.2.0 dotnet +adduser 3.137ubuntu1 deb +apt 2.7.14build2 deb +apt-utils 2.7.14build2 deb +at 3.2.5-2.1ubuntu3 deb +base-files 13ubuntu10.2 deb +base-passwd 3.6.3build1 deb +bash 5.2.21-2ubuntu4 deb +bsdutils 1:2.39.3-9ubuntu6.2 deb +ca-certificates 20240203 deb +catatonit 0.1.7-1 deb +coreutils 9.4-3ubuntu6 deb +cron 3.0pl1-184ubuntu2 deb +cron-daemon-common 3.0pl1-184ubuntu2 deb +curl 8.5.0-2ubuntu10.6 deb +dash 0.5.12-6ubuntu5 deb +debconf 1.5.86ubuntu1 deb +debianutils 5.17build1 deb +diffutils 1:3.10-1build1 deb +dirmngr 2.4.4-2ubuntu17 deb +dpkg 1.22.6ubuntu6.1 deb +e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb +findutils 4.9.0-5build1 deb +fontconfig-config 2.15.0-1.1ubuntu2 deb +fonts-dejavu-core 2.37-8 deb +fonts-dejavu-mono 2.37-8 deb +gcc-14-base 14.2.0-4ubuntu2~24.04 deb +gnupg 2.4.4-2ubuntu17 deb +gnupg-l10n 2.4.4-2ubuntu17 deb +gnupg-utils 2.4.4-2ubuntu17 deb +gpg 2.4.4-2ubuntu17 deb +gpg-agent 2.4.4-2ubuntu17 deb +gpg-wks-client 2.4.4-2ubuntu17 deb +gpgconf 2.4.4-2ubuntu17 deb +gpgsm 2.4.4-2ubuntu17 deb +gpgv 2.4.4-2ubuntu17 deb +grep 3.11-4build1 deb +gzip 1.12-1ubuntu3 deb +hostname 3.23+nmu2ubuntu2 deb +init-system-helpers 1.66ubuntu1 deb +jellyfin 10.10.7+ubu2404 deb +jellyfin 24.04 dotnet +jellyfin-ffmpeg7 7.0.2-9-noble deb +jellyfin-server 10.10.7+ubu2404 deb +jellyfin-web 10.10.7+ubu2404 deb +jq 1.7.1-3build1 deb +keyboxd 2.4.4-2ubuntu17 deb +krb5-locales 1.20.1-6ubuntu2.5 deb +libacl1 2.3.2-1build1.1 deb +libapt-pkg6.0t64 2.7.14build2 deb +libassuan0 2.5.6-1build1 deb +libattr1 1:2.5.2-1build1.1 deb +libaudit-common 1:3.1.2-2.1build1.1 deb +libaudit1 1:3.1.2-2.1build1.1 deb +libblkid1 2.39.3-9ubuntu6.2 deb +libbluray2 1:1.3.4-1build1 deb +libbrotli1 1.1.0-2build2 deb +libbsd0 0.12.1-1build1.1 deb +libbz2-1.0 1.0.8-5.1build0.1 deb +libc-bin 2.39-0ubuntu8.4 deb +libc6 2.39-0ubuntu8.4 deb +libcairo2 1.18.0-3build1 deb +libcap-ng0 0.8.4-2build2 deb +libcap2 1:2.66-5ubuntu2.2 deb +libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb +libcrypt1 1:4.4.36-4build1 deb +libcurl4t64 8.5.0-2ubuntu10.6 deb +libdb5.3t64 5.3.28+dfsg2-7 deb +libdebconfclient0 0.271ubuntu3 deb +libedit2 3.1-20230828-1build1 deb +libelf1t64 0.190-1.1ubuntu0.1 deb +libexpat1 2.6.1-2ubuntu0.2 deb +libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb +libffi8 3.4.6-1build1 deb +libfontconfig1 2.15.0-1.1ubuntu2 deb +libfreetype6 2.13.2+dfsg-1build3 deb +libgcc-s1 14.2.0-4ubuntu2~24.04 deb +libgcrypt20 1.10.3-2build1 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb +libgnutls30t64 3.8.3-1.1ubuntu3.3 deb +libgpg-error0 1.47-3build2.1 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb +libhogweed6t64 3.9.1-2.2build1.1 deb +libicu74 74.2-1ubuntu3.1 deb +libidn2-0 2.3.7-2build1.1 deb +libjq1 1.7.1-3build1 deb +libk5crypto3 1.20.1-6ubuntu2.5 deb +libkeyutils1 1.6.3-3build1 deb +libkrb5-3 1.20.1-6ubuntu2.5 deb +libkrb5support0 1.20.1-6ubuntu2.5 deb +libksba8 1.6.6-1build1 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libllvm17t64 1:17.0.6-9ubuntu1 deb +liblz4-1 1.9.4-1build1.1 deb +liblzma5 5.6.1+really5.4.5-1build0.1 deb +libmd0 1.1.0-2build1.1 deb +libmount1 2.39.3-9ubuntu6.2 deb +libmp3lame0 3.100-6build1 deb +libmpg123-0t64 1.32.5-1ubuntu1.1 deb +libncursesw6 6.4+20240113-1ubuntu2 deb +libnettle8t64 3.9.1-2.2build1.1 deb +libnghttp2-14 1.59.0-1ubuntu0.2 deb +libnpth0t64 1.6-3.1build1 deb +libnuma1 2.0.18-1build1 deb +libogg0 1.3.5-3build1 deb +libonig5 6.9.9-1build1 deb +libopenmpt0t64 0.7.3-1.1build3 deb +libopus0 1.4-1build1 deb +libp11-kit0 0.25.3-4ubuntu2.1 deb +libpam-modules 1.5.3-5ubuntu5.1 deb +libpam-modules-bin 1.5.3-5ubuntu5.1 deb +libpam-runtime 1.5.3-5ubuntu5.1 deb +libpam0g 1.5.3-5ubuntu5.1 deb +libpciaccess0 0.17-3build1 deb +libpcre2-8-0 10.42-4ubuntu2.1 deb +libpixman-1-0 0.42.2-1build1 deb +libpng16-16t64 1.6.43-5build1 deb +libproc2-0 2:4.0.4-4ubuntu3.2 deb +libpsl5t64 0.21.2-1.1build1 deb +libreadline8t64 8.2-4build1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb +libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb +libse 4.0.8 dotnet +libseccomp2 2.5.5-1ubuntu3.1 deb +libselinux1 3.5-2ubuntu2.1 deb +libsemanage-common 3.5-1build5 deb +libsemanage2 3.5-1build5 deb +libsepol2 3.5-2build1 deb +libsharpyuv0 1.3.2-0.4build3 deb +libsmartcols1 2.39.3-9ubuntu6.2 deb +libsqlite3-0 3.45.1-1ubuntu2.1 deb +libss2 1.47.0-2.4~exp1ubuntu4.1 deb +libssh-4 0.10.6-2build2 deb +libssl3t64 3.0.13-0ubuntu3.5 deb +libstdc++6 14.2.0-4ubuntu2~24.04 deb +libsystemd0 255.4-1ubuntu8.6 deb +libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb +libtheora0 1.1.1+dfsg.1-16.1build3 deb +libtinfo6 6.4+20240113-1ubuntu2 deb +libudev1 255.4-1ubuntu8.6 deb +libudfread0 1.1.2-1build1 deb +libunistring5 1.1-2build1.1 deb +libuuid1 2.39.3-9ubuntu6.2 deb +libvorbis0a 1.3.7-1build3 deb +libvorbisenc2 1.3.7-1build3 deb +libvorbisfile3 1.3.7-1build3 deb +libvpx9 1.14.0-1ubuntu2.1 deb +libwebp7 1.3.2-0.4build3 deb +libwebpmux3 1.3.2-0.4build3 deb +libx11-6 2:1.8.7-1build1 deb +libx11-data 2:1.8.7-1build1 deb +libx11-xcb1 2:1.8.7-1build1 deb +libx264-164 2:0.164.3108+git31e19f9-1 deb +libx265-199 3.5-2build1 deb +libxau6 1:1.0.9-1build6 deb +libxcb-dri2-0 1.15-1ubuntu2 deb +libxcb-dri3-0 1.15-1ubuntu2 deb +libxcb-present0 1.15-1ubuntu2 deb +libxcb-randr0 1.15-1ubuntu2 deb +libxcb-render0 1.15-1ubuntu2 deb +libxcb-shm0 1.15-1ubuntu2 deb +libxcb-sync1 1.15-1ubuntu2 deb +libxcb-xfixes0 1.15-1ubuntu2 deb +libxcb1 1.15-1ubuntu2 deb +libxdmcp6 1:1.1.3-0ubuntu6 deb +libxext6 2:1.3.4-1build2 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb +libxrender1 1:0.9.10-1.1build1 deb +libxshmfence1 1.3-1build5 deb +libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb +libxxhash0 0.8.2-2build1 deb +libzstd1 1.5.5+dfsg2-2build1.1 deb +libzvbi-common 0.2.42-2 deb +libzvbi0t64 0.2.42-2 deb +locales 2.39-0ubuntu8.4 deb +login 1:4.13+dfsg1-4ubuntu3.2 deb +logsave 1.47.0-2.4~exp1ubuntu4.1 deb +mawk 1.3.4.20240123-1build1 deb +mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb +mount 2.39.3-9ubuntu6.2 deb +ncurses-base 6.4+20240113-1ubuntu2 deb +ncurses-bin 6.4+20240113-1ubuntu2 deb +netcat-openbsd 1.226-1ubuntu2 deb +ocl-icd-libopencl1 2.3.2-1build1 deb +openssl 3.0.13-0ubuntu3.5 deb +passwd 1:4.13+dfsg1-4ubuntu3.2 deb +perl-base 5.38.2-3.2build2.1 deb +pinentry-curses 1.2.1-3ubuntu5 deb +procps 2:4.0.4-4ubuntu3.2 deb +prometheus-net 8.2.1 dotnet +prometheus-net.AspNetCore 8.2.1 dotnet +prometheus-net.DotNetRuntime 4.4.1 dotnet +publicsuffix 20231001.0357-0.1 deb +readline-common 8.2-4build1 deb +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 8.0.14 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 8.0.14 dotnet +sed 4.9-2build1 deb +sensible-utils 0.0.22 deb +systemd-standalone-sysusers 255.4-1ubuntu8.6 deb +sysvinit-utils 3.08-6ubuntu3 deb +tar 1.35+dfsg-3build1 deb +tzdata 2025a-0ubuntu0.24.04 deb +ubuntu-keyring 2023.11.28.1 deb +unminimize 0.2.1 deb +util-linux 2.39.3-9ubuntu6.2 deb +xmlstarlet 1.6.1-4 deb +z440.atl.core 6.20.0 dotnet +zlib.net-mutliplatform 1.0.8 dotnet +zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From fb23db6298fcec00a3930f4ea4249ab30c10e865 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Apr 2025 06:22:13 +0000 Subject: [PATCH 2146/2257] Bot Updating Package Versions --- package_versions.txt | 906 +++++++++++++++---------------------------- 1 file changed, 308 insertions(+), 598 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 17489d7..1962cc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,598 +1,308 @@ -NAME VERSION TYPE -AsyncKeyedLock 7.1.4.0 dotnet -Audio Tools Library (ATL) for .NET 6.20+ec0bc1b532ac3b7a9388c40d59d42d606beb29d4 dotnet -BDInfo 0.8.0.0+40d2c5be76f68096f7277b706ccaf23395ee6e6e dotnet -BitFaster.Caching 2.5.3.0 dotnet -BlurHashSharp 1.3.4.0 dotnet -BlurHashSharp.SkiaSharp 1.3.4.0 dotnet -CommandLine 2.9.1.0 dotnet -Diacritics.NET 3.3.29 dotnet -DiscUtils.Core 0.16.13.55129 dotnet -DiscUtils.Iso9660 0.16.13.55129 dotnet -DiscUtils.Streams 0.16.13.55129 dotnet -DiscUtils.Udf 0.16.13.55129 dotnet -DotNet.Glob 3.1.3+Branch.master.Sha.6f8a320a9cc6069e80f36bb24f777a21d1c48064.6f8a320a9cc6069e80f36bb24f777a21d1c48064 dotnet -ExCSS 4.2.3-release.0+Branch.release-v4.2.3.Sha.fae6c5b37e8dc7320518803aba15f64638100141 dotnet -HarfBuzzSharp 7.3.0.3 dotnet -ICU4N 60.1.0 dotnet -ICU4N.Transliterator 60.1.0 dotnet -J2N 2.0.0+ca530a621b935deeb854593acba0ebd103ceb35e dotnet -Jellyfin Server 10.11.0 dotnet (+14 duplicates) -Jellyfin.Api 24.4.0.0 dotnet -Jellyfin.Data.dll 10.11.0 dotnet -Jellyfin.Database.Implementations.dll 10.11.0 dotnet -Jellyfin.Extensions.dll 10.11.0 dotnet -Jellyfin.LiveTv 24.4.0.0 dotnet -Jellyfin.MediaEncoding.Hls 24.4.0.0 dotnet -Jellyfin.MediaEncoding.Keyframes 24.4.0.0 dotnet -Jellyfin.Networking.dll 10.11.0 dotnet -Jellyfin.XmlTv 1.0.0.0 dotnet -Json.NET 13.0.3.27908 dotnet -MetaBrainz.Common 3.0.0 dotnet -MetaBrainz.Common.Json 6.0.2 dotnet -MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.AspNetCore 9.0.325.11220 dotnet -Microsoft.AspNetCore.Antiforgery 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authentication 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authentication.BearerToken 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authentication.Cookies 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authentication.Core 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authentication.OAuth 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authorization 9.0.325.11220 dotnet -Microsoft.AspNetCore.Authorization.Policy 9.0.325.11220 dotnet -Microsoft.AspNetCore.Components 9.0.325.11220 dotnet -Microsoft.AspNetCore.Components.Authorization 9.0.325.11220 dotnet -Microsoft.AspNetCore.Components.Endpoints 9.0.325.11220 dotnet -Microsoft.AspNetCore.Components.Forms 9.0.325.11220 dotnet -Microsoft.AspNetCore.Components.Server 9.0.325.11220 dotnet -Microsoft.AspNetCore.Components.Web 9.0.325.11220 dotnet -Microsoft.AspNetCore.Connections.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.CookiePolicy 9.0.325.11220 dotnet -Microsoft.AspNetCore.Cors 9.0.325.11220 dotnet -Microsoft.AspNetCore.Cryptography.Internal 9.0.325.11220 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 9.0.325.11220 dotnet -Microsoft.AspNetCore.DataProtection 9.0.325.11220 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Diagnostics 9.0.325.11220 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 9.0.325.11220 dotnet -Microsoft.AspNetCore.HostFiltering 9.0.325.11220 dotnet -Microsoft.AspNetCore.Hosting 9.0.325.11220 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Html.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http.Connections 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http.Connections.Common 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http.Extensions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http.Features 9.0.325.11220 dotnet -Microsoft.AspNetCore.Http.Results 9.0.325.11220 dotnet -Microsoft.AspNetCore.HttpLogging 9.0.325.11220 dotnet -Microsoft.AspNetCore.HttpOverrides 9.0.325.11220 dotnet -Microsoft.AspNetCore.HttpsPolicy 9.0.325.11220 dotnet -Microsoft.AspNetCore.Identity 9.0.325.11220 dotnet -Microsoft.AspNetCore.Localization 9.0.325.11220 dotnet -Microsoft.AspNetCore.Localization.Routing 9.0.325.11220 dotnet -Microsoft.AspNetCore.Metadata 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Core 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Cors 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Localization 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.Razor 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 9.0.325.11220 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 9.0.325.11220 dotnet -Microsoft.AspNetCore.OutputCaching 9.0.325.11220 dotnet -Microsoft.AspNetCore.RateLimiting 9.0.325.11220 dotnet -Microsoft.AspNetCore.Razor 9.0.325.11220 dotnet -Microsoft.AspNetCore.Razor.Runtime 9.0.325.11220 dotnet -Microsoft.AspNetCore.RequestDecompression 9.0.325.11220 dotnet -Microsoft.AspNetCore.ResponseCaching 9.0.325.11220 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.ResponseCompression 9.0.325.11220 dotnet -Microsoft.AspNetCore.Rewrite 9.0.325.11220 dotnet -Microsoft.AspNetCore.Routing 9.0.325.11220 dotnet -Microsoft.AspNetCore.Routing.Abstractions 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.HttpSys 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.IIS 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.IISIntegration 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.Kestrel 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 9.0.325.11220 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 9.0.325.11220 dotnet -Microsoft.AspNetCore.Session 9.0.325.11220 dotnet -Microsoft.AspNetCore.SignalR 9.0.325.11220 dotnet -Microsoft.AspNetCore.SignalR.Common 9.0.325.11220 dotnet -Microsoft.AspNetCore.SignalR.Core 9.0.325.11220 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 9.0.325.11220 dotnet -Microsoft.AspNetCore.StaticAssets 9.0.325.11220 dotnet -Microsoft.AspNetCore.StaticFiles 9.0.325.11220 dotnet -Microsoft.AspNetCore.WebSockets 9.0.325.11220 dotnet -Microsoft.AspNetCore.WebUtilities 9.0.325.11220 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 9.0.325.11113 dotnet -Microsoft.Data.Sqlite 9.0.325.11202 dotnet -Microsoft.EntityFrameworkCore 9.0.325.11202 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.325.11202 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.325.11202 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.325.11202 dotnet -Microsoft.Extensions.Caching.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.Caching.Memory 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.Binder 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.CommandLine 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.FileExtensions 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.Ini 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.Json 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 9.0.325.11220 dotnet -Microsoft.Extensions.Configuration.UserSecrets 9.0.325.11113 dotnet -Microsoft.Extensions.Configuration.Xml 9.0.325.11113 dotnet -Microsoft.Extensions.DependencyInjection 9.0.325.11113 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.DependencyModel 9.0.325.11113 dotnet -Microsoft.Extensions.Diagnostics 9.0.325.11113 dotnet -Microsoft.Extensions.Diagnostics.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 9.0.325.11220 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 9.0.325.11220 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.325.11220 dotnet -Microsoft.Extensions.Features 9.0.325.11220 dotnet -Microsoft.Extensions.FileProviders.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.FileProviders.Composite 9.0.325.11113 dotnet -Microsoft.Extensions.FileProviders.Embedded 9.0.325.11220 dotnet -Microsoft.Extensions.FileProviders.Physical 9.0.325.11113 dotnet -Microsoft.Extensions.FileSystemGlobbing 9.0.325.11113 dotnet -Microsoft.Extensions.Hosting 9.0.325.11113 dotnet -Microsoft.Extensions.Hosting.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.Http 9.0.325.11113 dotnet -Microsoft.Extensions.Identity.Core 9.0.325.11220 dotnet -Microsoft.Extensions.Identity.Stores 9.0.325.11220 dotnet -Microsoft.Extensions.Localization 9.0.325.11220 dotnet -Microsoft.Extensions.Localization.Abstractions 9.0.325.11220 dotnet -Microsoft.Extensions.Logging 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.Abstractions 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.Configuration 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.Console 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.Debug 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.EventLog 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.EventSource 9.0.325.11113 dotnet -Microsoft.Extensions.Logging.TraceSource 9.0.325.11113 dotnet -Microsoft.Extensions.ObjectPool 9.0.325.11220 dotnet -Microsoft.Extensions.Options 9.0.325.11113 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 9.0.325.11113 dotnet -Microsoft.Extensions.Options.DataAnnotations 9.0.325.11113 dotnet -Microsoft.Extensions.Primitives 9.0.325.11113 dotnet -Microsoft.Extensions.WebEncoders 9.0.325.11220 dotnet -Microsoft.JSInterop 9.0.325.11220 dotnet -Microsoft.Net.Http.Headers 9.0.325.11220 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 9.0.325.11113 dotnet -Microsoft.VisualBasic.Core 14.0.325.11113 dotnet -Microsoft.Win32.Primitives 9.0.325.11113 dotnet -Microsoft.Win32.Registry 9.0.325.11113 dotnet -Microsoft.Win32.SystemEvents 9.0.24.52809 dotnet -NEbml.Core 0.12.0.0 dotnet -PlaylistsNET 1.4.1.0 dotnet -Prometheus.AspNetCore.dll 8.2.1 dotnet -Prometheus.NetStandard.dll 8.2.1 dotnet -SQLitePCLRaw.batteries_v2 2.1.10.2445 dotnet -SQLitePCLRaw.core 2.1.10.2445 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.10.2445 dotnet -Serilog 4.2.0.0 dotnet -Serilog.AspNetCore 9.0.0.0 dotnet -Serilog.Enrichers.Thread 4.0.0.0 dotnet -Serilog.Extensions.Hosting 9.0.0.0 dotnet -Serilog.Extensions.Logging 9.0.0.0 dotnet -Serilog.Formatting.Compact 3.0.0.0 dotnet -Serilog.Settings.Configuration 9.0.0.0 dotnet -Serilog.Sinks.Async 2.1.0.0 dotnet -Serilog.Sinks.Console 6.0.0.0 dotnet -Serilog.Sinks.Debug 3.0.0.0 dotnet -Serilog.Sinks.File 6.0.0.0 dotnet -Serilog.Sinks.Graylog 3.1.1 dotnet -Serilog.Sinks.Graylog.Core 1.0.0.0 dotnet -ShimSkiaSharp 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet -SkiaSharp 2.88.9.0 dotnet -SkiaSharp.HarfBuzz 2.88.9.0 dotnet -Svg.Custom 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet -Svg.Model 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet -Svg.Skia 2.0.0.4+e958b025fb2a856b8b1d17f772329d014b92858a dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3.0 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3.0 dotnet -System 9.0.325.11113 dotnet -System.AppContext 9.0.325.11113 dotnet -System.Buffers 9.0.325.11113 dotnet -System.Collections 9.0.325.11113 dotnet -System.Collections.Concurrent 9.0.325.11113 dotnet -System.Collections.Immutable 9.0.325.11113 dotnet -System.Collections.NonGeneric 9.0.325.11113 dotnet -System.Collections.Specialized 9.0.325.11113 dotnet -System.ComponentModel 9.0.325.11113 dotnet -System.ComponentModel.Annotations 9.0.325.11113 dotnet -System.ComponentModel.DataAnnotations 9.0.325.11113 dotnet -System.ComponentModel.EventBasedAsync 9.0.325.11113 dotnet -System.ComponentModel.Primitives 9.0.325.11113 dotnet -System.ComponentModel.TypeConverter 9.0.325.11113 dotnet -System.Configuration 9.0.325.11113 dotnet -System.Console 9.0.325.11113 dotnet -System.Core 9.0.325.11113 dotnet -System.Data 9.0.325.11113 dotnet -System.Data.Common 9.0.325.11113 dotnet -System.Data.DataSetExtensions 9.0.325.11113 dotnet -System.Diagnostics.Contracts 9.0.325.11113 dotnet -System.Diagnostics.Debug 9.0.325.11113 dotnet -System.Diagnostics.DiagnosticSource 9.0.325.11113 dotnet -System.Diagnostics.EventLog 9.0.325.11113 dotnet -System.Diagnostics.FileVersionInfo 9.0.325.11113 dotnet -System.Diagnostics.Process 9.0.325.11113 dotnet -System.Diagnostics.StackTrace 9.0.325.11113 dotnet -System.Diagnostics.TextWriterTraceListener 9.0.325.11113 dotnet -System.Diagnostics.Tools 9.0.325.11113 dotnet -System.Diagnostics.TraceSource 9.0.325.11113 dotnet -System.Diagnostics.Tracing 9.0.325.11113 dotnet -System.Drawing 9.0.325.11113 dotnet -System.Drawing.Common 9.0.24.52901 dotnet -System.Drawing.Primitives 9.0.325.11113 dotnet -System.Dynamic.Runtime 9.0.325.11113 dotnet -System.Formats.Asn1 9.0.325.11113 dotnet -System.Formats.Tar 9.0.325.11113 dotnet -System.Globalization 9.0.325.11113 dotnet -System.Globalization.Calendars 9.0.325.11113 dotnet -System.Globalization.Extensions 9.0.325.11113 dotnet -System.IO 9.0.325.11113 dotnet -System.IO.Compression 9.0.325.11113 dotnet -System.IO.Compression.Brotli 9.0.325.11113 dotnet -System.IO.Compression.FileSystem 9.0.325.11113 dotnet -System.IO.Compression.ZipFile 9.0.325.11113 dotnet -System.IO.FileSystem 9.0.325.11113 dotnet -System.IO.FileSystem.AccessControl 9.0.325.11113 dotnet -System.IO.FileSystem.DriveInfo 9.0.325.11113 dotnet -System.IO.FileSystem.Primitives 9.0.325.11113 dotnet -System.IO.FileSystem.Watcher 9.0.325.11113 dotnet -System.IO.IsolatedStorage 9.0.325.11113 dotnet -System.IO.MemoryMappedFiles 9.0.325.11113 dotnet -System.IO.Pipelines 9.0.325.11113 dotnet -System.IO.Pipes 9.0.325.11113 dotnet -System.IO.Pipes.AccessControl 9.0.325.11113 dotnet -System.IO.UnmanagedMemoryStream 9.0.325.11113 dotnet -System.Linq 9.0.325.11113 dotnet -System.Linq.Async (net6.0) 6.0.1.35981 dotnet -System.Linq.Expressions 9.0.325.11113 dotnet -System.Linq.Parallel 9.0.325.11113 dotnet -System.Linq.Queryable 9.0.325.11113 dotnet -System.Memory 9.0.325.11113 dotnet -System.Net 9.0.325.11113 dotnet -System.Net.Http 9.0.325.11113 dotnet -System.Net.Http.Json 9.0.325.11113 dotnet -System.Net.HttpListener 9.0.325.11113 dotnet -System.Net.Mail 9.0.325.11113 dotnet -System.Net.NameResolution 9.0.325.11113 dotnet -System.Net.NetworkInformation 9.0.325.11113 dotnet -System.Net.Ping 9.0.325.11113 dotnet -System.Net.Primitives 9.0.325.11113 dotnet -System.Net.Quic 9.0.325.11113 dotnet -System.Net.Requests 9.0.325.11113 dotnet -System.Net.Security 9.0.325.11113 dotnet -System.Net.ServicePoint 9.0.325.11113 dotnet -System.Net.Sockets 9.0.325.11113 dotnet -System.Net.WebClient 9.0.325.11113 dotnet -System.Net.WebHeaderCollection 9.0.325.11113 dotnet -System.Net.WebProxy 9.0.325.11113 dotnet -System.Net.WebSockets 9.0.325.11113 dotnet -System.Net.WebSockets.Client 9.0.325.11113 dotnet -System.Numerics 9.0.325.11113 dotnet -System.Numerics.Vectors 9.0.325.11113 dotnet -System.ObjectModel 9.0.325.11113 dotnet -System.Private.CoreLib 9.0.325.11113 dotnet -System.Private.DataContractSerialization 9.0.325.11113 dotnet -System.Private.Uri 9.0.325.11113 dotnet -System.Private.Windows.Core 9.0.24.52901 dotnet -System.Private.Xml 9.0.325.11113 dotnet -System.Private.Xml.Linq 9.0.325.11113 dotnet -System.Reflection 9.0.325.11113 dotnet -System.Reflection.DispatchProxy 9.0.325.11113 dotnet -System.Reflection.Emit 9.0.325.11113 dotnet -System.Reflection.Emit.ILGeneration 9.0.325.11113 dotnet -System.Reflection.Emit.Lightweight 9.0.325.11113 dotnet -System.Reflection.Extensions 9.0.325.11113 dotnet -System.Reflection.Metadata 9.0.325.11113 dotnet -System.Reflection.Primitives 9.0.325.11113 dotnet -System.Reflection.TypeExtensions 9.0.325.11113 dotnet -System.Resources.Reader 9.0.325.11113 dotnet -System.Resources.ResourceManager 9.0.325.11113 dotnet -System.Resources.Writer 9.0.325.11113 dotnet -System.Runtime 9.0.325.11113 dotnet -System.Runtime.CompilerServices.Unsafe 9.0.325.11113 dotnet -System.Runtime.CompilerServices.VisualC 9.0.325.11113 dotnet -System.Runtime.Extensions 9.0.325.11113 dotnet -System.Runtime.Handles 9.0.325.11113 dotnet -System.Runtime.InteropServices 9.0.325.11113 dotnet -System.Runtime.InteropServices.JavaScript 9.0.325.11113 dotnet -System.Runtime.InteropServices.RuntimeInformation 9.0.325.11113 dotnet -System.Runtime.Intrinsics 9.0.325.11113 dotnet -System.Runtime.Loader 9.0.325.11113 dotnet -System.Runtime.Numerics 9.0.325.11113 dotnet -System.Runtime.Serialization 9.0.325.11113 dotnet -System.Runtime.Serialization.Formatters 9.0.325.11113 dotnet -System.Runtime.Serialization.Json 9.0.325.11113 dotnet -System.Runtime.Serialization.Primitives 9.0.325.11113 dotnet -System.Runtime.Serialization.Xml 9.0.325.11113 dotnet -System.Security 9.0.325.11113 dotnet -System.Security.AccessControl 9.0.325.11113 dotnet -System.Security.Claims 9.0.325.11113 dotnet -System.Security.Cryptography 9.0.325.11113 dotnet -System.Security.Cryptography.Algorithms 9.0.325.11113 dotnet -System.Security.Cryptography.Cng 9.0.325.11113 dotnet -System.Security.Cryptography.Csp 9.0.325.11113 dotnet -System.Security.Cryptography.Encoding 9.0.325.11113 dotnet -System.Security.Cryptography.OpenSsl 9.0.325.11113 dotnet -System.Security.Cryptography.Pkcs 9.0.325.11113 dotnet -System.Security.Cryptography.Primitives 9.0.325.11113 dotnet -System.Security.Cryptography.X509Certificates 9.0.325.11113 dotnet -System.Security.Cryptography.Xml 9.0.325.11113 dotnet -System.Security.Principal 9.0.325.11113 dotnet -System.Security.Principal.Windows 9.0.325.11113 dotnet -System.Security.SecureString 9.0.325.11113 dotnet -System.ServiceModel.Web 9.0.325.11113 dotnet -System.ServiceProcess 9.0.325.11113 dotnet -System.Text.Encoding 9.0.325.11113 dotnet -System.Text.Encoding.CodePages 9.0.325.11113 dotnet -System.Text.Encoding.Extensions 9.0.325.11113 dotnet -System.Text.Encodings.Web 9.0.325.11113 dotnet -System.Text.Json 9.0.325.11113 dotnet -System.Text.RegularExpressions 9.0.325.11113 dotnet -System.Threading 9.0.325.11113 dotnet -System.Threading.Channels 9.0.325.11113 dotnet -System.Threading.Overlapped 9.0.325.11113 dotnet -System.Threading.RateLimiting 9.0.325.11113 dotnet -System.Threading.Tasks 9.0.325.11113 dotnet -System.Threading.Tasks.Dataflow 9.0.325.11113 dotnet -System.Threading.Tasks.Extensions 9.0.325.11113 dotnet -System.Threading.Tasks.Parallel 9.0.325.11113 dotnet -System.Threading.Thread 9.0.325.11113 dotnet -System.Threading.ThreadPool 9.0.325.11113 dotnet -System.Threading.Timer 9.0.325.11113 dotnet -System.Transactions 9.0.325.11113 dotnet -System.Transactions.Local 9.0.325.11113 dotnet -System.ValueTuple 9.0.325.11113 dotnet -System.Web 9.0.325.11113 dotnet -System.Web.HttpUtility 9.0.325.11113 dotnet -System.Windows 9.0.325.11113 dotnet -System.Xml 9.0.325.11113 dotnet -System.Xml.Linq 9.0.325.11113 dotnet -System.Xml.ReaderWriter 9.0.325.11113 dotnet -System.Xml.Serialization 9.0.325.11113 dotnet -System.Xml.XDocument 9.0.325.11113 dotnet -System.Xml.XPath 9.0.325.11113 dotnet -System.Xml.XPath.XDocument 9.0.325.11113 dotnet -System.Xml.XmlDocument 9.0.325.11113 dotnet -System.Xml.XmlSerializer 9.0.325.11113 dotnet -TMDbLib 2.2.0.0 dotnet -TagLib# 2.3.0.0 dotnet -Ude.NetStandard.dll 1.2 dotnet -UtfUnknown 2.5.1+0c87445567d750f685c739f92360ab43c129fe50 dotnet -WindowsBase 9.0.325.11113 dotnet -adduser 3.137ubuntu1 deb -apt 2.7.14build2 deb -apt-utils 2.7.14build2 deb -at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10.2 deb -base-passwd 3.6.3build1 deb -bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.2 deb -ca-certificates 20240203 deb -catatonit 0.1.7-1 deb -coreutils 9.4-3ubuntu6 deb -cron 3.0pl1-184ubuntu2 deb -cron-daemon-common 3.0pl1-184ubuntu2 deb -curl 8.5.0-2ubuntu10.6 deb -dash 0.5.12-6ubuntu5 deb -debconf 1.5.86ubuntu1 deb -debianutils 5.17build1 deb -diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17 deb -dpkg 1.22.6ubuntu6.1 deb -e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb -findutils 4.9.0-5build1 deb -fontconfig-config 2.15.0-1.1ubuntu2 deb -fonts-dejavu-core 2.37-8 deb -fonts-dejavu-mono 2.37-8 deb -gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17 deb -gnupg-l10n 2.4.4-2ubuntu17 deb -gnupg-utils 2.4.4-2ubuntu17 deb -gpg 2.4.4-2ubuntu17 deb -gpg-agent 2.4.4-2ubuntu17 deb -gpg-wks-client 2.4.4-2ubuntu17 deb -gpgconf 2.4.4-2ubuntu17 deb -gpgsm 2.4.4-2ubuntu17 deb -gpgv 2.4.4-2ubuntu17 deb -grep 3.11-4build1 deb -gzip 1.12-1ubuntu3 deb -hostname 3.23+nmu2ubuntu2 deb -init-system-helpers 1.66ubuntu1 deb -jellyfin 2025033105+ubu2404 deb -jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025033105+ubu2404 deb -jellyfin-web 2025033105+ubu2404 deb -jq 1.7.1-3build1 deb -karaoke --dev 2025.228.1.0 dotnet -keyboxd 2.4.4-2ubuntu17 deb -krb5-locales 1.20.1-6ubuntu2.5 deb -libaacs0 0.11.1-2build1 deb -libacl1 2.3.2-1build1.1 deb -libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb -libapt-pkg6.0t64 2.7.14build2 deb -libassuan0 2.5.6-1build1 deb -libattr1 1:2.5.2-1build1.1 deb -libaudit-common 1:3.1.2-2.1build1.1 deb -libaudit1 1:3.1.2-2.1build1.1 deb -libbdplus0 0.2.0-3build1 deb -libblkid1 2.39.3-9ubuntu6.2 deb -libbluray2 1:1.3.4-1build1 deb -libbrotli1 1.1.0-2build2 deb -libbsd0 0.12.1-1build1.1 deb -libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.4 deb -libc6 2.39-0ubuntu8.4 deb -libcairo2 1.18.0-3build1 deb -libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2.2 deb -libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb -libcrypt1 1:4.4.36-4build1 deb -libcurl4t64 8.5.0-2ubuntu10.6 deb -libdb5.3t64 5.3.28+dfsg2-7 deb -libdebconfclient0 0.271ubuntu3 deb -libedit2 3.1-20230828-1build1 deb -libelf1t64 0.190-1.1ubuntu0.1 deb -libexpat1 2.6.1-2ubuntu0.2 deb -libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb -libffi8 3.4.6-1build1 deb -libfontconfig1 2.15.0-1.1ubuntu2 deb -libfreetype6 2.13.2+dfsg-1build3 deb -libgcc-s1 14.2.0-4ubuntu2~24.04 deb -libgcrypt20 1.10.3-2build1 deb -libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb -libgnutls30t64 3.8.3-1.1ubuntu3.3 deb -libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb -libhogweed6t64 3.9.1-2.2build1.1 deb -libicu74 74.2-1ubuntu3.1 deb -libidn2-0 2.3.7-2build1.1 deb -libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.5 deb -libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.5 deb -libkrb5support0 1.20.1-6ubuntu2.5 deb -libksba8 1.6.6-1build1 deb -libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libllvm17t64 1:17.0.6-9ubuntu1 deb -liblz4-1 1.9.4-1build1.1 deb -liblzma5 5.6.1+really5.4.5-1build0.1 deb -libmd0 1.1.0-2build1.1 deb -libmount1 2.39.3-9ubuntu6.2 deb -libmp3lame0 3.100-6build1 deb -libmpg123-0t64 1.32.5-1ubuntu1.1 deb -libncursesw6 6.4+20240113-1ubuntu2 deb -libnettle8t64 3.9.1-2.2build1.1 deb -libnghttp2-14 1.59.0-1ubuntu0.2 deb -libnpth0t64 1.6-3.1build1 deb -libnuma1 2.0.18-1build1 deb -libogg0 1.3.5-3build1 deb -libonig5 6.9.9-1build1 deb -libopenmpt0t64 0.7.3-1.1build3 deb -libopus0 1.4-1build1 deb -libp11-kit0 0.25.3-4ubuntu2.1 deb -libpam-modules 1.5.3-5ubuntu5.1 deb -libpam-modules-bin 1.5.3-5ubuntu5.1 deb -libpam-runtime 1.5.3-5ubuntu5.1 deb -libpam0g 1.5.3-5ubuntu5.1 deb -libpciaccess0 0.17-3build1 deb -libpcre2-8-0 10.42-4ubuntu2.1 deb -libpixman-1-0 0.42.2-1build1 deb -libpng16-16t64 1.6.43-5build1 deb -libproc2-0 2:4.0.4-4ubuntu3.2 deb -libpsl5t64 0.21.2-1.1build1 deb -libreadline8t64 8.2-4build1 deb -librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb -libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb -libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb -libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.9.0 dotnet -libseccomp2 2.5.5-1ubuntu3.1 deb -libselinux1 3.5-2ubuntu2.1 deb -libsemanage-common 3.5-1build5 deb -libsemanage2 3.5-1build5 deb -libsepol2 3.5-2build1 deb -libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.2 deb -libsqlite3-0 3.45.1-1ubuntu2.1 deb -libss2 1.47.0-2.4~exp1ubuntu4.1 deb -libssh-4 0.10.6-2build2 deb -libssl3t64 3.0.13-0ubuntu3.5 deb -libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.6 deb -libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb -libtheora0 1.1.1+dfsg.1-16.1build3 deb -libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.6 deb -libudfread0 1.1.2-1build1 deb -libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.2 deb -libvorbis0a 1.3.7-1build3 deb -libvorbisenc2 1.3.7-1build3 deb -libvorbisfile3 1.3.7-1build3 deb -libvpx9 1.14.0-1ubuntu2.1 deb -libwebp7 1.3.2-0.4build3 deb -libwebpmux3 1.3.2-0.4build3 deb -libx11-6 2:1.8.7-1build1 deb -libx11-data 2:1.8.7-1build1 deb -libx11-xcb1 2:1.8.7-1build1 deb -libx264-164 2:0.164.3108+git31e19f9-1 deb -libx265-199 3.5-2build1 deb -libxau6 1:1.0.9-1build6 deb -libxcb-dri2-0 1.15-1ubuntu2 deb -libxcb-dri3-0 1.15-1ubuntu2 deb -libxcb-present0 1.15-1ubuntu2 deb -libxcb-randr0 1.15-1ubuntu2 deb -libxcb-render0 1.15-1ubuntu2 deb -libxcb-shm0 1.15-1ubuntu2 deb -libxcb-sync1 1.15-1ubuntu2 deb -libxcb-xfixes0 1.15-1ubuntu2 deb -libxcb1 1.15-1ubuntu2 deb -libxdmcp6 1:1.1.3-0ubuntu6 deb -libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb -libxrender1 1:0.9.10-1.1build1 deb -libxshmfence1 1.3-1build5 deb -libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb -libxxhash0 0.8.2-2build1 deb -libzstd1 1.5.5+dfsg2-2build1.1 deb -libzvbi-common 0.2.42-2 deb -libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.4 deb -login 1:4.13+dfsg1-4ubuntu3.2 deb -logsave 1.47.0-2.4~exp1ubuntu4.1 deb -mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb -mount 2.39.3-9ubuntu6.2 deb -mscorlib 9.0.325.11113 dotnet -ncurses-base 6.4+20240113-1ubuntu2 deb -ncurses-bin 6.4+20240113-1ubuntu2 deb -netcat-openbsd 1.226-1ubuntu2 deb -netstandard 9.0.325.11113 dotnet -ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.5 deb -passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2build2.1 deb -pinentry-curses 1.2.1-3ubuntu5 deb -procps 2:4.0.4-4ubuntu3.2 deb -prometheus-net.DotNetRuntime 4.4.1.0 dotnet -publicsuffix 20231001.0357-0.1 deb -readline-common 8.2-4build1 deb -sed 4.9-2build1 deb -sensible-utils 0.0.22 deb -sudo 1.9.15p5-3ubuntu5 deb -systemd-standalone-sysusers 255.4-1ubuntu8.6 deb -sysvinit-utils 3.08-6ubuntu3 deb -tar 1.35+dfsg-3build1 deb -tzdata 2024b-0ubuntu0.24.04.1 deb -ubuntu-keyring 2023.11.28.1 deb -unminimize 0.2.1 deb -util-linux 2.39.3-9ubuntu6.2 deb -xmlstarlet 1.6.1-4 deb -zlib.net 1.0.8.0 dotnet -zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb +NAME VERSION TYPE +AsyncKeyedLock 7.1.4 dotnet +BDInfo 0.8.0 dotnet +BitFaster.Caching 2.5.3 dotnet +BlurHashSharp 1.3.4 dotnet +BlurHashSharp.SkiaSharp 1.3.4 dotnet +CommandLineParser 2.9.1 dotnet +Diacritics 3.3.29 dotnet +DiscUtils.Core 0.16.13 dotnet +DiscUtils.Iso9660 0.16.13 dotnet +DiscUtils.Streams 0.16.13 dotnet +DiscUtils.Udf 0.16.13 dotnet +DotNet.Glob 3.1.3 dotnet +Emby.Naming 10.11.0.0 dotnet +Emby.Photos 24.4.0 dotnet +Emby.Server.Implementations 24.4.0 dotnet +ExCSS 4.2.3 dotnet +HarfBuzzSharp 7.3.0.3 dotnet +ICU4N 60.1.0-alpha.356 dotnet +ICU4N.Transliterator 60.1.0-alpha.356 dotnet +J2N 2.0.0 dotnet +Jellyfin.Api 24.4.0 dotnet +Jellyfin.Common 24.4.0 dotnet +Jellyfin.Controller 24.4.0 dotnet +Jellyfin.Data 24.4.0 dotnet +Jellyfin.Database.Implementations 24.4.0 dotnet +Jellyfin.Database.Providers.Sqlite 24.4.0 dotnet +Jellyfin.Drawing 24.4.0 dotnet +Jellyfin.Drawing.Skia 24.4.0 dotnet +Jellyfin.Extensions 24.4.0 dotnet +Jellyfin.LiveTv 24.4.0 dotnet +Jellyfin.MediaEncoding.Hls 24.4.0 dotnet +Jellyfin.MediaEncoding.Keyframes 24.4.0 dotnet +Jellyfin.Model 24.4.0 dotnet +Jellyfin.Naming 24.4.0 dotnet +Jellyfin.Networking 24.4.0 dotnet +Jellyfin.Server.Implementations 24.4.0 dotnet +Jellyfin.XmlTv 10.8.0 dotnet +LrcParser 2025.228.1 dotnet +MediaBrowser.Common 10.11.0.0 dotnet +MediaBrowser.Controller 10.11.0.0 dotnet +MediaBrowser.LocalMetadata 24.4.0 dotnet +MediaBrowser.MediaEncoding 24.4.0 dotnet +MediaBrowser.Model 10.11.0.0 dotnet +MediaBrowser.Providers 24.4.0 dotnet +MediaBrowser.XbmcMetadata 24.4.0 dotnet +MetaBrainz.Common 3.0.0 dotnet +MetaBrainz.Common.Json 6.0.2 dotnet +MetaBrainz.MusicBrainz 6.1.0 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet +Microsoft.Data.Sqlite.Core 9.0.3 dotnet +Microsoft.EntityFrameworkCore 9.0.3 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.3 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.3 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.3 dotnet +Microsoft.Extensions.DependencyModel 9.0.3 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.3 dotnet +Microsoft.OpenApi 1.2.3 dotnet +Microsoft.Win32.SystemEvents 9.0.0 dotnet +NEbml 0.12.0 dotnet +Newtonsoft.Json 13.0.3 dotnet +PlaylistsNET 1.4.1 dotnet +SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet +SQLitePCLRaw.core 2.1.10 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.10 dotnet +Serilog 4.2.0 dotnet +Serilog.AspNetCore 9.0.0 dotnet +Serilog.Enrichers.Thread 4.0.0 dotnet +Serilog.Extensions.Hosting 9.0.0 dotnet +Serilog.Extensions.Logging 9.0.0 dotnet +Serilog.Formatting.Compact 3.0.0 dotnet +Serilog.Settings.Configuration 9.0.0 dotnet +Serilog.Sinks.Async 2.1.0 dotnet +Serilog.Sinks.Console 6.0.0 dotnet +Serilog.Sinks.Debug 3.0.0 dotnet +Serilog.Sinks.File 6.0.0 dotnet +Serilog.Sinks.Graylog 3.1.1 dotnet +ShimSkiaSharp 2.0.0.4 dotnet +SkiaSharp 2.88.9 dotnet +SkiaSharp.HarfBuzz 2.88.9 dotnet +Svg.Custom 2.0.0.4 dotnet +Svg.Model 2.0.0.4 dotnet +Svg.Skia 2.0.0.4 dotnet +Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet +System.Drawing.Common 9.0.0 dotnet +System.Linq.Async 6.0.1 dotnet +TMDbLib 2.2.0 dotnet +TagLibSharp 2.3.0 dotnet +UTF.Unknown 2.5.1 dotnet +Ude.NetStandard 1.2.0 dotnet +adduser 3.137ubuntu1 deb +apt 2.7.14build2 deb +apt-utils 2.7.14build2 deb +at 3.2.5-2.1ubuntu3 deb +base-files 13ubuntu10.2 deb +base-passwd 3.6.3build1 deb +bash 5.2.21-2ubuntu4 deb +bsdutils 1:2.39.3-9ubuntu6.2 deb +ca-certificates 20240203 deb +catatonit 0.1.7-1 deb +coreutils 9.4-3ubuntu6 deb +cron 3.0pl1-184ubuntu2 deb +cron-daemon-common 3.0pl1-184ubuntu2 deb +curl 8.5.0-2ubuntu10.6 deb +dash 0.5.12-6ubuntu5 deb +debconf 1.5.86ubuntu1 deb +debianutils 5.17build1 deb +diffutils 1:3.10-1build1 deb +dirmngr 2.4.4-2ubuntu17 deb +dpkg 1.22.6ubuntu6.1 deb +e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb +findutils 4.9.0-5build1 deb +fontconfig-config 2.15.0-1.1ubuntu2 deb +fonts-dejavu-core 2.37-8 deb +fonts-dejavu-mono 2.37-8 deb +gcc-14-base 14.2.0-4ubuntu2~24.04 deb +gnupg 2.4.4-2ubuntu17 deb +gnupg-l10n 2.4.4-2ubuntu17 deb +gnupg-utils 2.4.4-2ubuntu17 deb +gpg 2.4.4-2ubuntu17 deb +gpg-agent 2.4.4-2ubuntu17 deb +gpg-wks-client 2.4.4-2ubuntu17 deb +gpgconf 2.4.4-2ubuntu17 deb +gpgsm 2.4.4-2ubuntu17 deb +gpgv 2.4.4-2ubuntu17 deb +grep 3.11-4build1 deb +gzip 1.12-1ubuntu3 deb +hostname 3.23+nmu2ubuntu2 deb +init-system-helpers 1.66ubuntu1 deb +jellyfin 2025040705+ubu2404 deb +jellyfin 24.04 dotnet +jellyfin-ffmpeg7 7.0.2-9-noble deb +jellyfin-server 2025040705+ubu2404 deb +jellyfin-web 2025040705+ubu2404 deb +jq 1.7.1-3build1 deb +keyboxd 2.4.4-2ubuntu17 deb +krb5-locales 1.20.1-6ubuntu2.5 deb +libaacs0 0.11.1-2build1 deb +libacl1 2.3.2-1build1.1 deb +libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb +libapt-pkg6.0t64 2.7.14build2 deb +libassuan0 2.5.6-1build1 deb +libattr1 1:2.5.2-1build1.1 deb +libaudit-common 1:3.1.2-2.1build1.1 deb +libaudit1 1:3.1.2-2.1build1.1 deb +libbdplus0 0.2.0-3build1 deb +libblkid1 2.39.3-9ubuntu6.2 deb +libbluray2 1:1.3.4-1build1 deb +libbrotli1 1.1.0-2build2 deb +libbsd0 0.12.1-1build1.1 deb +libbz2-1.0 1.0.8-5.1build0.1 deb +libc-bin 2.39-0ubuntu8.4 deb +libc6 2.39-0ubuntu8.4 deb +libcairo2 1.18.0-3build1 deb +libcap-ng0 0.8.4-2build2 deb +libcap2 1:2.66-5ubuntu2.2 deb +libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb +libcrypt1 1:4.4.36-4build1 deb +libcurl4t64 8.5.0-2ubuntu10.6 deb +libdb5.3t64 5.3.28+dfsg2-7 deb +libdebconfclient0 0.271ubuntu3 deb +libedit2 3.1-20230828-1build1 deb +libelf1t64 0.190-1.1ubuntu0.1 deb +libexpat1 2.6.1-2ubuntu0.2 deb +libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb +libffi8 3.4.6-1build1 deb +libfontconfig1 2.15.0-1.1ubuntu2 deb +libfreetype6 2.13.2+dfsg-1build3 deb +libgcc-s1 14.2.0-4ubuntu2~24.04 deb +libgcrypt20 1.10.3-2build1 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb +libgnutls30t64 3.8.3-1.1ubuntu3.3 deb +libgpg-error0 1.47-3build2.1 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb +libhogweed6t64 3.9.1-2.2build1.1 deb +libicu74 74.2-1ubuntu3.1 deb +libidn2-0 2.3.7-2build1.1 deb +libjq1 1.7.1-3build1 deb +libk5crypto3 1.20.1-6ubuntu2.5 deb +libkeyutils1 1.6.3-3build1 deb +libkrb5-3 1.20.1-6ubuntu2.5 deb +libkrb5support0 1.20.1-6ubuntu2.5 deb +libksba8 1.6.6-1build1 deb +libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libllvm17t64 1:17.0.6-9ubuntu1 deb +liblz4-1 1.9.4-1build1.1 deb +liblzma5 5.6.1+really5.4.5-1build0.1 deb +libmd0 1.1.0-2build1.1 deb +libmount1 2.39.3-9ubuntu6.2 deb +libmp3lame0 3.100-6build1 deb +libmpg123-0t64 1.32.5-1ubuntu1.1 deb +libncursesw6 6.4+20240113-1ubuntu2 deb +libnettle8t64 3.9.1-2.2build1.1 deb +libnghttp2-14 1.59.0-1ubuntu0.2 deb +libnpth0t64 1.6-3.1build1 deb +libnuma1 2.0.18-1build1 deb +libogg0 1.3.5-3build1 deb +libonig5 6.9.9-1build1 deb +libopenmpt0t64 0.7.3-1.1build3 deb +libopus0 1.4-1build1 deb +libp11-kit0 0.25.3-4ubuntu2.1 deb +libpam-modules 1.5.3-5ubuntu5.1 deb +libpam-modules-bin 1.5.3-5ubuntu5.1 deb +libpam-runtime 1.5.3-5ubuntu5.1 deb +libpam0g 1.5.3-5ubuntu5.1 deb +libpciaccess0 0.17-3build1 deb +libpcre2-8-0 10.42-4ubuntu2.1 deb +libpixman-1-0 0.42.2-1build1 deb +libpng16-16t64 1.6.43-5build1 deb +libproc2-0 2:4.0.4-4ubuntu3.2 deb +libpsl5t64 0.21.2-1.1build1 deb +libreadline8t64 8.2-4build1 deb +librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb +libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb +libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb +libse 4.0.10 dotnet +libseccomp2 2.5.5-1ubuntu3.1 deb +libselinux1 3.5-2ubuntu2.1 deb +libsemanage-common 3.5-1build5 deb +libsemanage2 3.5-1build5 deb +libsepol2 3.5-2build1 deb +libsharpyuv0 1.3.2-0.4build3 deb +libsmartcols1 2.39.3-9ubuntu6.2 deb +libsqlite3-0 3.45.1-1ubuntu2.1 deb +libss2 1.47.0-2.4~exp1ubuntu4.1 deb +libssh-4 0.10.6-2build2 deb +libssl3t64 3.0.13-0ubuntu3.5 deb +libstdc++6 14.2.0-4ubuntu2~24.04 deb +libsystemd0 255.4-1ubuntu8.6 deb +libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb +libtheora0 1.1.1+dfsg.1-16.1build3 deb +libtinfo6 6.4+20240113-1ubuntu2 deb +libudev1 255.4-1ubuntu8.6 deb +libudfread0 1.1.2-1build1 deb +libunistring5 1.1-2build1.1 deb +libuuid1 2.39.3-9ubuntu6.2 deb +libvorbis0a 1.3.7-1build3 deb +libvorbisenc2 1.3.7-1build3 deb +libvorbisfile3 1.3.7-1build3 deb +libvpx9 1.14.0-1ubuntu2.1 deb +libwebp7 1.3.2-0.4build3 deb +libwebpmux3 1.3.2-0.4build3 deb +libx11-6 2:1.8.7-1build1 deb +libx11-data 2:1.8.7-1build1 deb +libx11-xcb1 2:1.8.7-1build1 deb +libx264-164 2:0.164.3108+git31e19f9-1 deb +libx265-199 3.5-2build1 deb +libxau6 1:1.0.9-1build6 deb +libxcb-dri2-0 1.15-1ubuntu2 deb +libxcb-dri3-0 1.15-1ubuntu2 deb +libxcb-present0 1.15-1ubuntu2 deb +libxcb-randr0 1.15-1ubuntu2 deb +libxcb-render0 1.15-1ubuntu2 deb +libxcb-shm0 1.15-1ubuntu2 deb +libxcb-sync1 1.15-1ubuntu2 deb +libxcb-xfixes0 1.15-1ubuntu2 deb +libxcb1 1.15-1ubuntu2 deb +libxdmcp6 1:1.1.3-0ubuntu6 deb +libxext6 2:1.3.4-1build2 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb +libxrender1 1:0.9.10-1.1build1 deb +libxshmfence1 1.3-1build5 deb +libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb +libxxhash0 0.8.2-2build1 deb +libzstd1 1.5.5+dfsg2-2build1.1 deb +libzvbi-common 0.2.42-2 deb +libzvbi0t64 0.2.42-2 deb +locales 2.39-0ubuntu8.4 deb +login 1:4.13+dfsg1-4ubuntu3.2 deb +logsave 1.47.0-2.4~exp1ubuntu4.1 deb +mawk 1.3.4.20240123-1build1 deb +mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb +mount 2.39.3-9ubuntu6.2 deb +ncurses-base 6.4+20240113-1ubuntu2 deb +ncurses-bin 6.4+20240113-1ubuntu2 deb +netcat-openbsd 1.226-1ubuntu2 deb +ocl-icd-libopencl1 2.3.2-1build1 deb +openssl 3.0.13-0ubuntu3.5 deb +passwd 1:4.13+dfsg1-4ubuntu3.2 deb +perl-base 5.38.2-3.2build2.1 deb +pinentry-curses 1.2.1-3ubuntu5 deb +procps 2:4.0.4-4ubuntu3.2 deb +prometheus-net 8.2.1 dotnet +prometheus-net.AspNetCore 8.2.1 dotnet +prometheus-net.DotNetRuntime 4.4.1 dotnet +publicsuffix 20231001.0357-0.1 deb +readline-common 8.2-4build1 deb +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.3 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.3 dotnet +sed 4.9-2build1 deb +sensible-utils 0.0.22 deb +sudo 1.9.15p5-3ubuntu5 deb +systemd-standalone-sysusers 255.4-1ubuntu8.6 deb +sysvinit-utils 3.08-6ubuntu3 deb +tar 1.35+dfsg-3build1 deb +tzdata 2025a-0ubuntu0.24.04 deb +ubuntu-keyring 2023.11.28.1 deb +unminimize 0.2.1 deb +util-linux 2.39.3-9ubuntu6.2 deb +xmlstarlet 1.6.1-4 deb +z440.atl.core 6.20.0 dotnet +zlib.net-mutliplatform 1.0.8 dotnet +zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From db99b5406e9257a9d660e3e8d9fe8c8b9da5f892 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Apr 2025 04:17:44 +0000 Subject: [PATCH 2147/2257] 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 1962cc8..bc55267 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -130,11 +130,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025040705+ubu2404 deb +jellyfin 2025040803+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025040705+ubu2404 deb -jellyfin-web 2025040705+ubu2404 deb +jellyfin-server 2025040803+ubu2404 deb +jellyfin-web 2025040803+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17 deb krb5-locales 1.20.1-6ubuntu2.5 deb From 6786a80c003dc6c997a8afef994167b95c6e1eff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Apr 2025 12:58:43 +0000 Subject: [PATCH 2148/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bc55267..9d76d23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -164,7 +164,7 @@ libdb5.3t64 5.3.28+dfsg2- libdebconfclient0 0.271ubuntu3 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb -libexpat1 2.6.1-2ubuntu0.2 deb +libexpat1 2.6.1-2ubuntu0.3 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb From 464b549dfdfb1317925d501fc6abdfb225287b7b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Apr 2025 12:59:18 +0000 Subject: [PATCH 2149/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 10150bd..4a8a857 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -159,7 +159,7 @@ libdb5.3t64 5.3.28+dfsg2- libdebconfclient0 0.271ubuntu3 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb -libexpat1 2.6.1-2ubuntu0.2 deb +libexpat1 2.6.1-2ubuntu0.3 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.6-1build1 deb libfontconfig1 2.15.0-1.1ubuntu2 deb From bbefe8e4ebf8f1b3b46018b8430dbeae2881595f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Apr 2025 06:21:49 +0000 Subject: [PATCH 2150/2257] Bot Updating Package Versions --- package_versions.txt | 62 ++++++++++++++++++++++---------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9d76d23..405044d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -AsyncKeyedLock 7.1.4 dotnet +AsyncKeyedLock 7.1.6 dotnet BDInfo 0.8.0 dotnet BitFaster.Caching 2.5.3 dotnet BlurHashSharp 1.3.4 dotnet @@ -14,7 +14,7 @@ DotNet.Glob 3.1.3 Emby.Naming 10.11.0.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet -ExCSS 4.2.3 dotnet +ExCSS 4.3.0 dotnet HarfBuzzSharp 7.3.0.3 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet @@ -48,13 +48,13 @@ MetaBrainz.Common 3.0.0 MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite.Core 9.0.3 dotnet -Microsoft.EntityFrameworkCore 9.0.3 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.3 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.3 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.3 dotnet -Microsoft.Extensions.DependencyModel 9.0.3 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.3 dotnet +Microsoft.Data.Sqlite.Core 9.0.4 dotnet +Microsoft.EntityFrameworkCore 9.0.4 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.4 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.4 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.4 dotnet +Microsoft.Extensions.DependencyModel 9.0.4 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.4 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.0 dotnet NEbml 0.12.0 dotnet @@ -75,12 +75,12 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 6.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 2.0.0.4 dotnet +ShimSkiaSharp 2.0.0.8 dotnet SkiaSharp 2.88.9 dotnet SkiaSharp.HarfBuzz 2.88.9 dotnet -Svg.Custom 2.0.0.4 dotnet -Svg.Model 2.0.0.4 dotnet -Svg.Skia 2.0.0.4 dotnet +Svg.Custom 2.0.0.8 dotnet +Svg.Model 2.0.0.8 dotnet +Svg.Skia 2.0.0.8 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet @@ -109,7 +109,7 @@ dash 0.5.12-6ubunt debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17 deb +dirmngr 2.4.4-2ubuntu17.2 deb dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb @@ -117,26 +117,26 @@ fontconfig-config 2.15.0-1.1ubu fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17 deb -gnupg-l10n 2.4.4-2ubuntu17 deb -gnupg-utils 2.4.4-2ubuntu17 deb -gpg 2.4.4-2ubuntu17 deb -gpg-agent 2.4.4-2ubuntu17 deb -gpg-wks-client 2.4.4-2ubuntu17 deb -gpgconf 2.4.4-2ubuntu17 deb -gpgsm 2.4.4-2ubuntu17 deb -gpgv 2.4.4-2ubuntu17 deb +gnupg 2.4.4-2ubuntu17.2 deb +gnupg-l10n 2.4.4-2ubuntu17.2 deb +gnupg-utils 2.4.4-2ubuntu17.2 deb +gpg 2.4.4-2ubuntu17.2 deb +gpg-agent 2.4.4-2ubuntu17.2 deb +gpg-wks-client 2.4.4-2ubuntu17.2 deb +gpgconf 2.4.4-2ubuntu17.2 deb +gpgsm 2.4.4-2ubuntu17.2 deb +gpgv 2.4.4-2ubuntu17.2 deb grep 3.11-4build1 deb gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025040803+ubu2404 deb +jellyfin 2025041405+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025040803+ubu2404 deb -jellyfin-web 2025040803+ubu2404 deb +jellyfin-server 2025041405+ubu2404 deb +jellyfin-web 2025041405+ubu2404 deb jq 1.7.1-3build1 deb -keyboxd 2.4.4-2ubuntu17 deb +keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb @@ -188,7 +188,7 @@ libldap-common 2.6.7+dfsg-1~ libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb -liblzma5 5.6.1+really5.4.5-1build0.1 deb +liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb libmount1 2.39.3-9ubuntu6.2 deb libmp3lame0 3.100-6build1 deb @@ -290,15 +290,15 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.3 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.3 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.4 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.4 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5 deb systemd-standalone-sysusers 255.4-1ubuntu8.6 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2025a-0ubuntu0.24.04 deb +tzdata 2025b-0ubuntu0.24.04 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From c2ae6e2e469e11411534b9c1d520db79cef6d0fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Apr 2025 13:01:37 +0000 Subject: [PATCH 2151/2257] 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 4a8a857..ea53e87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -107,7 +107,7 @@ dash 0.5.12-6ubunt debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17 deb +dirmngr 2.4.4-2ubuntu17.2 deb dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb @@ -115,15 +115,15 @@ fontconfig-config 2.15.0-1.1ubu fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17 deb -gnupg-l10n 2.4.4-2ubuntu17 deb -gnupg-utils 2.4.4-2ubuntu17 deb -gpg 2.4.4-2ubuntu17 deb -gpg-agent 2.4.4-2ubuntu17 deb -gpg-wks-client 2.4.4-2ubuntu17 deb -gpgconf 2.4.4-2ubuntu17 deb -gpgsm 2.4.4-2ubuntu17 deb -gpgv 2.4.4-2ubuntu17 deb +gnupg 2.4.4-2ubuntu17.2 deb +gnupg-l10n 2.4.4-2ubuntu17.2 deb +gnupg-utils 2.4.4-2ubuntu17.2 deb +gpg 2.4.4-2ubuntu17.2 deb +gpg-agent 2.4.4-2ubuntu17.2 deb +gpg-wks-client 2.4.4-2ubuntu17.2 deb +gpgconf 2.4.4-2ubuntu17.2 deb +gpgsm 2.4.4-2ubuntu17.2 deb +gpgv 2.4.4-2ubuntu17.2 deb grep 3.11-4build1 deb gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb @@ -134,7 +134,7 @@ jellyfin-ffmpeg7 7.0.2-9-noble jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb -keyboxd 2.4.4-2ubuntu17 deb +keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.7.14build2 deb @@ -183,7 +183,7 @@ libldap-common 2.6.7+dfsg-1~ libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb -liblzma5 5.6.1+really5.4.5-1build0.1 deb +liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb libmount1 2.39.3-9ubuntu6.2 deb libmp3lame0 3.100-6build1 deb @@ -292,7 +292,7 @@ sensible-utils 0.0.22 systemd-standalone-sysusers 255.4-1ubuntu8.6 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2025a-0ubuntu0.24.04 deb +tzdata 2025b-0ubuntu0.24.04 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From 67b7b215b9533c74df6ce7dd342f4789fb71eebf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Apr 2025 19:13:07 +0000 Subject: [PATCH 2152/2257] 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 405044d..20afe67 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -130,11 +130,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025041405+ubu2404 deb +jellyfin 2025041517+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025041405+ubu2404 deb -jellyfin-web 2025041405+ubu2404 deb +jellyfin-server 2025041517+ubu2404 deb +jellyfin-web 2025041517+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb From b91970f33f370483e32583f2aa3a79c0dab96530 Mon Sep 17 00:00:00 2001 From: Esmail EL BoB <github.defilable@simplelogin.co> Date: Fri, 18 Apr 2025 23:04:14 +0000 Subject: [PATCH 2153/2257] Update readme-vars.yml --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index 7445a95..7ce431c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -67,6 +67,7 @@ app_setup_block: | https://mods.linuxserver.io/?mod=jellyfin + And follow this guide even if you are using iGPU: https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#configure-and-verify-lp-mode-on-linux #### OpenMAX (Raspberry Pi) From 022c39305aa9bd1881b559f0ff3b6e7f4507f1c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Apr 2025 00:35:15 +0000 Subject: [PATCH 2154/2257] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f5688f8..58d2bd1 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ To enable the OpenCL based DV, HDR10 and HLG tone-mapping, please refer to the O https://mods.linuxserver.io/?mod=jellyfin +And follow this guide even if you are using iGPU: https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#configure-and-verify-lp-mode-on-linux #### OpenMAX (Raspberry Pi) From 6396eae137d823308daf90acc975f56bc36bf59e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Apr 2025 00:39:26 +0000 Subject: [PATCH 2155/2257] Bot Updating Package Versions --- package_versions.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ea53e87..a2d171b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -130,7 +130,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.0.2-9-noble deb +jellyfin-ffmpeg7 7.1.1-1-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb @@ -157,7 +157,6 @@ libcrypt1 1:4.4.36-4bui libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb -libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.3 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb @@ -181,7 +180,6 @@ libkrb5support0 1.20.1-6ubunt libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb @@ -246,7 +244,6 @@ libx11-xcb1 2:1.8.7-1buil libx264-164 2:0.164.3108+git31e19f9-1 deb libx265-199 3.5-2build1 deb libxau6 1:1.0.9-1build6 deb -libxcb-dri2-0 1.15-1ubuntu2 deb libxcb-dri3-0 1.15-1ubuntu2 deb libxcb-present0 1.15-1ubuntu2 deb libxcb-randr0 1.15-1ubuntu2 deb @@ -277,7 +274,7 @@ netcat-openbsd 1.226-1ubuntu ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2build2.1 deb +perl-base 5.38.2-3.2ubuntu0.1 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb prometheus-net 8.2.1 dotnet From 81787751f5965f215f1f041e4ac4c8b92dd77ef9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Apr 2025 05:16:06 +0000 Subject: [PATCH 2156/2257] Bot Updating Package Versions --- package_versions.txt | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 20afe67..0ba88b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -56,7 +56,7 @@ Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.4 Microsoft.Extensions.DependencyModel 9.0.4 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.4 dotnet Microsoft.OpenApi 1.2.3 dotnet -Microsoft.Win32.SystemEvents 9.0.0 dotnet +Microsoft.Win32.SystemEvents 9.0.2 dotnet NEbml 0.12.0 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet @@ -85,7 +85,7 @@ Swashbuckle.AspNetCore.ReDoc 6.5.0 Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet -System.Drawing.Common 9.0.0 dotnet +System.Drawing.Common 9.0.2 dotnet System.Linq.Async 6.0.1 dotnet TMDbLib 2.2.0 dotnet TagLibSharp 2.3.0 dotnet @@ -130,11 +130,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025041517+ubu2404 deb +jellyfin 2025042105+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.0.2-9-noble deb -jellyfin-server 2025041517+ubu2404 deb -jellyfin-web 2025041517+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-1-noble deb +jellyfin-server 2025042105+ubu2404 deb +jellyfin-web 2025042105+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb @@ -162,7 +162,6 @@ libcrypt1 1:4.4.36-4bui libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb -libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.3 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb @@ -186,7 +185,6 @@ libkrb5support0 1.20.1-6ubunt libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libllvm17t64 1:17.0.6-9ubuntu1 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb @@ -218,7 +216,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.10 dotnet +libse 4.0.12 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2.1 deb libsemanage-common 3.5-1build5 deb @@ -251,7 +249,6 @@ libx11-xcb1 2:1.8.7-1buil libx264-164 2:0.164.3108+git31e19f9-1 deb libx265-199 3.5-2build1 deb libxau6 1:1.0.9-1build6 deb -libxcb-dri2-0 1.15-1ubuntu2 deb libxcb-dri3-0 1.15-1ubuntu2 deb libxcb-present0 1.15-1ubuntu2 deb libxcb-randr0 1.15-1ubuntu2 deb @@ -282,7 +279,7 @@ netcat-openbsd 1.226-1ubuntu ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2build2.1 deb +perl-base 5.38.2-3.2ubuntu0.1 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb prometheus-net 8.2.1 dotnet From 44b6d52bf03430bb289fd72fbcd87ea371c81aa0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 25 Apr 2025 02:40:38 +0000 Subject: [PATCH 2157/2257] Bot Updating Package Versions --- package_versions.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package_versions.txt b/package_versions.txt index 0ba88b0..760ed14 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -16,6 +16,7 @@ Emby.Photos 24.4.0 Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.0 dotnet HarfBuzzSharp 7.3.0.3 dotnet +HarfBuzzSharp.NativeAssets.Linux 7.3.0.3 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet J2N 2.0.0 dotnet @@ -48,10 +49,12 @@ MetaBrainz.Common 3.0.0 MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet +Microsoft.Data.Sqlite 9.0.4 dotnet Microsoft.Data.Sqlite.Core 9.0.4 dotnet Microsoft.EntityFrameworkCore 9.0.4 dotnet Microsoft.EntityFrameworkCore.Abstractions 9.0.4 dotnet Microsoft.EntityFrameworkCore.Relational 9.0.4 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.4 dotnet Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.4 dotnet Microsoft.Extensions.DependencyModel 9.0.4 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.4 dotnet @@ -62,6 +65,7 @@ Newtonsoft.Json 13.0.3 PlaylistsNET 1.4.1 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet +SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.10 dotnet Serilog 4.2.0 dotnet Serilog.AspNetCore 9.0.0 dotnet @@ -78,9 +82,11 @@ Serilog.Sinks.Graylog 3.1.1 ShimSkiaSharp 2.0.0.8 dotnet SkiaSharp 2.88.9 dotnet SkiaSharp.HarfBuzz 2.88.9 dotnet +SkiaSharp.NativeAssets.Linux 2.88.9 dotnet Svg.Custom 2.0.0.8 dotnet Svg.Model 2.0.0.8 dotnet Svg.Skia 2.0.0.8 dotnet +Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet From 22b305966e1e6abbb3d15ece5172749f9c802ab9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Apr 2025 10:50:10 +0000 Subject: [PATCH 2158/2257] 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 760ed14..ae3eb97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -19,6 +19,7 @@ HarfBuzzSharp 7.3.0.3 HarfBuzzSharp.NativeAssets.Linux 7.3.0.3 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet +Ignore 0.2.1 dotnet J2N 2.0.0 dotnet Jellyfin.Api 24.4.0 dotnet Jellyfin.Common 24.4.0 dotnet @@ -136,11 +137,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025042105+ubu2404 deb +jellyfin 2025042805+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-1-noble deb -jellyfin-server 2025042105+ubu2404 deb -jellyfin-web 2025042105+ubu2404 deb +jellyfin-server 2025042805+ubu2404 deb +jellyfin-web 2025042805+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb @@ -306,6 +307,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 6.20.0 dotnet +z440.atl.core 6.22.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 55673713fd70a480d32c9f71d6c8b92050a21b51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Apr 2025 13:04:00 +0000 Subject: [PATCH 2159/2257] 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 ae3eb97..791208c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,7 +147,7 @@ keyboxd 2.4.4-2ubuntu krb5-locales 1.20.1-6ubuntu2.5 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb -libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.3 deb +libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.4 deb libapt-pkg6.0t64 2.7.14build2 deb libassuan0 2.5.6-1build1 deb libattr1 1:2.5.2-1build1.1 deb @@ -266,7 +266,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.3 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From 910ac59ce96eac3e12d26e36e5f5f64cc6f334f2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Apr 2025 13:05:00 +0000 Subject: [PATCH 2160/2257] Bot Updating Package Versions --- package_versions.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a2d171b..65b1b69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,6 +15,7 @@ Emby.Photos 24.4.0 Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.2.3 dotnet HarfBuzzSharp 7.3.0.3 dotnet +HarfBuzzSharp.NativeAssets.Linux 7.3.0.3 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet J2N 2.0.0 dotnet @@ -45,10 +46,12 @@ MetaBrainz.Common 3.0.0 MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet +Microsoft.Data.Sqlite 8.0.11 dotnet Microsoft.Data.Sqlite.Core 8.0.11 dotnet Microsoft.EntityFrameworkCore 8.0.11 dotnet Microsoft.EntityFrameworkCore.Abstractions 8.0.11 dotnet Microsoft.EntityFrameworkCore.Relational 8.0.11 dotnet +Microsoft.EntityFrameworkCore.Sqlite 8.0.11 dotnet Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.11 dotnet Microsoft.Extensions.DependencyModel 8.0.2 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.11 dotnet @@ -60,6 +63,7 @@ Newtonsoft.Json 13.0.3 PlaylistsNET 1.4.1 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.6 dotnet SQLitePCLRaw.core 2.1.6 dotnet +SQLitePCLRaw.lib.e_sqlite3 2.1.6 dotnet SQLitePCLRaw.provider.e_sqlite3 2.1.6 dotnet Serilog 4.1.0 dotnet Serilog.AspNetCore 8.0.3 dotnet @@ -76,9 +80,11 @@ Serilog.Sinks.Graylog 3.1.1 ShimSkiaSharp 2.0.0.1 dotnet SkiaSharp 2.88.9 dotnet SkiaSharp.HarfBuzz 2.88.9 dotnet +SkiaSharp.NativeAssets.Linux 2.88.9 dotnet Svg.Custom 2.0.0.1 dotnet Svg.Model 2.0.0.1 dotnet Svg.Skia 2.0.0.1 dotnet +Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet @@ -254,7 +260,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.2 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.3 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From d67377450664537c9761360e3595e8a3a24c3edb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 May 2025 05:16:33 +0000 Subject: [PATCH 2161/2257] 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 791208c..f313ed4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -78,7 +78,7 @@ Serilog.Settings.Configuration 9.0.0 Serilog.Sinks.Async 2.1.0 dotnet Serilog.Sinks.Console 6.0.0 dotnet Serilog.Sinks.Debug 3.0.0 dotnet -Serilog.Sinks.File 6.0.0 dotnet +Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet ShimSkiaSharp 2.0.0.8 dotnet SkiaSharp 2.88.9 dotnet @@ -137,11 +137,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025042805+ubu2404 deb +jellyfin 2025050505+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-1-noble deb -jellyfin-server 2025042805+ubu2404 deb -jellyfin-web 2025042805+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-2-noble deb +jellyfin-server 2025050505+ubu2404 deb +jellyfin-web 2025050505+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb @@ -307,6 +307,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 6.22.0 dotnet +z440.atl.core 6.23.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 29fa36d5b5cf70cc8d81dd1a8d9d1a1e240e714d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 May 2025 13:03:33 +0000 Subject: [PATCH 2162/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 65b1b69..606238f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-1-noble deb +jellyfin-ffmpeg7 7.1.1-2-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb From b6697f6623ae9a6843c114bbeb5e91ca7f908e2d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 May 2025 06:21:33 +0000 Subject: [PATCH 2163/2257] 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 f313ed4..e7dcecb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,11 +137,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025050505+ubu2404 deb +jellyfin 2025051205+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-2-noble deb -jellyfin-server 2025050505+ubu2404 deb -jellyfin-web 2025050505+ubu2404 deb +jellyfin-server 2025051205+ubu2404 deb +jellyfin-web 2025051205+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb From 9ff92cdcf8727505fb296da4def7f681767fa362 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 18 May 2025 19:12:27 -0400 Subject: [PATCH 2164/2257] rely on baseimage script for fixing device perms --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + .../dependencies.d/init-jellyfin-config | 0 .../dependencies.d/init-jellyfin-video | 0 .../s6-rc.d/init-jellyfin-video/run | 42 ------------------- .../s6-rc.d/init-jellyfin-video/type | 1 - .../s6-overlay/s6-rc.d/init-jellyfin-video/up | 1 - .../user/contents.d/init-jellyfin-video | 0 8 files changed, 2 insertions(+), 44 deletions(-) rename root/etc/s6-overlay/s6-rc.d/{init-jellyfin-video => init-config-end}/dependencies.d/init-jellyfin-config (100%) delete mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video delete mode 100755 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run delete mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type delete mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up delete mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video diff --git a/Dockerfile b/Dockerfile index 4c7f525..242a39d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" # https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 ENV MALLOC_TRIM_THRESHOLD_=131072 +ENV ATTACHED_DEVICES_PERMS="/dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c" RUN \ echo "**** install jellyfin *****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1a9f078..c7a0211 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -14,6 +14,7 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" # https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 ENV MALLOC_TRIM_THRESHOLD_=131072 +ENV ATTACHED_DEVICES_PERMS="/dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c" RUN \ echo "**** install jellyfin *****" && \ diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-config similarity index 100% rename from root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config rename to root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-config diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video deleted file mode 100644 index e69de29..0000000 diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run deleted file mode 100755 index fe7f828..0000000 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/with-contenv bash -# shellcheck shell=bash - -FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) - -for i in ${FILES}; do - VIDEO_GID=$(stat -c '%g' "${i}") - VIDEO_UID=$(stat -c '%u' "${i}") - # check if user matches device - if id -u abc | grep -qw "${VIDEO_UID}"; then - echo "**** permissions for ${i} are good ****" - else - # check if group matches and that device has group rw - if id -G abc | grep -qw "${VIDEO_GID}" && [[ $(stat -c '%A' "${i}" | cut -b 5,6) == "rw" ]]; then - echo "**** permissions for ${i} are good ****" - # check if device needs to be added to video group - elif ! id -G abc | grep -qw "${VIDEO_GID}"; then - # check if video group needs to be created - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [[ -z "${VIDEO_NAME}" ]]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-z0-9' | head -c4)" - groupadd "${VIDEO_NAME}" - groupmod -g "${VIDEO_GID}" "${VIDEO_NAME}" - echo "**** creating video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" - fi - echo "**** adding ${i} to video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" - usermod -a -G "${VIDEO_NAME}" abc - fi - # check if device has group rw - if [[ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]]; then - echo -e "**** The device ${i} does not have group read/write permissions, attempting to fix inside the container. ****" - chmod g+rw "${i}" - fi - fi -done - -# openmax lib loading -if [ -e "/opt/vc/lib" ] && [ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]; then - echo "[jellyfin-init] Pi Libs detected loading" - echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" - ldconfig -fi diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type deleted file mode 100644 index bdd22a1..0000000 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type +++ /dev/null @@ -1 +0,0 @@ -oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up deleted file mode 100644 index 9c16049..0000000 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up +++ /dev/null @@ -1 +0,0 @@ -/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video deleted file mode 100644 index e69de29..0000000 From b48059e785a252bd2f40ff06a37dd26e71eb495f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 May 2025 05:14:05 +0000 Subject: [PATCH 2165/2257] Bot Updating Templated Files --- readme-vars.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme-vars.yml b/readme-vars.yml index 1f8ec8b..f3eb219 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -109,6 +109,7 @@ init_diagram: | init-jellyfin-video -> init-config-end init-config -> init-crontab-config init-mods-end -> init-custom-files + init-adduser -> init-device-perms base -> init-envfile init-config -> init-jellyfin-config init-jellyfin-config -> init-jellyfin-video @@ -117,6 +118,7 @@ init_diagram: | init-mods-package-install -> init-mods-end init-mods -> init-mods-package-install init-adduser -> init-os-end + init-device-perms -> init-os-end init-envfile -> init-os-end init-custom-files -> init-services init-services -> svc-cron From 98ed530869374df70c6a8f945037cc8d3baa1710 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 May 2025 05:18:07 +0000 Subject: [PATCH 2166/2257] Bot Updating Package Versions --- package_versions.txt | 54 ++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e7dcecb..843eb5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,8 +2,8 @@ NAME VERSION AsyncKeyedLock 7.1.6 dotnet BDInfo 0.8.0 dotnet BitFaster.Caching 2.5.3 dotnet -BlurHashSharp 1.3.4 dotnet -BlurHashSharp.SkiaSharp 1.3.4 dotnet +BlurHashSharp 1.4.0-pre.1 dotnet +BlurHashSharp.SkiaSharp 1.4.0-pre.1 dotnet CommandLineParser 2.9.1 dotnet Diacritics 3.3.29 dotnet DiscUtils.Core 0.16.13 dotnet @@ -15,8 +15,8 @@ Emby.Naming 10.11.0.0 Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.0 dotnet -HarfBuzzSharp 7.3.0.3 dotnet -HarfBuzzSharp.NativeAssets.Linux 7.3.0.3 dotnet +HarfBuzzSharp 8.3.1.1 dotnet +HarfBuzzSharp.NativeAssets.Linux 8.3.1.1 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet Ignore 0.2.1 dotnet @@ -50,15 +50,15 @@ MetaBrainz.Common 3.0.0 MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite 9.0.4 dotnet -Microsoft.Data.Sqlite.Core 9.0.4 dotnet -Microsoft.EntityFrameworkCore 9.0.4 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.4 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.4 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.4 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.4 dotnet -Microsoft.Extensions.DependencyModel 9.0.4 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.4 dotnet +Microsoft.Data.Sqlite 9.0.5 dotnet +Microsoft.Data.Sqlite.Core 9.0.5 dotnet +Microsoft.EntityFrameworkCore 9.0.5 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.5 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.5 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.5 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.5 dotnet +Microsoft.Extensions.DependencyModel 9.0.5 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.5 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet NEbml 0.12.0 dotnet @@ -80,13 +80,13 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 2.0.0.8 dotnet -SkiaSharp 2.88.9 dotnet -SkiaSharp.HarfBuzz 2.88.9 dotnet -SkiaSharp.NativeAssets.Linux 2.88.9 dotnet -Svg.Custom 2.0.0.8 dotnet -Svg.Model 2.0.0.8 dotnet -Svg.Skia 2.0.0.8 dotnet +ShimSkiaSharp 3.0.2 dotnet +SkiaSharp 3.119.0 dotnet +SkiaSharp.HarfBuzz 3.119.0 dotnet +SkiaSharp.NativeAssets.Linux 3.119.0 dotnet +Svg.Custom 3.0.2 dotnet +Svg.Model 3.0.2 dotnet +Svg.Skia 3.0.2 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet @@ -137,11 +137,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025051205+ubu2404 deb +jellyfin 2025051905+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-2-noble deb -jellyfin-server 2025051205+ubu2404 deb -jellyfin-web 2025051205+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-3-noble deb +jellyfin-server 2025051905+ubu2404 deb +jellyfin-web 2025051905+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb @@ -294,8 +294,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.4 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.4 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.5 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.5 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5 deb @@ -307,6 +307,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 6.23.0 dotnet +z440.atl.core 6.24.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 47a88e9089625408ba0dcd85861fe080871ec59b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 May 2025 07:44:45 +0000 Subject: [PATCH 2167/2257] Bot Updating Templated Files --- readme-vars.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index f3eb219..8f8c5b9 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -106,13 +106,12 @@ init_diagram: | init-os-end -> init-config init-config -> init-config-end init-crontab-config -> init-config-end - init-jellyfin-video -> init-config-end + init-jellyfin-config -> init-config-end init-config -> init-crontab-config init-mods-end -> init-custom-files init-adduser -> init-device-perms base -> init-envfile init-config -> init-jellyfin-config - init-jellyfin-config -> init-jellyfin-video base -> init-migrations init-config-end -> init-mods init-mods-package-install -> init-mods-end From 10702c93c375f910a8458d48297101bb324d12aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 May 2025 13:02:44 +0000 Subject: [PATCH 2168/2257] Bot Updating Templated Files --- readme-vars.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme-vars.yml b/readme-vars.yml index 7ce431c..657a465 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -111,6 +111,7 @@ init_diagram: | init-jellyfin-video -> init-config-end init-config -> init-crontab-config init-mods-end -> init-custom-files + init-adduser -> init-device-perms base -> init-envfile init-config -> init-jellyfin-config init-jellyfin-config -> init-jellyfin-video @@ -119,6 +120,7 @@ init_diagram: | init-mods-package-install -> init-mods-end init-mods -> init-mods-package-install init-adduser -> init-os-end + init-device-perms -> init-os-end init-envfile -> init-os-end init-custom-files -> init-services init-services -> svc-cron From 549a522c87d6457ed3402189a87ad577c15ea094 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 May 2025 13:07:36 +0000 Subject: [PATCH 2169/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 606238f..a3db0cd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-2-noble deb +jellyfin-ffmpeg7 7.1.1-3-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb From 35be757ca514a0126ff26f88716ebd86e2eeba95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 26 May 2025 05:17:03 +0000 Subject: [PATCH 2170/2257] 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 843eb5b..c8bd5d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,13 +80,13 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 3.0.2 dotnet +ShimSkiaSharp 3.0.3 dotnet SkiaSharp 3.119.0 dotnet SkiaSharp.HarfBuzz 3.119.0 dotnet SkiaSharp.NativeAssets.Linux 3.119.0 dotnet -Svg.Custom 3.0.2 dotnet -Svg.Model 3.0.2 dotnet -Svg.Skia 3.0.2 dotnet +Svg.Custom 3.0.3 dotnet +Svg.Model 3.0.3 dotnet +Svg.Skia 3.0.3 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet @@ -137,11 +137,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025051905+ubu2404 deb +jellyfin 2025052605+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-3-noble deb -jellyfin-server 2025051905+ubu2404 deb -jellyfin-web 2025051905+ubu2404 deb +jellyfin-server 2025052605+ubu2404 deb +jellyfin-web 2025052605+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb From cc61515799ebff6eea2e8739174d61e9746d6f73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Jun 2025 06:21:40 +0000 Subject: [PATCH 2171/2257] 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 c8bd5d2..06d7c11 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,11 +137,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025052605+ubu2404 deb +jellyfin 2025060205+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-3-noble deb -jellyfin-server 2025052605+ubu2404 deb -jellyfin-web 2025052605+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-4-noble deb +jellyfin-server 2025060205+ubu2404 deb +jellyfin-web 2025060205+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.5 deb @@ -231,7 +231,7 @@ libsemanage2 3.5-1build5 libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.2 deb -libsqlite3-0 3.45.1-1ubuntu2.1 deb +libsqlite3-0 3.45.1-1ubuntu2.3 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.5 deb From ecd8b9024f8878b8055708fdbaaa481e0e77cb1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 3 Jun 2025 13:03:51 +0000 Subject: [PATCH 2172/2257] 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 a3db0cd..f87f2ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-3-noble deb +jellyfin-ffmpeg7 7.1.1-4-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb @@ -225,7 +225,7 @@ libsemanage2 3.5-1build5 libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.2 deb -libsqlite3-0 3.45.1-1ubuntu2.1 deb +libsqlite3-0 3.45.1-1ubuntu2.3 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.5 deb From 5e019d97fe436fa6709e7bf53d80061b6213d145 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Jun 2025 06:22:18 +0000 Subject: [PATCH 2173/2257] Bot Updating Package Versions --- package_versions.txt | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 06d7c11..68f98a8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -61,9 +61,12 @@ Microsoft.Extensions.DependencyModel 9.0.5 Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.5 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet +Morestachio 5.0.1.631 dotnet NEbml 0.12.0 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet +Polly 8.5.2 dotnet +Polly.Core 8.5.2 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -99,8 +102,8 @@ TagLibSharp 2.3.0 UTF.Unknown 2.5.1 dotnet Ude.NetStandard 1.2.0 dotnet adduser 3.137ubuntu1 deb -apt 2.7.14build2 deb -apt-utils 2.7.14build2 deb +apt 2.8.3 deb +apt-utils 2.8.3 deb at 3.2.5-2.1ubuntu3 deb base-files 13ubuntu10.2 deb base-passwd 3.6.3build1 deb @@ -137,18 +140,18 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025060205+ubu2404 deb +jellyfin 2025060905+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-4-noble deb -jellyfin-server 2025060205+ubu2404 deb -jellyfin-web 2025060205+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-5-noble deb +jellyfin-server 2025060905+ubu2404 deb +jellyfin-web 2025060905+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb -krb5-locales 1.20.1-6ubuntu2.5 deb +krb5-locales 1.20.1-6ubuntu2.6 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.4 deb -libapt-pkg6.0t64 2.7.14build2 deb +libapt-pkg6.0t64 2.8.3 deb libassuan0 2.5.6-1build1 deb libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb @@ -180,15 +183,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.3 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.5 deb +libk5crypto3 1.20.1-6ubuntu2.6 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.5 deb -libkrb5support0 1.20.1-6ubuntu2.5 deb +libkrb5-3 1.20.1-6ubuntu2.6 deb +libkrb5support0 1.20.1-6ubuntu2.6 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb @@ -247,7 +250,7 @@ libuuid1 2.39.3-9ubunt libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb -libvpx9 1.14.0-1ubuntu2.1 deb +libvpx9 1.14.0-1ubuntu2.2 deb libwebp7 1.3.2-0.4build3 deb libwebpmux3 1.3.2-0.4build3 deb libx11-6 2:1.8.7-1build1 deb @@ -302,7 +305,7 @@ sudo 1.9.15p5-3ubu systemd-standalone-sysusers 255.4-1ubuntu8.6 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2025b-0ubuntu0.24.04 deb +tzdata 2025b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From 10a47052fad3cb8e21a11305cfc05abdb040eef3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jun 2025 13:02:44 +0000 Subject: [PATCH 2174/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7afd086..b27dd04 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -780,7 +780,7 @@ pipeline { docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -v ${TEMPDIR}:/tmp \ - ghcr.io/anchore/syft:latest \ + ghcr.io/anchore/syft:v1.26.1 \ ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" From d6c0ae693411866c7ba780c36c70ca22250a49e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jun 2025 13:02:55 +0000 Subject: [PATCH 2175/2257] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 08dcf25..2c3f6b4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -780,7 +780,7 @@ pipeline { docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -v ${TEMPDIR}:/tmp \ - ghcr.io/anchore/syft:latest \ + ghcr.io/anchore/syft:v1.26.1 \ ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" From a8e884cb9b80aefadbba824275daee6a3b02ddbb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Jun 2025 13:07:32 +0000 Subject: [PATCH 2176/2257] 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 f87f2ce..951bfdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -96,8 +96,8 @@ TagLibSharp 2.3.0 UTF.Unknown 2.5.1 dotnet Ude.NetStandard 1.2.0 dotnet adduser 3.137ubuntu1 deb -apt 2.7.14build2 deb -apt-utils 2.7.14build2 deb +apt 2.8.3 deb +apt-utils 2.8.3 deb at 3.2.5-2.1ubuntu3 deb base-files 13ubuntu10.2 deb base-passwd 3.6.3build1 deb @@ -136,14 +136,14 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-4-noble deb +jellyfin-ffmpeg7 7.1.1-5-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb -krb5-locales 1.20.1-6ubuntu2.5 deb +krb5-locales 1.20.1-6ubuntu2.6 deb libacl1 2.3.2-1build1.1 deb -libapt-pkg6.0t64 2.7.14build2 deb +libapt-pkg6.0t64 2.8.3 deb libassuan0 2.5.6-1build1 deb libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb @@ -174,15 +174,15 @@ libgcrypt20 1.10.3-2build libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libgnutls30t64 3.8.3-1.1ubuntu3.3 deb libgpg-error0 1.47-3build2.1 deb -libgssapi-krb5-2 1.20.1-6ubuntu2.5 deb +libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjq1 1.7.1-3build1 deb -libk5crypto3 1.20.1-6ubuntu2.5 deb +libk5crypto3 1.20.1-6ubuntu2.6 deb libkeyutils1 1.6.3-3build1 deb -libkrb5-3 1.20.1-6ubuntu2.5 deb -libkrb5support0 1.20.1-6ubuntu2.5 deb +libkrb5-3 1.20.1-6ubuntu2.6 deb +libkrb5support0 1.20.1-6ubuntu2.6 deb libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb @@ -241,7 +241,7 @@ libuuid1 2.39.3-9ubunt libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb -libvpx9 1.14.0-1ubuntu2.1 deb +libvpx9 1.14.0-1ubuntu2.2 deb libwebp7 1.3.2-0.4build3 deb libwebpmux3 1.3.2-0.4build3 deb libx11-6 2:1.8.7-1build1 deb @@ -295,7 +295,7 @@ sensible-utils 0.0.22 systemd-standalone-sysusers 255.4-1ubuntu8.6 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb -tzdata 2025b-0ubuntu0.24.04 deb +tzdata 2025b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb From c9521745421c96511edc2b43680e25890b971ceb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Jun 2025 06:22:49 +0000 Subject: [PATCH 2177/2257] Bot Updating Package Versions --- package_versions.txt | 51 ++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 68f98a8..48fae27 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -15,7 +15,7 @@ Emby.Naming 10.11.0.0 Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.0 dotnet -HarfBuzzSharp 8.3.1.1 dotnet +HarfBuzzSharp 8.3.0.1 dotnet HarfBuzzSharp.NativeAssets.Linux 8.3.1.1 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet @@ -50,23 +50,23 @@ MetaBrainz.Common 3.0.0 MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite 9.0.5 dotnet -Microsoft.Data.Sqlite.Core 9.0.5 dotnet -Microsoft.EntityFrameworkCore 9.0.5 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.5 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.5 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.5 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.5 dotnet -Microsoft.Extensions.DependencyModel 9.0.5 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.5 dotnet +Microsoft.Data.Sqlite 9.0.6 dotnet +Microsoft.Data.Sqlite.Core 9.0.6 dotnet +Microsoft.EntityFrameworkCore 9.0.6 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.6 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.6 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.6 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.6 dotnet +Microsoft.Extensions.DependencyModel 9.0.6 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.6 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet NEbml 0.12.0 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.5.2 dotnet -Polly.Core 8.5.2 dotnet +Polly 8.6.0 dotnet +Polly.Core 8.6.0 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -84,9 +84,9 @@ Serilog.Sinks.Debug 3.0.0 Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet ShimSkiaSharp 3.0.3 dotnet -SkiaSharp 3.119.0 dotnet -SkiaSharp.HarfBuzz 3.119.0 dotnet -SkiaSharp.NativeAssets.Linux 3.119.0 dotnet +SkiaSharp 3.116.1 dotnet +SkiaSharp.HarfBuzz 3.116.1 dotnet +SkiaSharp.NativeAssets.Linux 3.116.1 dotnet Svg.Custom 3.0.3 dotnet Svg.Model 3.0.3 dotnet Svg.Skia 3.0.3 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025060905+ubu2404 deb +jellyfin 2025061605+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-5-noble deb -jellyfin-server 2025060905+ubu2404 deb -jellyfin-web 2025060905+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-6-noble deb +jellyfin-server 2025061605+ubu2404 deb +jellyfin-web 2025061605+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -187,6 +187,7 @@ libgssapi-krb5-2 1.20.1-6ubunt libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb +libjemalloc2 5.3.0-2build1 deb libjq1 1.7.1-3build1 deb libk5crypto3 1.20.1-6ubuntu2.6 deb libkeyutils1 1.6.3-3build1 deb @@ -239,11 +240,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.6 deb +libsystemd0 255.4-1ubuntu8.8 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.6 deb +libudev1 255.4-1ubuntu8.8 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.2 deb @@ -297,12 +298,12 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.5 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.5 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.6 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.6 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5 deb -systemd-standalone-sysusers 255.4-1ubuntu8.6 deb +systemd-standalone-sysusers 255.4-1ubuntu8.8 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb @@ -310,6 +311,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.2 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 6.24.0 dotnet +z440.atl.core 6.26.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 280add02dc7ce50c7717f085022af206a46bee03 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Jun 2025 13:04:52 +0000 Subject: [PATCH 2178/2257] 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 951bfdf..076d05f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-5-noble deb +jellyfin-ffmpeg7 7.1.1-6-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb @@ -230,11 +230,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2build2 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.6 deb +libsystemd0 255.4-1ubuntu8.8 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.6 deb +libudev1 255.4-1ubuntu8.8 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.2 deb @@ -292,7 +292,7 @@ runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 8.0.14 runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 8.0.14 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.6 deb +systemd-standalone-sysusers 255.4-1ubuntu8.8 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb From d2ca48ce8eee5f3c43fc16514f6b534db3d14113 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Jun 2025 05:18:46 +0000 Subject: [PATCH 2179/2257] Bot Updating Package Versions --- package_versions.txt | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 48fae27..25a2faf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -49,7 +49,6 @@ MediaBrowser.XbmcMetadata 24.4.0 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet Microsoft.Data.Sqlite 9.0.6 dotnet Microsoft.Data.Sqlite.Core 9.0.6 dotnet Microsoft.EntityFrameworkCore 9.0.6 dotnet @@ -65,8 +64,8 @@ Morestachio 5.0.1.631 NEbml 0.12.0 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.6.0 dotnet -Polly.Core 8.6.0 dotnet +Polly 8.6.1 dotnet +Polly.Core 8.6.1 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -96,7 +95,7 @@ Swashbuckle.AspNetCore.Swagger 6.2.3 Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet System.Drawing.Common 9.0.2 dotnet -System.Linq.Async 6.0.1 dotnet +System.Linq.Async 6.0.3 dotnet TMDbLib 2.2.0 dotnet TagLibSharp 2.3.0 dotnet UTF.Unknown 2.5.1 dotnet @@ -140,11 +139,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025061605+ubu2404 deb +jellyfin 2025062305+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-6-noble deb -jellyfin-server 2025061605+ubu2404 deb -jellyfin-web 2025061605+ubu2404 deb +jellyfin-server 2025062305+ubu2404 deb +jellyfin-web 2025062305+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.6 deb From 79cb22654711eb877cc9163d14812cb2d1ceb80f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Jun 2025 05:19:06 +0000 Subject: [PATCH 2180/2257] 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 25a2faf..d02d391 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ NAME VERSION TYPE AsyncKeyedLock 7.1.6 dotnet BDInfo 0.8.0 dotnet -BitFaster.Caching 2.5.3 dotnet +BitFaster.Caching 2.5.4 dotnet BlurHashSharp 1.4.0-pre.1 dotnet BlurHashSharp.SkiaSharp 1.4.0-pre.1 dotnet CommandLineParser 2.9.1 dotnet @@ -38,7 +38,7 @@ Jellyfin.Naming 24.4.0 Jellyfin.Networking 24.4.0 dotnet Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet -LrcParser 2025.228.1 dotnet +LrcParser 2025.623.0 dotnet MediaBrowser.Common 10.11.0.0 dotnet MediaBrowser.Controller 10.11.0.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet @@ -139,11 +139,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025062305+ubu2404 deb +jellyfin 2025063005+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-6-noble deb -jellyfin-server 2025062305+ubu2404 deb -jellyfin-web 2025062305+ubu2404 deb +jellyfin-server 2025063005+ubu2404 deb +jellyfin-web 2025063005+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -211,11 +211,11 @@ libonig5 6.9.9-1build1 libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb -libpam-modules 1.5.3-5ubuntu5.1 deb -libpam-modules-bin 1.5.3-5ubuntu5.1 deb -libpam-runtime 1.5.3-5ubuntu5.1 deb -libpam0g 1.5.3-5ubuntu5.1 deb -libpciaccess0 0.17-3build1 deb +libpam-modules 1.5.3-5ubuntu5.4 deb +libpam-modules-bin 1.5.3-5ubuntu5.4 deb +libpam-runtime 1.5.3-5ubuntu5.4 deb +libpam0g 1.5.3-5ubuntu5.4 deb +libpciaccess0 0.17-3ubuntu0.24.04.1 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb From 3778df0c49963eb6ec24b85f5a66aa2da9f7133a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Jul 2025 13:04:59 +0000 Subject: [PATCH 2181/2257] 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 d02d391..1a55ce9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -215,7 +215,7 @@ libpam-modules 1.5.3-5ubuntu libpam-modules-bin 1.5.3-5ubuntu5.4 deb libpam-runtime 1.5.3-5ubuntu5.4 deb libpam0g 1.5.3-5ubuntu5.4 deb -libpciaccess0 0.17-3ubuntu0.24.04.1 deb +libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb @@ -301,7 +301,7 @@ runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.6 runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.6 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -sudo 1.9.15p5-3ubuntu5 deb +sudo 1.9.15p5-3ubuntu5.24.04.1 deb systemd-standalone-sysusers 255.4-1ubuntu8.8 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb From e1ede11a212d9626ae934a288a402676bc1c3a60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Jul 2025 13:05:00 +0000 Subject: [PATCH 2182/2257] 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 076d05f..0c39a24 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -202,11 +202,11 @@ libonig5 6.9.9-1build1 libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb -libpam-modules 1.5.3-5ubuntu5.1 deb -libpam-modules-bin 1.5.3-5ubuntu5.1 deb -libpam-runtime 1.5.3-5ubuntu5.1 deb -libpam0g 1.5.3-5ubuntu5.1 deb -libpciaccess0 0.17-3build1 deb +libpam-modules 1.5.3-5ubuntu5.4 deb +libpam-modules-bin 1.5.3-5ubuntu5.4 deb +libpam-runtime 1.5.3-5ubuntu5.4 deb +libpam0g 1.5.3-5ubuntu5.4 deb +libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb libpng16-16t64 1.6.43-5build1 deb From fa9ace5fd7764fe928dc9ca494cb567138e2a804 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Jul 2025 05:17:37 +0000 Subject: [PATCH 2183/2257] Bot Updating Templated Files --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2c3f6b4..e66c499 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -94,7 +94,11 @@ pipeline { env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./root/donate.txt' + if ( env.SYFT_IMAGE_TAG == null ) { + env.SYFT_IMAGE_TAG = 'latest' + } } + echo "Using syft image tag ${SYFT_IMAGE_TAG}" sh '''#! /bin/bash echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' script{ @@ -780,7 +784,7 @@ pipeline { docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -v ${TEMPDIR}:/tmp \ - ghcr.io/anchore/syft:v1.26.1 \ + ghcr.io/anchore/syft:${SYFT_IMAGE_TAG} \ ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" @@ -890,6 +894,7 @@ pipeline { -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ + -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } From d5e5245f2035a53bb831bec87584327dab35cafb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Jul 2025 05:19:39 +0000 Subject: [PATCH 2184/2257] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 3 +++ .github/workflows/call_issues_cron.yml | 3 +++ .github/workflows/external_trigger.yml | 15 +++++++++------ .github/workflows/external_trigger_scheduler.yml | 3 +++ .github/workflows/greetings.yml | 6 ++++++ .github/workflows/package_trigger_scheduler.yml | 3 +++ README.md | 3 --- 7 files changed, 27 insertions(+), 9 deletions(-) diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml index 2c30784..d07cf12 100755 --- a/.github/workflows/call_issue_pr_tracker.yml +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -8,6 +8,9 @@ on: pull_request_review: types: [submitted,edited,dismissed] +permissions: + contents: read + jobs: manage-project: permissions: diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml index d827033..431f612 100755 --- a/.github/workflows/call_issues_cron.yml +++ b/.github/workflows/call_issues_cron.yml @@ -4,6 +4,9 @@ on: - cron: '46 10 * * *' workflow_dispatch: +permissions: + contents: read + jobs: stale: permissions: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 2840e04..14b09fb 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -3,6 +3,9 @@ name: External Trigger Main on: workflow_dispatch: +permissions: + contents: read + jobs: external-trigger-nightly: runs-on: ubuntu-latest @@ -43,8 +46,8 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') - echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY + EXT_RELEASE_SANITIZED=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') + echo "Sanitized external version: \`${EXT_RELEASE_SANITIZED}\`" >> $GITHUB_STEP_SUMMARY echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY image="linuxserver/jellyfin" tag="nightly" @@ -100,8 +103,8 @@ jobs: exit 1 fi echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY - if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then - echo "Version \`${EXT_RELEASE}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY + if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then + echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY @@ -119,7 +122,7 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY - echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY + echo "New sanitized version \`${EXT_RELEASE_SANITIZED}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi @@ -139,7 +142,7 @@ jobs: --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ --data-urlencode "Submit=Submit" echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for jellyfin tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + TRIGGER_REASON="A version change was detected for jellyfin tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE_SANITIZED}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 881ec67..bd20842 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -5,6 +5,9 @@ on: - cron: '56 * * * *' workflow_dispatch: +permissions: + contents: read + jobs: external-trigger-scheduler: runs-on: ubuntu-latest diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 2b1aa10..83585da 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -2,8 +2,14 @@ name: Greetings on: [pull_request_target, issues] +permissions: + contents: read + jobs: greeting: + permissions: + issues: write + pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/first-interaction@v1 diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index a950c05..2661b70 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -5,6 +5,9 @@ on: - cron: '15 12 * * 2' workflow_dispatch: +permissions: + contents: read + jobs: package-trigger-scheduler: runs-on: ubuntu-latest diff --git a/README.md b/README.md index ea663fc..f90450a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") [![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://linuxserver.io/discord "realtime support / chat with the community and the team.") [![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") -[![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") [![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") [![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") @@ -22,7 +21,6 @@ Find us at: * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! * [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team. * [Discourse](https://discourse.linuxserver.io) - post on our community forum. -* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget @@ -55,7 +53,6 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> | -| armhf | ❌ | | ## Version Tags From 40345cee75433321371c47525dd6f9f3eda07b05 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Jul 2025 05:23:53 +0000 Subject: [PATCH 2185/2257] 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 1a55ce9..e1e4ee9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ BitFaster.Caching 2.5.4 BlurHashSharp 1.4.0-pre.1 dotnet BlurHashSharp.SkiaSharp 1.4.0-pre.1 dotnet CommandLineParser 2.9.1 dotnet -Diacritics 3.3.29 dotnet +Diacritics 4.0.14 dotnet DiscUtils.Core 0.16.13 dotnet DiscUtils.Iso9660 0.16.13 dotnet DiscUtils.Streams 0.16.13 dotnet @@ -139,11 +139,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025063005+ubu2404 deb +jellyfin 2025070705+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-6-noble deb -jellyfin-server 2025063005+ubu2404 deb -jellyfin-web 2025063005+ubu2404 deb +jellyfin-ffmpeg7 7.1.1-7-noble deb +jellyfin-server 2025070705+ubu2404 deb +jellyfin-web 2025070705+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.2 deb krb5-locales 1.20.1-6ubuntu2.6 deb From 0bdf9b4f3fdfd00963c2c37123b58de9f3882412 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Jul 2025 13:03:22 +0000 Subject: [PATCH 2186/2257] Bot Updating Templated Files --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b27dd04..f050785 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -94,7 +94,11 @@ pipeline { env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./root/donate.txt' + if ( env.SYFT_IMAGE_TAG == null ) { + env.SYFT_IMAGE_TAG = 'latest' + } } + echo "Using syft image tag ${SYFT_IMAGE_TAG}" sh '''#! /bin/bash echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' script{ @@ -780,7 +784,7 @@ pipeline { docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -v ${TEMPDIR}:/tmp \ - ghcr.io/anchore/syft:v1.26.1 \ + ghcr.io/anchore/syft:${SYFT_IMAGE_TAG} \ ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" @@ -890,6 +894,7 @@ pipeline { -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ + -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } From a6e220d212f7c59e2f4902af6c3e23c262132e99 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Jul 2025 13:05:57 +0000 Subject: [PATCH 2187/2257] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 3 +++ .github/workflows/call_issues_cron.yml | 3 +++ .github/workflows/external_trigger.yml | 15 +++++++++------ .github/workflows/external_trigger_scheduler.yml | 3 +++ .github/workflows/greetings.yml | 6 ++++++ .github/workflows/package_trigger_scheduler.yml | 3 +++ README.md | 3 --- 7 files changed, 27 insertions(+), 9 deletions(-) diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml index 2c30784..d07cf12 100755 --- a/.github/workflows/call_issue_pr_tracker.yml +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -8,6 +8,9 @@ on: pull_request_review: types: [submitted,edited,dismissed] +permissions: + contents: read + jobs: manage-project: permissions: diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml index d827033..431f612 100755 --- a/.github/workflows/call_issues_cron.yml +++ b/.github/workflows/call_issues_cron.yml @@ -4,6 +4,9 @@ on: - cron: '46 10 * * *' workflow_dispatch: +permissions: + contents: read + jobs: stale: permissions: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 346db0f..b28804a 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -3,6 +3,9 @@ name: External Trigger Main on: workflow_dispatch: +permissions: + contents: read + jobs: external-trigger-master: runs-on: ubuntu-latest @@ -43,8 +46,8 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') - echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY + EXT_RELEASE_SANITIZED=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') + echo "Sanitized external version: \`${EXT_RELEASE_SANITIZED}\`" >> $GITHUB_STEP_SUMMARY echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY image="linuxserver/jellyfin" tag="latest" @@ -100,8 +103,8 @@ jobs: exit 1 fi echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY - if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then - echo "Version \`${EXT_RELEASE}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY + if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then + echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY @@ -116,7 +119,7 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY - echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY + echo "New sanitized version \`${EXT_RELEASE_SANITIZED}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi @@ -136,7 +139,7 @@ jobs: --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ --data-urlencode "Submit=Submit" echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for jellyfin tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + TRIGGER_REASON="A version change was detected for jellyfin tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE_SANITIZED}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 881ec67..bd20842 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -5,6 +5,9 @@ on: - cron: '56 * * * *' workflow_dispatch: +permissions: + contents: read + jobs: external-trigger-scheduler: runs-on: ubuntu-latest diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 27cb588..7f3ca8b 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -2,8 +2,14 @@ name: Greetings on: [pull_request_target, issues] +permissions: + contents: read + jobs: greeting: + permissions: + issues: write + pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/first-interaction@v1 diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index a950c05..2661b70 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -5,6 +5,9 @@ on: - cron: '15 12 * * 2' workflow_dispatch: +permissions: + contents: read + jobs: package-trigger-scheduler: runs-on: ubuntu-latest diff --git a/README.md b/README.md index 58d2bd1..ea6a25d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") [![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://linuxserver.io/discord "realtime support / chat with the community and the team.") [![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") -[![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") [![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") [![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") @@ -22,7 +21,6 @@ Find us at: * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! * [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team. * [Discourse](https://discourse.linuxserver.io) - post on our community forum. -* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget @@ -55,7 +53,6 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> | -| armhf | ❌ | | ## Version Tags From dee0c8c119b9906a5a6cc6bc1924105e574d141d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Jul 2025 13:11:11 +0000 Subject: [PATCH 2188/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0c39a24..b765341 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-6-noble deb +jellyfin-ffmpeg7 7.1.1-7-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb From 3c8303f6ea575e0dd8c5d08fa565481b0cc61441 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Jul 2025 05:23:01 +0000 Subject: [PATCH 2189/2257] Bot Updating Package Versions --- package_versions.txt | 75 ++++++++++++++++++++++---------------------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e1e4ee9..cd69ea0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -49,23 +49,23 @@ MediaBrowser.XbmcMetadata 24.4.0 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Data.Sqlite 9.0.6 dotnet -Microsoft.Data.Sqlite.Core 9.0.6 dotnet -Microsoft.EntityFrameworkCore 9.0.6 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.6 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.6 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.6 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.6 dotnet -Microsoft.Extensions.DependencyModel 9.0.6 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.6 dotnet +Microsoft.Data.Sqlite 9.0.7 dotnet +Microsoft.Data.Sqlite.Core 9.0.7 dotnet +Microsoft.EntityFrameworkCore 9.0.7 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.7 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.7 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.7 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.7 dotnet +Microsoft.Extensions.DependencyModel 9.0.7 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.7 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet NEbml 0.12.0 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.6.1 dotnet -Polly.Core 8.6.1 dotnet +Polly 8.6.2 dotnet +Polly.Core 8.6.2 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -73,6 +73,7 @@ SQLitePCLRaw.provider.e_sqlite3 2.1.10 Serilog 4.2.0 dotnet Serilog.AspNetCore 9.0.0 dotnet Serilog.Enrichers.Thread 4.0.0 dotnet +Serilog.Expressions 5.0.0 dotnet Serilog.Extensions.Hosting 9.0.0 dotnet Serilog.Extensions.Logging 9.0.0 dotnet Serilog.Formatting.Compact 3.0.0 dotnet @@ -107,7 +108,7 @@ at 3.2.5-2.1ubun base-files 13ubuntu10.2 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.2 deb +bsdutils 1:2.39.3-9ubuntu6.3 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6 deb @@ -118,7 +119,7 @@ dash 0.5.12-6ubunt debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17.2 deb +dirmngr 2.4.4-2ubuntu17.3 deb dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb @@ -126,26 +127,26 @@ fontconfig-config 2.15.0-1.1ubu fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17.2 deb -gnupg-l10n 2.4.4-2ubuntu17.2 deb -gnupg-utils 2.4.4-2ubuntu17.2 deb -gpg 2.4.4-2ubuntu17.2 deb -gpg-agent 2.4.4-2ubuntu17.2 deb -gpg-wks-client 2.4.4-2ubuntu17.2 deb -gpgconf 2.4.4-2ubuntu17.2 deb -gpgsm 2.4.4-2ubuntu17.2 deb -gpgv 2.4.4-2ubuntu17.2 deb +gnupg 2.4.4-2ubuntu17.3 deb +gnupg-l10n 2.4.4-2ubuntu17.3 deb +gnupg-utils 2.4.4-2ubuntu17.3 deb +gpg 2.4.4-2ubuntu17.3 deb +gpg-agent 2.4.4-2ubuntu17.3 deb +gpg-wks-client 2.4.4-2ubuntu17.3 deb +gpgconf 2.4.4-2ubuntu17.3 deb +gpgsm 2.4.4-2ubuntu17.3 deb +gpgv 2.4.4-2ubuntu17.3 deb grep 3.11-4build1 deb -gzip 1.12-1ubuntu3 deb +gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025070705+ubu2404 deb +jellyfin 2025071405+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025070705+ubu2404 deb -jellyfin-web 2025070705+ubu2404 deb +jellyfin-server 2025071405+ubu2404 deb +jellyfin-web 2025071405+ubu2404 deb jq 1.7.1-3build1 deb -keyboxd 2.4.4-2ubuntu17.2 deb +keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb @@ -156,7 +157,7 @@ libattr1 1:2.5.2-1buil libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb libbdplus0 0.2.0-3build1 deb -libblkid1 2.39.3-9ubuntu6.2 deb +libblkid1 2.39.3-9ubuntu6.3 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb @@ -198,7 +199,7 @@ libldap2 2.6.7+dfsg-1~ liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb -libmount1 2.39.3-9ubuntu6.2 deb +libmount1 2.39.3-9ubuntu6.3 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb @@ -233,10 +234,10 @@ libsemanage-common 3.5-1build5 libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.2 deb +libsmartcols1 2.39.3-9ubuntu6.3 deb libsqlite3-0 3.45.1-1ubuntu2.3 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb -libssh-4 0.10.6-2build2 deb +libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.8 deb @@ -246,7 +247,7 @@ libtinfo6 6.4+20240113- libudev1 255.4-1ubuntu8.8 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.2 deb +libuuid1 2.39.3-9ubuntu6.3 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -282,7 +283,7 @@ login 1:4.13+dfsg1- logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb -mount 2.39.3-9ubuntu6.2 deb +mount 2.39.3-9ubuntu6.3 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb @@ -297,8 +298,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.6 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.6 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.7 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.7 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5.24.04.1 deb @@ -308,8 +309,8 @@ tar 1.35+dfsg-3bu tzdata 2025b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb -util-linux 2.39.3-9ubuntu6.2 deb +util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 6.26.0 dotnet +z440.atl.core 7.0.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 5d78132b63af6cf6641b32aa62d74bd3609d8c64 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Jul 2025 13:06:16 +0000 Subject: [PATCH 2190/2257] 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 b765341..0f8ecbc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -102,7 +102,7 @@ at 3.2.5-2.1ubun base-files 13ubuntu10.2 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.2 deb +bsdutils 1:2.39.3-9ubuntu6.3 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6 deb @@ -113,7 +113,7 @@ dash 0.5.12-6ubunt debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17.2 deb +dirmngr 2.4.4-2ubuntu17.3 deb dpkg 1.22.6ubuntu6.1 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb @@ -121,17 +121,17 @@ fontconfig-config 2.15.0-1.1ubu fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17.2 deb -gnupg-l10n 2.4.4-2ubuntu17.2 deb -gnupg-utils 2.4.4-2ubuntu17.2 deb -gpg 2.4.4-2ubuntu17.2 deb -gpg-agent 2.4.4-2ubuntu17.2 deb -gpg-wks-client 2.4.4-2ubuntu17.2 deb -gpgconf 2.4.4-2ubuntu17.2 deb -gpgsm 2.4.4-2ubuntu17.2 deb -gpgv 2.4.4-2ubuntu17.2 deb +gnupg 2.4.4-2ubuntu17.3 deb +gnupg-l10n 2.4.4-2ubuntu17.3 deb +gnupg-utils 2.4.4-2ubuntu17.3 deb +gpg 2.4.4-2ubuntu17.3 deb +gpg-agent 2.4.4-2ubuntu17.3 deb +gpg-wks-client 2.4.4-2ubuntu17.3 deb +gpgconf 2.4.4-2ubuntu17.3 deb +gpgsm 2.4.4-2ubuntu17.3 deb +gpgv 2.4.4-2ubuntu17.3 deb grep 3.11-4build1 deb -gzip 1.12-1ubuntu3 deb +gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb @@ -140,7 +140,7 @@ jellyfin-ffmpeg7 7.1.1-7-noble jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3build1 deb -keyboxd 2.4.4-2ubuntu17.2 deb +keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.8.3 deb @@ -148,7 +148,7 @@ libassuan0 2.5.6-1build1 libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb -libblkid1 2.39.3-9ubuntu6.2 deb +libblkid1 2.39.3-9ubuntu6.3 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb @@ -189,7 +189,7 @@ libldap2 2.6.7+dfsg-1~ liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb -libmount1 2.39.3-9ubuntu6.2 deb +libmount1 2.39.3-9ubuntu6.3 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb @@ -224,10 +224,10 @@ libsemanage-common 3.5-1build5 libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.2 deb +libsmartcols1 2.39.3-9ubuntu6.3 deb libsqlite3-0 3.45.1-1ubuntu2.3 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb -libssh-4 0.10.6-2build2 deb +libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.8 deb @@ -237,7 +237,7 @@ libtinfo6 6.4+20240113- libudev1 255.4-1ubuntu8.8 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.2 deb +libuuid1 2.39.3-9ubuntu6.3 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -273,7 +273,7 @@ login 1:4.13+dfsg1- logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb -mount 2.39.3-9ubuntu6.2 deb +mount 2.39.3-9ubuntu6.3 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb @@ -298,7 +298,7 @@ tar 1.35+dfsg-3bu tzdata 2025b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb -util-linux 2.39.3-9ubuntu6.2 deb +util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb z440.atl.core 6.20.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet From e4a3bbc0247c7db295a95195a26a77075dfb933e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Jul 2025 05:24:50 +0000 Subject: [PATCH 2191/2257] 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 cd69ea0..47034ca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ BitFaster.Caching 2.5.4 BlurHashSharp 1.4.0-pre.1 dotnet BlurHashSharp.SkiaSharp 1.4.0-pre.1 dotnet CommandLineParser 2.9.1 dotnet -Diacritics 4.0.14 dotnet +Diacritics 4.0.17 dotnet DiscUtils.Core 0.16.13 dotnet DiscUtils.Iso9660 0.16.13 dotnet DiscUtils.Streams 0.16.13 dotnet @@ -61,7 +61,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.7 Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet -NEbml 0.12.0 dotnet +NEbml 1.0.0.3 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet Polly 8.6.2 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025071405+ubu2404 deb +jellyfin 2025072105+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025071405+ubu2404 deb -jellyfin-web 2025071405+ubu2404 deb +jellyfin-server 2025072105+ubu2404 deb +jellyfin-web 2025072105+ubu2404 deb jq 1.7.1-3build1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -162,8 +162,8 @@ libbluray2 1:1.3.4-1buil libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.4 deb -libc6 2.39-0ubuntu8.4 deb +libc-bin 2.39-0ubuntu8.5 deb +libc6 2.39-0ubuntu8.5 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2.2 deb @@ -181,7 +181,7 @@ libfreetype6 2.13.2+dfsg-1 libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb -libgnutls30t64 3.8.3-1.1ubuntu3.3 deb +libgnutls30t64 3.8.3-1.1ubuntu3.4 deb libgpg-error0 1.47-3build2.1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb libhogweed6t64 3.9.1-2.2build1.1 deb @@ -240,11 +240,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.8 deb +libsystemd0 255.4-1ubuntu8.10 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.8 deb +libudev1 255.4-1ubuntu8.10 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.3 deb @@ -278,7 +278,7 @@ libxxhash0 0.8.2-2build1 libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.4 deb +locales 2.39-0ubuntu8.5 deb login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb @@ -303,7 +303,7 @@ runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.7 sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5.24.04.1 deb -systemd-standalone-sysusers 255.4-1ubuntu8.8 deb +systemd-standalone-sysusers 255.4-1ubuntu8.10 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb @@ -311,6 +311,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.0.0 dotnet +z440.atl.core 7.2.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From f82de6c0ff9465d2ada95f7c293124a17ada689f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Jul 2025 13:07:51 +0000 Subject: [PATCH 2192/2257] 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 0f8ecbc..8f4e8cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -153,8 +153,8 @@ libbluray2 1:1.3.4-1buil libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.4 deb -libc6 2.39-0ubuntu8.4 deb +libc-bin 2.39-0ubuntu8.5 deb +libc6 2.39-0ubuntu8.5 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2.2 deb @@ -172,7 +172,7 @@ libfreetype6 2.13.2+dfsg-1 libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgcrypt20 1.10.3-2build1 deb libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb -libgnutls30t64 3.8.3-1.1ubuntu3.3 deb +libgnutls30t64 3.8.3-1.1ubuntu3.4 deb libgpg-error0 1.47-3build2.1 deb libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb libhogweed6t64 3.9.1-2.2build1.1 deb @@ -230,11 +230,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.8 deb +libsystemd0 255.4-1ubuntu8.10 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.8 deb +libudev1 255.4-1ubuntu8.10 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.3 deb @@ -268,7 +268,7 @@ libxxhash0 0.8.2-2build1 libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.4 deb +locales 2.39-0ubuntu8.5 deb login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb @@ -292,7 +292,7 @@ runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 8.0.14 runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 8.0.14 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.8 deb +systemd-standalone-sysusers 255.4-1ubuntu8.10 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb From 1980007d68665497f72fb54d98010e1817f6488b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Jul 2025 05:26:02 +0000 Subject: [PATCH 2193/2257] 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 47034ca..ece268e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -83,13 +83,13 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 3.0.3 dotnet +ShimSkiaSharp 3.0.4 dotnet SkiaSharp 3.116.1 dotnet SkiaSharp.HarfBuzz 3.116.1 dotnet SkiaSharp.NativeAssets.Linux 3.116.1 dotnet -Svg.Custom 3.0.3 dotnet -Svg.Model 3.0.3 dotnet -Svg.Skia 3.0.3 dotnet +Svg.Custom 3.0.4 dotnet +Svg.Model 3.0.4 dotnet +Svg.Skia 3.0.4 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet @@ -140,12 +140,12 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025072105+ubu2404 deb +jellyfin 2025072805+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025072105+ubu2404 deb -jellyfin-web 2025072105+ubu2404 deb -jq 1.7.1-3build1 deb +jellyfin-server 2025072805+ubu2404 deb +jellyfin-web 2025072805+ubu2404 deb +jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb libaacs0 0.11.1-2build1 deb @@ -188,7 +188,7 @@ libhogweed6t64 3.9.1-2.2buil libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb libjemalloc2 5.3.0-2build1 deb -libjq1 1.7.1-3build1 deb +libjq1 1.7.1-3ubuntu0.24.04.1 deb libk5crypto3 1.20.1-6ubuntu2.6 deb libkeyutils1 1.6.3-3build1 deb libkrb5-3 1.20.1-6ubuntu2.6 deb From fe12df5d3851241465283c1bfe6d8814112c71be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Jul 2025 13:11:19 +0000 Subject: [PATCH 2194/2257] 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 8f4e8cf..7b46f99 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -139,7 +139,7 @@ jellyfin 24.04 jellyfin-ffmpeg7 7.1.1-7-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb -jq 1.7.1-3build1 deb +jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb libacl1 2.3.2-1build1.1 deb @@ -178,7 +178,7 @@ libgssapi-krb5-2 1.20.1-6ubunt libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb -libjq1 1.7.1-3build1 deb +libjq1 1.7.1-3ubuntu0.24.04.1 deb libk5crypto3 1.20.1-6ubuntu2.6 deb libkeyutils1 1.6.3-3build1 deb libkrb5-3 1.20.1-6ubuntu2.6 deb From 23c41b9f2153c09111c7cff67d67bf9a247f8d10 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Aug 2025 05:34:59 +0000 Subject: [PATCH 2195/2257] 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 ece268e..73b38fa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025072805+ubu2404 deb +jellyfin 2025080405+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025072805+ubu2404 deb -jellyfin-web 2025072805+ubu2404 deb +jellyfin-server 2025080405+ubu2404 deb +jellyfin-web 2025080405+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -235,7 +235,7 @@ libsemanage2 3.5-1build5 libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.3 deb -libsqlite3-0 3.45.1-1ubuntu2.3 deb +libsqlite3-0 3.45.1-1ubuntu2.4 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb @@ -290,7 +290,7 @@ netcat-openbsd 1.226-1ubuntu ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2ubuntu0.1 deb +perl-base 5.38.2-3.2ubuntu0.2 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb prometheus-net 8.2.1 dotnet From bcd5e6643be811bda6cb5ed2c17aa3b8ba98e225 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Aug 2025 13:11:15 +0000 Subject: [PATCH 2196/2257] Bot Updating Package Versions --- package_versions.txt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7b46f99..a773f13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -163,6 +163,11 @@ libcrypt1 1:4.4.36-4bui libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb +libdrm-amdgpu1 2.4.122-1~ubuntu0.24.04.1 deb +libdrm-common 2.4.122-1~ubuntu0.24.04.1 deb +libdrm-intel1 2.4.122-1~ubuntu0.24.04.1 deb +libdrm2 2.4.122-1~ubuntu0.24.04.1 deb +libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.3 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb @@ -186,6 +191,7 @@ libkrb5support0 1.20.1-6ubunt libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libllvm19 1:19.1.1-1ubuntu1~24.04.2 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb @@ -222,10 +228,12 @@ libseccomp2 2.5.5-1ubuntu libselinux1 3.5-2ubuntu2.1 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb +libsensors-config 1:3.6.0-9build1 deb +libsensors5 1:3.6.0-9build1 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.3 deb -libsqlite3-0 3.45.1-1ubuntu2.3 deb +libsqlite3-0 3.45.1-1ubuntu2.4 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb @@ -272,7 +280,8 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb +mesa-libgallium 25.0.7-0ubuntu0.24.04.1 deb +mesa-va-drivers 25.0.7-0ubuntu0.24.04.1 deb mount 2.39.3-9ubuntu6.3 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb @@ -280,7 +289,7 @@ netcat-openbsd 1.226-1ubuntu ocl-icd-libopencl1 2.3.2-1build1 deb openssl 3.0.13-0ubuntu3.5 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb -perl-base 5.38.2-3.2ubuntu0.1 deb +perl-base 5.38.2-3.2ubuntu0.2 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb prometheus-net 8.2.1 dotnet From fe5866b3c27343b60609287fbcea2d882cfa875d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Aug 2025 13:11:43 +0000 Subject: [PATCH 2197/2257] Bot Updating Package Versions --- package_versions.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 73b38fa..31a9275 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -172,6 +172,11 @@ libcrypt1 1:4.4.36-4bui libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb +libdrm-amdgpu1 2.4.122-1~ubuntu0.24.04.1 deb +libdrm-common 2.4.122-1~ubuntu0.24.04.1 deb +libdrm-intel1 2.4.122-1~ubuntu0.24.04.1 deb +libdrm2 2.4.122-1~ubuntu0.24.04.1 deb +libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.3 deb libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb @@ -196,6 +201,7 @@ libkrb5support0 1.20.1-6ubunt libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb +libllvm19 1:19.1.1-1ubuntu1~24.04.2 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb @@ -232,6 +238,8 @@ libseccomp2 2.5.5-1ubuntu libselinux1 3.5-2ubuntu2.1 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb +libsensors-config 1:3.6.0-9build1 deb +libsensors5 1:3.6.0-9build1 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.3 deb @@ -282,7 +290,8 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-va-drivers 24.2.8-1ubuntu1~24.04.1 deb +mesa-libgallium 25.0.7-0ubuntu0.24.04.1 deb +mesa-va-drivers 25.0.7-0ubuntu0.24.04.1 deb mount 2.39.3-9ubuntu6.3 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb From d60899688b7312bc4673548108e6a6eba5b2aaef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Aug 2025 05:25:52 +0000 Subject: [PATCH 2198/2257] 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 31a9275..21795b9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ DotNet.Glob 3.1.3 Emby.Naming 10.11.0.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet -ExCSS 4.3.0 dotnet +ExCSS 4.3.1 dotnet HarfBuzzSharp 8.3.0.1 dotnet HarfBuzzSharp.NativeAssets.Linux 8.3.1.1 dotnet ICU4N 60.1.0-alpha.356 dotnet @@ -49,15 +49,15 @@ MediaBrowser.XbmcMetadata 24.4.0 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Data.Sqlite 9.0.7 dotnet -Microsoft.Data.Sqlite.Core 9.0.7 dotnet -Microsoft.EntityFrameworkCore 9.0.7 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.7 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.7 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.7 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.7 dotnet -Microsoft.Extensions.DependencyModel 9.0.7 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.7 dotnet +Microsoft.Data.Sqlite 9.0.8 dotnet +Microsoft.Data.Sqlite.Core 9.0.8 dotnet +Microsoft.EntityFrameworkCore 9.0.8 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.8 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.8 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.8 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.8 dotnet +Microsoft.Extensions.DependencyModel 9.0.8 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.8 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet @@ -83,13 +83,13 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 3.0.4 dotnet +ShimSkiaSharp 3.0.5 dotnet SkiaSharp 3.116.1 dotnet SkiaSharp.HarfBuzz 3.116.1 dotnet SkiaSharp.NativeAssets.Linux 3.116.1 dotnet -Svg.Custom 3.0.4 dotnet -Svg.Model 3.0.4 dotnet -Svg.Skia 3.0.4 dotnet +Svg.Custom 3.0.5 dotnet +Svg.Model 3.0.5 dotnet +Svg.Skia 3.0.5 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet @@ -105,7 +105,7 @@ adduser 3.137ubuntu1 apt 2.8.3 deb apt-utils 2.8.3 deb at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10.2 deb +base-files 13ubuntu10.3 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb bsdutils 1:2.39.3-9ubuntu6.3 deb @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025080405+ubu2404 deb +jellyfin 2025081105+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025080405+ubu2404 deb -jellyfin-web 2025080405+ubu2404 deb +jellyfin-server 2025081105+ubu2404 deb +jellyfin-web 2025081105+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -307,8 +307,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.7 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.7 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.8 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.8 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5.24.04.1 deb From 0ff4d5b34ef8161afab5f2137ae506af57774157 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Aug 2025 13:08:43 +0000 Subject: [PATCH 2199/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a773f13..864ea7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -99,7 +99,7 @@ adduser 3.137ubuntu1 apt 2.8.3 deb apt-utils 2.8.3 deb at 3.2.5-2.1ubuntu3 deb -base-files 13ubuntu10.2 deb +base-files 13ubuntu10.3 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb bsdutils 1:2.39.3-9ubuntu6.3 deb From 5cd144df44cde8e4490e0f88c76fc87f1eb86f6e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Aug 2025 06:24:18 +0000 Subject: [PATCH 2200/2257] 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 21795b9..9c5f90f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -99,7 +99,7 @@ System.Drawing.Common 9.0.2 System.Linq.Async 6.0.3 dotnet TMDbLib 2.2.0 dotnet TagLibSharp 2.3.0 dotnet -UTF.Unknown 2.5.1 dotnet +UTF.Unknown 2.6.0 dotnet Ude.NetStandard 1.2.0 dotnet adduser 3.137ubuntu1 deb apt 2.8.3 deb @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025081105+ubu2404 deb +jellyfin 2025081805+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025081105+ubu2404 deb -jellyfin-web 2025081105+ubu2404 deb +jellyfin-server 2025081805+ubu2404 deb +jellyfin-web 2025081805+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -320,6 +320,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.2.0 dotnet +z440.atl.core 7.3.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 7c1f0bed18b803d5c1b9faf7eb45516d3191dc7e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Aug 2025 06:23:01 +0000 Subject: [PATCH 2201/2257] 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 9c5f90f..623cebb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025081805+ubu2404 deb +jellyfin 2025082505+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025081805+ubu2404 deb -jellyfin-web 2025081805+ubu2404 deb +jellyfin-server 2025082505+ubu2404 deb +jellyfin-web 2025082505+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -278,7 +278,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.3 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.4 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From 3cbef24376f66b68ba5d72057ea9eb2dd5c7d6e2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 26 Aug 2025 13:05:48 +0000 Subject: [PATCH 2202/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 864ea7a..320f34f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -268,7 +268,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.3 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.4 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From cfa76184f820a72c20660f15f8cc8b2d11803079 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Sep 2025 06:23:47 +0000 Subject: [PATCH 2203/2257] 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 623cebb..6125e43 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -64,8 +64,8 @@ Morestachio 5.0.1.631 NEbml 1.0.0.3 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.6.2 dotnet -Polly.Core 8.6.2 dotnet +Polly 8.6.3 dotnet +Polly.Core 8.6.3 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -83,13 +83,13 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 3.0.5 dotnet +ShimSkiaSharp 3.0.6 dotnet SkiaSharp 3.116.1 dotnet SkiaSharp.HarfBuzz 3.116.1 dotnet SkiaSharp.NativeAssets.Linux 3.116.1 dotnet -Svg.Custom 3.0.5 dotnet -Svg.Model 3.0.5 dotnet -Svg.Skia 3.0.5 dotnet +Svg.Custom 3.0.6 dotnet +Svg.Model 3.0.6 dotnet +Svg.Skia 3.0.6 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025082505+ubu2404 deb +jellyfin 2025090105+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025082505+ubu2404 deb -jellyfin-web 2025082505+ubu2404 deb +jellyfin-server 2025090105+ubu2404 deb +jellyfin-web 2025090105+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb From ea2f038c31f72e880a212fc523b913241a310bf4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Sep 2025 06:23:11 +0000 Subject: [PATCH 2204/2257] 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 6125e43..cb63261 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -61,7 +61,7 @@ Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.8 Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet -NEbml 1.0.0.3 dotnet +NEbml 1.1.0.5 dotnet Newtonsoft.Json 13.0.3 dotnet PlaylistsNET 1.4.1 dotnet Polly 8.6.3 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025090105+ubu2404 deb +jellyfin 2025090805+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025090105+ubu2404 deb -jellyfin-web 2025090105+ubu2404 deb +jellyfin-server 2025090805+ubu2404 deb +jellyfin-web 2025090805+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -201,7 +201,7 @@ libkrb5support0 1.20.1-6ubunt libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libllvm19 1:19.1.1-1ubuntu1~24.04.2 deb +libllvm20 1:20.1.2-0ubuntu1~24.04.2 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb @@ -290,8 +290,8 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-libgallium 25.0.7-0ubuntu0.24.04.1 deb -mesa-va-drivers 25.0.7-0ubuntu0.24.04.1 deb +mesa-libgallium 25.0.7-0ubuntu0.24.04.2 deb +mesa-va-drivers 25.0.7-0ubuntu0.24.04.2 deb mount 2.39.3-9ubuntu6.3 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb From 6c06ae3d76a22fa5bb7f44f96533acc89d31b801 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Sep 2025 13:04:08 +0000 Subject: [PATCH 2205/2257] 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 320f34f..ac26b57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -191,7 +191,7 @@ libkrb5support0 1.20.1-6ubunt libksba8 1.6.6-1build1 deb libldap-common 2.6.7+dfsg-1~exp1ubuntu8.2 deb libldap2 2.6.7+dfsg-1~exp1ubuntu8.2 deb -libllvm19 1:19.1.1-1ubuntu1~24.04.2 deb +libllvm20 1:20.1.2-0ubuntu1~24.04.2 deb liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb @@ -280,8 +280,8 @@ locales 2.39-0ubuntu8 login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb -mesa-libgallium 25.0.7-0ubuntu0.24.04.1 deb -mesa-va-drivers 25.0.7-0ubuntu0.24.04.1 deb +mesa-libgallium 25.0.7-0ubuntu0.24.04.2 deb +mesa-va-drivers 25.0.7-0ubuntu0.24.04.2 deb mount 2.39.3-9ubuntu6.3 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb From 39fefc19dd86e31f07babce5a2808a038d471b8a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Sep 2025 20:14:35 +0000 Subject: [PATCH 2206/2257] 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 cb63261..a47246c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -49,15 +49,15 @@ MediaBrowser.XbmcMetadata 24.4.0 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Data.Sqlite 9.0.8 dotnet -Microsoft.Data.Sqlite.Core 9.0.8 dotnet -Microsoft.EntityFrameworkCore 9.0.8 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.8 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.8 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.8 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.8 dotnet -Microsoft.Extensions.DependencyModel 9.0.8 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.8 dotnet +Microsoft.Data.Sqlite 9.0.9 dotnet +Microsoft.Data.Sqlite.Core 9.0.9 dotnet +Microsoft.EntityFrameworkCore 9.0.9 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.9 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.9 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.9 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.9 dotnet +Microsoft.Extensions.DependencyModel 9.0.9 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.9 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet @@ -111,7 +111,7 @@ bash 5.2.21-2ubunt bsdutils 1:2.39.3-9ubuntu6.3 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb -coreutils 9.4-3ubuntu6 deb +coreutils 9.4-3ubuntu6.1 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb curl 8.5.0-2ubuntu10.6 deb @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025090805+ubu2404 deb +jellyfin 2025091505+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025090805+ubu2404 deb -jellyfin-web 2025090805+ubu2404 deb +jellyfin-server 2025091505+ubu2404 deb +jellyfin-web 2025091505+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -278,7 +278,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.4 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.5 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb @@ -307,8 +307,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.8 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.8 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.9 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.9 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb sudo 1.9.15p5-3ubuntu5.24.04.1 deb From 19bfc8fb81458573e07aa4f39f5cee0d96199646 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 16 Sep 2025 13:00:54 +0000 Subject: [PATCH 2207/2257] 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 ac26b57..c21d77e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -105,7 +105,7 @@ bash 5.2.21-2ubunt bsdutils 1:2.39.3-9ubuntu6.3 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb -coreutils 9.4-3ubuntu6 deb +coreutils 9.4-3ubuntu6.1 deb cron 3.0pl1-184ubuntu2 deb cron-daemon-common 3.0pl1-184ubuntu2 deb curl 8.5.0-2ubuntu10.6 deb @@ -268,7 +268,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.4 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.5 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From f5a956689d3c5ee18b414da31dbf6c1d20b14437 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Sep 2025 06:23:23 +0000 Subject: [PATCH 2208/2257] Bot Updating Package Versions --- package_versions.txt | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a47246c..948a0da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -22,6 +22,7 @@ ICU4N.Transliterator 60.1.0-alpha. Ignore 0.2.1 dotnet J2N 2.0.0 dotnet Jellyfin.Api 24.4.0 dotnet +Jellyfin.CodeAnalysis 24.4.0 dotnet Jellyfin.Common 24.4.0 dotnet Jellyfin.Controller 24.4.0 dotnet Jellyfin.Data 24.4.0 dotnet @@ -62,7 +63,7 @@ Microsoft.OpenApi 1.2.3 Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet NEbml 1.1.0.5 dotnet -Newtonsoft.Json 13.0.3 dotnet +Newtonsoft.Json 13.0.4 dotnet PlaylistsNET 1.4.1 dotnet Polly 8.6.3 dotnet Polly.Core 8.6.3 dotnet @@ -83,13 +84,13 @@ Serilog.Sinks.Console 6.0.0 Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 3.0.6 dotnet +ShimSkiaSharp 3.2.1 dotnet SkiaSharp 3.116.1 dotnet SkiaSharp.HarfBuzz 3.116.1 dotnet SkiaSharp.NativeAssets.Linux 3.116.1 dotnet -Svg.Custom 3.0.6 dotnet -Svg.Model 3.0.6 dotnet -Svg.Skia 3.0.6 dotnet +Svg.Custom 3.2.1 dotnet +Svg.Model 3.2.1 dotnet +Svg.Skia 3.2.1 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet @@ -97,7 +98,7 @@ Swashbuckle.AspNetCore.SwaggerGen 6.2.3 Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet System.Drawing.Common 9.0.2 dotnet System.Linq.Async 6.0.3 dotnet -TMDbLib 2.2.0 dotnet +TMDbLib 2.3.0 dotnet TagLibSharp 2.3.0 dotnet UTF.Unknown 2.6.0 dotnet Ude.NetStandard 1.2.0 dotnet @@ -140,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025091505+ubu2404 deb +jellyfin 2025092205+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-7-noble deb -jellyfin-server 2025091505+ubu2404 deb -jellyfin-web 2025091505+ubu2404 deb +jellyfin-ffmpeg7 7.1.2-1-noble deb +jellyfin-server 2025092205+ubu2404 deb +jellyfin-web 2025092205+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -243,7 +244,7 @@ libsensors5 1:3.6.0-9buil libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.3 deb -libsqlite3-0 3.45.1-1ubuntu2.4 deb +libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb @@ -320,6 +321,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.3.0 dotnet +z440.atl.core 7.5.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From f4eaf76e263058b19bde3d6067de7795c59845fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Sep 2025 13:02:01 +0000 Subject: [PATCH 2209/2257] 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 c21d77e..50e3f38 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.1-7-noble deb +jellyfin-ffmpeg7 7.1.2-1-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb @@ -233,7 +233,7 @@ libsensors5 1:3.6.0-9buil libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb libsmartcols1 2.39.3-9ubuntu6.3 deb -libsqlite3-0 3.45.1-1ubuntu2.4 deb +libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.5 deb From ddbdc16c5324d0a253c75bd6d350cb4740f830da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 29 Sep 2025 06:23:39 +0000 Subject: [PATCH 2210/2257] 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 948a0da..2a3e230 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -65,8 +65,8 @@ Morestachio 5.0.1.631 NEbml 1.1.0.5 dotnet Newtonsoft.Json 13.0.4 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.6.3 dotnet -Polly.Core 8.6.3 dotnet +Polly 8.6.4 dotnet +Polly.Core 8.6.4 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -121,7 +121,7 @@ debconf 1.5.86ubuntu1 debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17.3 deb -dpkg 1.22.6ubuntu6.1 deb +dpkg 1.22.6ubuntu6.2 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025092205+ubu2404 deb +jellyfin 2025092905+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-1-noble deb -jellyfin-server 2025092205+ubu2404 deb -jellyfin-web 2025092205+ubu2404 deb +jellyfin-server 2025092905+ubu2404 deb +jellyfin-web 2025092905+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -163,8 +163,8 @@ libbluray2 1:1.3.4-1buil libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.5 deb -libc6 2.39-0ubuntu8.5 deb +libc-bin 2.39-0ubuntu8.6 deb +libc6 2.39-0ubuntu8.6 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2.2 deb @@ -219,10 +219,10 @@ libonig5 6.9.9-1build1 libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb -libpam-modules 1.5.3-5ubuntu5.4 deb -libpam-modules-bin 1.5.3-5ubuntu5.4 deb -libpam-runtime 1.5.3-5ubuntu5.4 deb -libpam0g 1.5.3-5ubuntu5.4 deb +libpam-modules 1.5.3-5ubuntu5.5 deb +libpam-modules-bin 1.5.3-5ubuntu5.5 deb +libpam-runtime 1.5.3-5ubuntu5.5 deb +libpam0g 1.5.3-5ubuntu5.5 deb libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb @@ -287,7 +287,7 @@ libxxhash0 0.8.2-2build1 libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.5 deb +locales 2.39-0ubuntu8.6 deb login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb From 781379a1752cfd84e58977daf32606c81b78564f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Sep 2025 13:03:17 +0000 Subject: [PATCH 2211/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 50e3f38..1e29ede 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,7 +114,7 @@ debconf 1.5.86ubuntu1 debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17.3 deb -dpkg 1.22.6ubuntu6.1 deb +dpkg 1.22.6ubuntu6.2 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb @@ -153,8 +153,8 @@ libbluray2 1:1.3.4-1buil libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb libbz2-1.0 1.0.8-5.1build0.1 deb -libc-bin 2.39-0ubuntu8.5 deb -libc6 2.39-0ubuntu8.5 deb +libc-bin 2.39-0ubuntu8.6 deb +libc6 2.39-0ubuntu8.6 deb libcairo2 1.18.0-3build1 deb libcap-ng0 0.8.4-2build2 deb libcap2 1:2.66-5ubuntu2.2 deb @@ -208,10 +208,10 @@ libonig5 6.9.9-1build1 libopenmpt0t64 0.7.3-1.1build3 deb libopus0 1.4-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb -libpam-modules 1.5.3-5ubuntu5.4 deb -libpam-modules-bin 1.5.3-5ubuntu5.4 deb -libpam-runtime 1.5.3-5ubuntu5.4 deb -libpam0g 1.5.3-5ubuntu5.4 deb +libpam-modules 1.5.3-5ubuntu5.5 deb +libpam-modules-bin 1.5.3-5ubuntu5.5 deb +libpam-runtime 1.5.3-5ubuntu5.5 deb +libpam0g 1.5.3-5ubuntu5.5 deb libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb @@ -276,7 +276,7 @@ libxxhash0 0.8.2-2build1 libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb libzvbi0t64 0.2.42-2 deb -locales 2.39-0ubuntu8.5 deb +locales 2.39-0ubuntu8.6 deb login 1:4.13+dfsg1-4ubuntu3.2 deb logsave 1.47.0-2.4~exp1ubuntu4.1 deb mawk 1.3.4.20240123-1build1 deb From 8b619f8fb995e03fd192d5e4126737e0460e972e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Oct 2025 06:22:23 +0000 Subject: [PATCH 2212/2257] 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 2a3e230..3e9ce41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -121,7 +121,7 @@ debconf 1.5.86ubuntu1 debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17.3 deb -dpkg 1.22.6ubuntu6.2 deb +dpkg 1.22.6ubuntu6.5 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025092905+ubu2404 deb +jellyfin 2025100605+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-1-noble deb -jellyfin-server 2025092905+ubu2404 deb -jellyfin-web 2025092905+ubu2404 deb +jellyfin-ffmpeg7 7.1.2-2-noble deb +jellyfin-server 2025100605+ubu2404 deb +jellyfin-web 2025100605+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -247,7 +247,7 @@ libsmartcols1 2.39.3-9ubunt libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.1 deb -libssl3t64 3.0.13-0ubuntu3.5 deb +libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.10 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb @@ -298,7 +298,7 @@ ncurses-base 6.4+20240113- ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.5 deb +openssl 3.0.13-0ubuntu3.6 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb perl-base 5.38.2-3.2ubuntu0.2 deb pinentry-curses 1.2.1-3ubuntu5 deb From 80cf35c512841dee206395b11b097d0cd0762875 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Oct 2025 13:02:15 +0000 Subject: [PATCH 2213/2257] 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 1e29ede..08be86c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -114,7 +114,7 @@ debconf 1.5.86ubuntu1 debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb dirmngr 2.4.4-2ubuntu17.3 deb -dpkg 1.22.6ubuntu6.2 deb +dpkg 1.22.6ubuntu6.5 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb fontconfig-config 2.15.0-1.1ubuntu2 deb @@ -136,7 +136,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.10.7+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-1-noble deb +jellyfin-ffmpeg7 7.1.2-2-noble deb jellyfin-server 10.10.7+ubu2404 deb jellyfin-web 10.10.7+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb @@ -236,7 +236,7 @@ libsmartcols1 2.39.3-9ubunt libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.1 deb -libssl3t64 3.0.13-0ubuntu3.5 deb +libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.10 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb @@ -287,7 +287,7 @@ ncurses-base 6.4+20240113- ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb ocl-icd-libopencl1 2.3.2-1build1 deb -openssl 3.0.13-0ubuntu3.5 deb +openssl 3.0.13-0ubuntu3.6 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb perl-base 5.38.2-3.2ubuntu0.2 deb pinentry-curses 1.2.1-3ubuntu5 deb From 2cd6f518c754451778b832d1d55e3419c62d75d5 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 20 Oct 2025 10:45:33 +0100 Subject: [PATCH 2214/2257] Add libjemalloc2 as runtime dep --- .editorconfig | 0 .github/CONTRIBUTING.md | 0 .github/FUNDING.yml | 0 .github/ISSUE_TEMPLATE/config.yml | 0 .github/ISSUE_TEMPLATE/issue.bug.yml | 0 .github/ISSUE_TEMPLATE/issue.feature.yml | 0 .github/PULL_REQUEST_TEMPLATE.md | 0 .github/workflows/call_issue_pr_tracker.yml | 0 .github/workflows/call_issues_cron.yml | 0 .github/workflows/greetings.yml | 0 .github/workflows/permissions.yml | 0 Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- README.md | 1 + readme-vars.yml | 1 + 15 files changed, 8 insertions(+), 2 deletions(-) mode change 100755 => 100644 .editorconfig mode change 100755 => 100644 .github/CONTRIBUTING.md mode change 100755 => 100644 .github/FUNDING.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/config.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/issue.bug.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/issue.feature.yml mode change 100755 => 100644 .github/PULL_REQUEST_TEMPLATE.md mode change 100755 => 100644 .github/workflows/call_issue_pr_tracker.yml mode change 100755 => 100644 .github/workflows/call_issues_cron.yml mode change 100755 => 100644 .github/workflows/greetings.yml mode change 100755 => 100644 .github/workflows/permissions.yml diff --git a/.editorconfig b/.editorconfig old mode 100755 new mode 100644 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md old mode 100755 new mode 100644 diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/issue.feature.yml b/.github/ISSUE_TEMPLATE/issue.feature.yml old mode 100755 new mode 100644 diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md old mode 100755 new mode 100644 diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml old mode 100755 new mode 100644 diff --git a/Dockerfile b/Dockerfile index 242a39d..f5ecdb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,9 +27,11 @@ RUN \ apt-get update && \ apt-get install -y \ at \ - jellyfin=${JELLYFIN_RELEASE} \ + libjemalloc2 \ mesa-va-drivers \ xmlstarlet && \ + apt-get install -y \ + jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index c7a0211..8a4f43f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -27,11 +27,13 @@ RUN \ apt-get update && \ apt-get install -y \ at \ - jellyfin=${JELLYFIN_RELEASE} \ + libjemalloc2 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ xmlstarlet && \ + apt-get install -y \ + jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/README.md b/README.md index f90450a..2c332d1 100644 --- a/README.md +++ b/README.md @@ -372,6 +372,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.10.25:** - Add libjemalloc2 as runtime dep. * **06.10.24:** - Fix fontconfig cache path. * **13.08.24:** - Rebase to Ubuntu Noble. * **01.05.24:** - Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb. diff --git a/readme-vars.yml b/readme-vars.yml index 8f8c5b9..039cd45 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -131,6 +131,7 @@ init_diagram: | "jellyfin:nightly" <- Base Images # changelog changelogs: + - {date: "20.10.25:", desc: "Add libjemalloc2 as runtime dep."} - {date: "06.10.24:", desc: "Fix fontconfig cache path."} - {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."} - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing. Use universal hardware acceleration blurb."} From 1941891dbfe3d470ac93a41927305258ceb41104 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 20 Oct 2025 10:47:56 +0100 Subject: [PATCH 2215/2257] No install recommends --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f5ecdb9..c8596e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,12 +25,12 @@ RUN \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ at \ libjemalloc2 \ mesa-va-drivers \ xmlstarlet && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8a4f43f..82975ce 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,14 +25,14 @@ RUN \ JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \ fi && \ apt-get update && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ at \ libjemalloc2 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ xmlstarlet && \ - apt-get install -y \ + apt-get install -y --no-install-recommends \ jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ From 24ddbd3788cc3f325559b918cb4861a51eb10ca2 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 20 Oct 2025 16:13:07 +0100 Subject: [PATCH 2216/2257] Run builder --- Jenkinsfile | 87 ++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 62 insertions(+), 25 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e66c499..14e3367 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -208,6 +208,7 @@ pipeline { env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'latest' } } } @@ -233,6 +234,7 @@ pipeline { env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'develop' } } } @@ -258,6 +260,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'develop' } } } @@ -615,13 +618,16 @@ pipeline { echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -681,13 +687,16 @@ pipeline { echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -741,12 +750,14 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -871,7 +882,7 @@ pipeline { CI_DOCKERENV="LSIO_FIRST_PARTY=true" fi fi - docker pull ghcr.io/linuxserver/ci:latest + docker pull ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} if [ "${MULTIARCH}" == "true" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} @@ -895,7 +906,7 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ - -t ghcr.io/linuxserver/ci:latest \ + -t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \ python3 test_build.py''' } } @@ -921,9 +932,11 @@ pipeline { CACHEIMAGE=${i} fi done - docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:nightly -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:nightly -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } fi done ''' @@ -948,20 +961,27 @@ pipeline { CACHEIMAGE=${i} fi done - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-nightly -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-nightly -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-nightly -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + 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} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } fi done for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly - docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - - docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } fi done ''' @@ -979,6 +999,16 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { + echo "Auto-generating release notes" + sh '''if [ "$(git tag --points-at HEAD)" != "" ]; then + echo "Existing tag points to current commit, suggesting no new LS changes" + AUTO_RELEASE_NOTES="No changes" + else + AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ + -d '{"tag_name":"'${META_TAG}'",\ + "target_commitish": "nightly"}' \ + | jq -r '.body' | sed 's|## What.s Changed||') + fi''' echo "Pushing New tag for current commit ${META_TAG}" sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ -d '{"tag":"'${META_TAG}'",\ @@ -989,12 +1019,19 @@ pipeline { echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json - echo '{"tag_name":"'${META_TAG}'",\ - "target_commitish": "nightly",\ - "name": "'${META_TAG}'",\ - "body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start - printf '","draft": false,"prerelease": true}' >> releasebody.json - paste -d'\\0' start releasebody.json > releasebody.json.done + jq -n \ + --arg tag_name "$META_TAG" \ + --arg target_commitish "nightly" \ + --arg ci_url "${CI_URL:-N/A}" \ + --arg ls_notes "$AUTO_RELEASE_NOTES" \ + --arg remote_notes "$(cat releasebody.json)" \ + '{ + "tag_name": $tag_name, + "target_commitish": $target_commitish, + "name": $tag_name, + "body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes), + "draft": false, + "prerelease": true }' > releasebody.json.done curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' } } From 94e0e6d231c6c620d589fa60ae1b3c412a4484aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Oct 2025 15:14:03 +0000 Subject: [PATCH 2217/2257] Bot Updating Templated Files --- Jenkinsfile | 87 ++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 62 insertions(+), 25 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f050785..2f646bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -208,6 +208,7 @@ pipeline { env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'latest' } } } @@ -233,6 +234,7 @@ pipeline { env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'develop' } } } @@ -258,6 +260,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'develop' } } } @@ -615,13 +618,16 @@ pipeline { echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -681,13 +687,16 @@ pipeline { echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -741,12 +750,14 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -871,7 +882,7 @@ pipeline { CI_DOCKERENV="LSIO_FIRST_PARTY=true" fi fi - docker pull ghcr.io/linuxserver/ci:latest + docker pull ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} if [ "${MULTIARCH}" == "true" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} @@ -895,7 +906,7 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ - -t ghcr.io/linuxserver/ci:latest \ + -t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \ python3 test_build.py''' } } @@ -921,9 +932,11 @@ pipeline { CACHEIMAGE=${i} fi done - docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:latest -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:latest -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } fi done ''' @@ -948,20 +961,27 @@ pipeline { CACHEIMAGE=${i} fi done - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-latest -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-latest -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-latest -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-latest -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } fi done for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest - docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - - docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} || \ + { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } fi done ''' @@ -979,6 +999,16 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { + echo "Auto-generating release notes" + sh '''if [ "$(git tag --points-at HEAD)" != "" ]; then + echo "Existing tag points to current commit, suggesting no new LS changes" + AUTO_RELEASE_NOTES="No changes" + else + AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ + -d '{"tag_name":"'${META_TAG}'",\ + "target_commitish": "master"}' \ + | jq -r '.body' | sed 's|## What.s Changed||') + fi''' echo "Pushing New tag for current commit ${META_TAG}" sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ -d '{"tag":"'${META_TAG}'",\ @@ -989,12 +1019,19 @@ pipeline { echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json - echo '{"tag_name":"'${META_TAG}'",\ - "target_commitish": "master",\ - "name": "'${META_TAG}'",\ - "body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start - printf '","draft": false,"prerelease": false}' >> releasebody.json - paste -d'\\0' start releasebody.json > releasebody.json.done + jq -n \ + --arg tag_name "$META_TAG" \ + --arg target_commitish "master" \ + --arg ci_url "${CI_URL:-N/A}" \ + --arg ls_notes "$AUTO_RELEASE_NOTES" \ + --arg remote_notes "$(cat releasebody.json)" \ + '{ + "tag_name": $tag_name, + "target_commitish": $target_commitish, + "name": $tag_name, + "body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes), + "draft": false, + "prerelease": false }' > 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 ec4f05468ec125d0ca721543615f0adaace0d6e4 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 20 Oct 2025 16:24:03 +0100 Subject: [PATCH 2218/2257] Increase CI delay to account for slow arm startup --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 14e3367..9eba8f8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { CI_WEB='true' CI_PORT='8096' CI_SSL='false' - CI_DELAY='120' + CI_DELAY='300' CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index c3d60c8..772a90c 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -22,7 +22,7 @@ repo_vars: - CI_WEB='true' - CI_PORT='8096' - CI_SSL='false' - - CI_DELAY='120' + - CI_DELAY='300' - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='' From d5869d632e6cf169304e928c961365929d65c27f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Oct 2025 15:41:36 +0000 Subject: [PATCH 2219/2257] Bot Updating Package Versions --- package_versions.txt | 42 +++++++++++++++++++----------------------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3e9ce41..b1f63df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -AsyncKeyedLock 7.1.6 dotnet +AsyncKeyedLock 7.1.7 dotnet BDInfo 0.8.0 dotnet BitFaster.Caching 2.5.4 dotnet BlurHashSharp 1.4.0-pre.1 dotnet @@ -50,15 +50,15 @@ MediaBrowser.XbmcMetadata 24.4.0 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Data.Sqlite 9.0.9 dotnet -Microsoft.Data.Sqlite.Core 9.0.9 dotnet -Microsoft.EntityFrameworkCore 9.0.9 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.9 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.9 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.9 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.9 dotnet -Microsoft.Extensions.DependencyModel 9.0.9 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.9 dotnet +Microsoft.Data.Sqlite 9.0.10 dotnet +Microsoft.Data.Sqlite.Core 9.0.10 dotnet +Microsoft.EntityFrameworkCore 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.10 dotnet +Microsoft.Extensions.DependencyModel 9.0.10 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.10 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet @@ -141,23 +141,20 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025100605+ubu2404 deb +jellyfin 2025102005+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-2-noble deb -jellyfin-server 2025100605+ubu2404 deb -jellyfin-web 2025100605+ubu2404 deb +jellyfin-ffmpeg7 7.1.2-3-noble deb +jellyfin-server 2025102005+ubu2404 deb +jellyfin-web 2025102005+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb -libaacs0 0.11.1-2build1 deb libacl1 2.3.2-1build1.1 deb -libapparmor1 4.0.1really4.0.1-0ubuntu0.24.04.4 deb libapt-pkg6.0t64 2.8.3 deb libassuan0 2.5.6-1build1 deb libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb -libbdplus0 0.2.0-3build1 deb libblkid1 2.39.3-9ubuntu6.3 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb @@ -249,11 +246,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.10 deb +libsystemd0 255.4-1ubuntu8.11 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.10 deb +libudev1 255.4-1ubuntu8.11 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.3 deb @@ -308,12 +305,11 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.9 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.9 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.10 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.10 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -sudo 1.9.15p5-3ubuntu5.24.04.1 deb -systemd-standalone-sysusers 255.4-1ubuntu8.10 deb +systemd-standalone-sysusers 255.4-1ubuntu8.11 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb From a73edc70d6fb65c380f16c5892c9961c2e4ecf68 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 20 Oct 2025 10:47:08 +0100 Subject: [PATCH 2220/2257] Add libjemalloc as runtime dep --- .editorconfig | 0 .github/CONTRIBUTING.md | 0 .github/FUNDING.yml | 0 .github/ISSUE_TEMPLATE/config.yml | 0 .github/ISSUE_TEMPLATE/issue.bug.yml | 0 .github/ISSUE_TEMPLATE/issue.feature.yml | 0 .github/PULL_REQUEST_TEMPLATE.md | 0 .github/workflows/call_issue_pr_tracker.yml | 0 .github/workflows/call_issues_cron.yml | 0 .github/workflows/greetings.yml | 0 .github/workflows/permissions.yml | 0 Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- README.md | 1 + readme-vars.yml | 1 + 15 files changed, 8 insertions(+), 2 deletions(-) mode change 100755 => 100644 .editorconfig mode change 100755 => 100644 .github/CONTRIBUTING.md mode change 100755 => 100644 .github/FUNDING.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/config.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/issue.bug.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/issue.feature.yml mode change 100755 => 100644 .github/PULL_REQUEST_TEMPLATE.md mode change 100755 => 100644 .github/workflows/call_issue_pr_tracker.yml mode change 100755 => 100644 .github/workflows/call_issues_cron.yml mode change 100755 => 100644 .github/workflows/greetings.yml mode change 100755 => 100644 .github/workflows/permissions.yml diff --git a/.editorconfig b/.editorconfig old mode 100755 new mode 100644 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md old mode 100755 new mode 100644 diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/issue.feature.yml b/.github/ISSUE_TEMPLATE/issue.feature.yml old mode 100755 new mode 100644 diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md old mode 100755 new mode 100644 diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml old mode 100755 new mode 100644 diff --git a/Dockerfile b/Dockerfile index 9d5187d..752e67f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,9 +25,11 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - jellyfin=${JELLYFIN_RELEASE} \ + libjemalloc2 \ mesa-va-drivers \ xmlstarlet && \ + apt-get install -y --no-install-recommends \ + jellyfin=${JELLYFIN_RELEASE} && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index bf89228..14d8a11 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,11 +25,13 @@ RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ at \ - jellyfin=${JELLYFIN_RELEASE} \ + libjemalloc2 \ libomxil-bellagio0 \ libomxil-bellagio-bin \ libraspberrypi0 \ xmlstarlet && \ + apt-get install -y --no-install-recommends \ + jellyfin=${JELLYFIN_RELEASE} && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ diff --git a/README.md b/README.md index ea6a25d..a97db46 100644 --- a/README.md +++ b/README.md @@ -373,6 +373,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.10.25:** - Add libjemalloc as runtime dep. * **06.10.24:** - Fix fontconfig cache path. * **13.08.24:** - Rebase to Ubuntu Noble. * **01.05.24:** - Increase verbosity of device permissions fixing. diff --git a/readme-vars.yml b/readme-vars.yml index 657a465..0ad4bde 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -134,6 +134,7 @@ init_diagram: | "jellyfin:latest" <- Base Images # changelog changelogs: + - {date: "20.10.25:", desc: "Add libjemalloc as runtime dep."} - {date: "06.10.24:", desc: "Fix fontconfig cache path."} - {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."} - {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing."} From 4abb23e0655fc63db255545181cedc6bea209759 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Mon, 20 Oct 2025 16:23:15 +0100 Subject: [PATCH 2221/2257] Increase CI delay to account for slow arm startup --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2f646bf..7443957 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { CI_WEB='true' CI_PORT='8096' CI_SSL='false' - CI_DELAY='120' + CI_DELAY='300' CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index e407127..2c4a00c 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -21,7 +21,7 @@ repo_vars: - CI_WEB='true' - CI_PORT='8096' - CI_SSL='false' - - CI_DELAY='120' + - CI_DELAY='300' - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='' From cf6f7c28af2f7788d88c8f50234ba06e27f1c5b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Oct 2025 17:33:46 +0000 Subject: [PATCH 2222/2257] Bot Updating Package Versions --- package_versions.txt | 127 +++++++++++++++++++++++-------------------- 1 file changed, 67 insertions(+), 60 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 08be86c..5443b52 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,28 +1,32 @@ NAME VERSION TYPE -AsyncKeyedLock 7.0.2 dotnet +AsyncKeyedLock 7.1.7 dotnet BDInfo 0.8.0 dotnet -BlurHashSharp 1.3.4 dotnet -BlurHashSharp.SkiaSharp 1.3.4 dotnet +BitFaster.Caching 2.5.4 dotnet +BlurHashSharp 1.4.0-pre.1 dotnet +BlurHashSharp.SkiaSharp 1.4.0-pre.1 dotnet CommandLineParser 2.9.1 dotnet -Diacritics 3.3.29 dotnet +Diacritics 4.0.17 dotnet DiscUtils.Core 0.16.13 dotnet DiscUtils.Iso9660 0.16.13 dotnet DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.10.7.0 dotnet +Emby.Naming 10.11.0.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet -ExCSS 4.2.3 dotnet -HarfBuzzSharp 7.3.0.3 dotnet -HarfBuzzSharp.NativeAssets.Linux 7.3.0.3 dotnet +ExCSS 4.3.1 dotnet +HarfBuzzSharp 8.3.0.1 dotnet +HarfBuzzSharp.NativeAssets.Linux 8.3.1.1 dotnet ICU4N 60.1.0-alpha.356 dotnet ICU4N.Transliterator 60.1.0-alpha.356 dotnet +Ignore 0.2.1 dotnet J2N 2.0.0 dotnet Jellyfin.Api 24.4.0 dotnet Jellyfin.Common 24.4.0 dotnet Jellyfin.Controller 24.4.0 dotnet Jellyfin.Data 24.4.0 dotnet +Jellyfin.Database.Implementations 24.4.0 dotnet +Jellyfin.Database.Providers.Sqlite 24.4.0 dotnet Jellyfin.Drawing 24.4.0 dotnet Jellyfin.Drawing.Skia 24.4.0 dotnet Jellyfin.Extensions 24.4.0 dotnet @@ -34,66 +38,68 @@ Jellyfin.Naming 24.4.0 Jellyfin.Networking 24.4.0 dotnet Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet -LrcParser 2025.228.1 dotnet -MediaBrowser.Common 10.10.7.0 dotnet -MediaBrowser.Controller 10.10.7.0 dotnet +LrcParser 2025.623.0 dotnet +MediaBrowser.Common 10.11.0.0 dotnet +MediaBrowser.Controller 10.11.0.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.10.7.0 dotnet +MediaBrowser.Model 10.11.0.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet -Microsoft.Data.Sqlite 8.0.11 dotnet -Microsoft.Data.Sqlite.Core 8.0.11 dotnet -Microsoft.EntityFrameworkCore 8.0.11 dotnet -Microsoft.EntityFrameworkCore.Abstractions 8.0.11 dotnet -Microsoft.EntityFrameworkCore.Relational 8.0.11 dotnet -Microsoft.EntityFrameworkCore.Sqlite 8.0.11 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.11 dotnet -Microsoft.Extensions.DependencyModel 8.0.2 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.11 dotnet +Microsoft.Data.Sqlite 9.0.10 dotnet +Microsoft.Data.Sqlite.Core 9.0.10 dotnet +Microsoft.EntityFrameworkCore 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.10 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.10 dotnet +Microsoft.Extensions.DependencyModel 9.0.10 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.10 dotnet Microsoft.OpenApi 1.2.3 dotnet -Microsoft.Win32.SystemEvents 8.0.0 dotnet -Mono.Nat 3.0.4 dotnet -NEbml 0.12.0 dotnet -Newtonsoft.Json 13.0.3 dotnet +Microsoft.Win32.SystemEvents 9.0.2 dotnet +Morestachio 5.0.1.631 dotnet +NEbml 1.1.0.5 dotnet +Newtonsoft.Json 13.0.4 dotnet PlaylistsNET 1.4.1 dotnet -SQLitePCLRaw.bundle_e_sqlite3 2.1.6 dotnet -SQLitePCLRaw.core 2.1.6 dotnet -SQLitePCLRaw.lib.e_sqlite3 2.1.6 dotnet -SQLitePCLRaw.provider.e_sqlite3 2.1.6 dotnet -Serilog 4.1.0 dotnet -Serilog.AspNetCore 8.0.3 dotnet +Polly 8.6.4 dotnet +Polly.Core 8.6.4 dotnet +SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet +SQLitePCLRaw.core 2.1.10 dotnet +SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet +SQLitePCLRaw.provider.e_sqlite3 2.1.10 dotnet +Serilog 4.2.0 dotnet +Serilog.AspNetCore 9.0.0 dotnet Serilog.Enrichers.Thread 4.0.0 dotnet -Serilog.Extensions.Hosting 8.0.0 dotnet -Serilog.Extensions.Logging 8.0.0 dotnet -Serilog.Formatting.Compact 2.0.0 dotnet -Serilog.Settings.Configuration 8.0.4 dotnet +Serilog.Expressions 5.0.0 dotnet +Serilog.Extensions.Hosting 9.0.0 dotnet +Serilog.Extensions.Logging 9.0.0 dotnet +Serilog.Formatting.Compact 3.0.0 dotnet +Serilog.Settings.Configuration 9.0.0 dotnet Serilog.Sinks.Async 2.1.0 dotnet Serilog.Sinks.Console 6.0.0 dotnet -Serilog.Sinks.Debug 2.0.0 dotnet -Serilog.Sinks.File 6.0.0 dotnet +Serilog.Sinks.Debug 3.0.0 dotnet +Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet -ShimSkiaSharp 2.0.0.1 dotnet -SkiaSharp 2.88.9 dotnet -SkiaSharp.HarfBuzz 2.88.9 dotnet -SkiaSharp.NativeAssets.Linux 2.88.9 dotnet -Svg.Custom 2.0.0.1 dotnet -Svg.Model 2.0.0.1 dotnet -Svg.Skia 2.0.0.1 dotnet +ShimSkiaSharp 3.2.1 dotnet +SkiaSharp 3.116.1 dotnet +SkiaSharp.HarfBuzz 3.116.1 dotnet +SkiaSharp.NativeAssets.Linux 3.116.1 dotnet +Svg.Custom 3.2.1 dotnet +Svg.Model 3.2.1 dotnet +Svg.Skia 3.2.1 dotnet Swashbuckle.AspNetCore 6.2.3 dotnet Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet -System.Drawing.Common 8.0.8 dotnet -System.Linq.Async 6.0.1 dotnet -TMDbLib 2.2.0 dotnet +System.Drawing.Common 9.0.2 dotnet +System.Linq.Async 6.0.3 dotnet +TMDbLib 2.3.0 dotnet TagLibSharp 2.3.0 dotnet -UTF.Unknown 2.5.1 dotnet +UTF.Unknown 2.6.0 dotnet Ude.NetStandard 1.2.0 dotnet adduser 3.137ubuntu1 deb apt 2.8.3 deb @@ -134,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.10.7+ubu2404 deb +jellyfin 10.11.0+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-2-noble deb -jellyfin-server 10.10.7+ubu2404 deb -jellyfin-web 10.10.7+ubu2404 deb +jellyfin-ffmpeg7 7.1.2-3-noble deb +jellyfin-server 10.11.0+ubu2404 deb +jellyfin-web 10.11.0+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -183,6 +189,7 @@ libgssapi-krb5-2 1.20.1-6ubunt libhogweed6t64 3.9.1-2.2build1.1 deb libicu74 74.2-1ubuntu3.1 deb libidn2-0 2.3.7-2build1.1 deb +libjemalloc2 5.3.0-2build1 deb libjq1 1.7.1-3ubuntu0.24.04.1 deb libk5crypto3 1.20.1-6ubuntu2.6 deb libkeyutils1 1.6.3-3build1 deb @@ -223,7 +230,7 @@ librtmp1 2.4+20151223. libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb -libse 4.0.8 dotnet +libse 4.0.12 dotnet libseccomp2 2.5.5-1ubuntu3.1 deb libselinux1 3.5-2ubuntu2.1 deb libsemanage-common 3.5-1build5 deb @@ -238,11 +245,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2ubuntu0.1 deb libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.10 deb +libsystemd0 255.4-1ubuntu8.11 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.10 deb +libudev1 255.4-1ubuntu8.11 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.3 deb @@ -297,11 +304,11 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 8.0.14 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 8.0.14 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.10 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.10 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.10 deb +systemd-standalone-sysusers 255.4-1ubuntu8.11 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb @@ -309,6 +316,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 6.20.0 dotnet +z440.atl.core 7.5.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 11698332db7648d5d847dc287087520c450d9dbb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Oct 2025 12:43:58 +0000 Subject: [PATCH 2223/2257] Bot Updating Templated Files --- Jenkinsfile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7443957..b78bdb9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -283,7 +283,7 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.20 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache python3 && \ python3 -m venv /lsiopy && \ pip install --no-cache-dir -U pip && \ @@ -933,10 +933,10 @@ pipeline { fi done docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:latest -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done ''' @@ -962,26 +962,26 @@ pipeline { fi done docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-latest -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-latest -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done ''' From 5c7fb1a3ff5757c42351418875a1e8e4b156abab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Oct 2025 13:03:38 +0000 Subject: [PATCH 2224/2257] Bot Updating Templated Files --- Jenkinsfile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9eba8f8..cc14531 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -283,7 +283,7 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.20 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache python3 && \ python3 -m venv /lsiopy && \ pip install --no-cache-dir -U pip && \ @@ -933,10 +933,10 @@ pipeline { 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} || \ - { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done ''' @@ -962,26 +962,26 @@ pipeline { 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} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-nightly -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} || \ - { [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]] && exit 1; } + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done ''' From fad5b7be06d293f3e8f432a850d3d5c50abb2fea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 27 Oct 2025 03:14:44 +0000 Subject: [PATCH 2225/2257] Bot Updating Templated Files --- Jenkinsfile | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b78bdb9..9a4d392 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -999,25 +999,25 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - echo "Auto-generating release notes" - sh '''if [ "$(git tag --points-at HEAD)" != "" ]; then - echo "Existing tag points to current commit, suggesting no new LS changes" - AUTO_RELEASE_NOTES="No changes" - else - AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ - -d '{"tag_name":"'${META_TAG}'",\ - "target_commitish": "master"}' \ - | jq -r '.body' | sed 's|## What.s Changed||') - fi''' - echo "Pushing New tag for current commit ${META_TAG}" - sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ - -d '{"tag":"'${META_TAG}'",\ - "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\ - "type": "commit",\ - "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' - echo "Pushing New release for Tag" sh '''#! /bin/bash + echo "Auto-generating release notes" + if [ "$(git tag --points-at HEAD)" != "" ]; then + echo "Existing tag points to current commit, suggesting no new LS changes" + AUTO_RELEASE_NOTES="No changes" + else + AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ + -d '{"tag_name":"'${META_TAG}'",\ + "target_commitish": "master"}' \ + | jq -r '.body' | sed 's|## What.s Changed||') + fi + echo "Pushing New tag for current commit ${META_TAG}" + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ + -d '{"tag":"'${META_TAG}'",\ + "object": "'${COMMIT_SHA}'",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\ + "type": "commit",\ + "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' + echo "Pushing New release for Tag" echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json jq -n \ --arg tag_name "$META_TAG" \ @@ -1032,7 +1032,8 @@ pipeline { "body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes), "draft": false, "prerelease": false }' > 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''' + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done + ''' } } // Add protection to the release branch From 434e4bef4a54b9553234b26b4848406722551fe2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 27 Oct 2025 03:19:19 +0000 Subject: [PATCH 2226/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5443b52..e0a9b78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.0.0 dotnet +Emby.Naming 10.11.1.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -39,11 +39,11 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.0.0 dotnet -MediaBrowser.Controller 10.11.0.0 dotnet +MediaBrowser.Common 10.11.1.0 dotnet +MediaBrowser.Controller 10.11.1.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.0.0 dotnet +MediaBrowser.Model 10.11.1.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.11.0+ubu2404 deb +jellyfin 10.11.1+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-3-noble deb -jellyfin-server 10.11.0+ubu2404 deb -jellyfin-web 10.11.0+ubu2404 deb +jellyfin-server 10.11.1+ubu2404 deb +jellyfin-web 10.11.1+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -316,6 +316,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.5.0 dotnet +z440.atl.core 7.6.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From f98bd6a9391d1876630e6561a81ed9355f346c86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 27 Oct 2025 06:21:23 +0000 Subject: [PATCH 2227/2257] Bot Updating Templated Files --- Jenkinsfile | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cc14531..e02b6d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -999,25 +999,25 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - echo "Auto-generating release notes" - sh '''if [ "$(git tag --points-at HEAD)" != "" ]; then - echo "Existing tag points to current commit, suggesting no new LS changes" - AUTO_RELEASE_NOTES="No changes" - else - AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ - -d '{"tag_name":"'${META_TAG}'",\ - "target_commitish": "nightly"}' \ - | jq -r '.body' | sed 's|## What.s Changed||') - fi''' - echo "Pushing New tag for current commit ${META_TAG}" - sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ - -d '{"tag":"'${META_TAG}'",\ - "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ - "type": "commit",\ - "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' - echo "Pushing New release for Tag" sh '''#! /bin/bash + echo "Auto-generating release notes" + if [ "$(git tag --points-at HEAD)" != "" ]; then + echo "Existing tag points to current commit, suggesting no new LS changes" + AUTO_RELEASE_NOTES="No changes" + else + AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ + -d '{"tag_name":"'${META_TAG}'",\ + "target_commitish": "nightly"}' \ + | jq -r '.body' | sed 's|## What.s Changed||') + fi + echo "Pushing New tag for current commit ${META_TAG}" + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ + -d '{"tag":"'${META_TAG}'",\ + "object": "'${COMMIT_SHA}'",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ + "type": "commit",\ + "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' + echo "Pushing New release for Tag" echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json jq -n \ --arg tag_name "$META_TAG" \ @@ -1032,7 +1032,8 @@ pipeline { "body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes), "draft": false, "prerelease": true }' > releasebody.json.done - curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done + ''' } } // Add protection to the release branch From 1bdf25152186482471413c53b3a35bc0ac5571ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 27 Oct 2025 06:25:51 +0000 Subject: [PATCH 2228/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b1f63df..de9dbbe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.0.0 dotnet +Emby.Naming 10.12.0.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -40,11 +40,11 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.0.0 dotnet -MediaBrowser.Controller 10.11.0.0 dotnet +MediaBrowser.Common 10.12.0.0 dotnet +MediaBrowser.Controller 10.12.0.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.0.0 dotnet +MediaBrowser.Model 10.12.0.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025102005+ubu2404 deb +jellyfin 2025102705+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-3-noble deb -jellyfin-server 2025102005+ubu2404 deb -jellyfin-web 2025102005+ubu2404 deb +jellyfin-server 2025102705+ubu2404 deb +jellyfin-web 2025102705+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -317,6 +317,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.5.0 dotnet +z440.atl.core 7.6.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 4dcbb8de2a03805a2448d4149e3a06249b71344d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Nov 2025 03:20:12 +0000 Subject: [PATCH 2229/2257] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e0a9b78..c7eaf56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.1.0 dotnet +Emby.Naming 10.11.2.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -39,11 +39,11 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.1.0 dotnet -MediaBrowser.Controller 10.11.1.0 dotnet +MediaBrowser.Common 10.11.2.0 dotnet +MediaBrowser.Controller 10.11.2.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.1.0 dotnet +MediaBrowser.Model 10.11.2.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.11.1+ubu2404 deb +jellyfin 10.11.2+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-3-noble deb -jellyfin-server 10.11.1+ubu2404 deb -jellyfin-web 10.11.1+ubu2404 deb +jellyfin-server 10.11.2+ubu2404 deb +jellyfin-web 10.11.2+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -275,7 +275,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.5 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.6 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From f5737ce764387c278952c2ef16eb0fd72990ac91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Nov 2025 06:23:41 +0000 Subject: [PATCH 2230/2257] 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 de9dbbe..15d3bfb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025102705+ubu2404 deb +jellyfin 2025110305+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-3-noble deb -jellyfin-server 2025102705+ubu2404 deb -jellyfin-web 2025102705+ubu2404 deb +jellyfin-server 2025110305+ubu2404 deb +jellyfin-web 2025110305+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -276,7 +276,7 @@ libxcb-xfixes0 1.15-1ubuntu2 libxcb1 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu6 deb libxext6 2:1.3.4-1build2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.5 deb +libxml2 2.9.14+dfsg-1.3ubuntu3.6 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb From 58af170889740244e175647734423a839756a4aa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 10 Nov 2025 06:23:56 +0000 Subject: [PATCH 2231/2257] 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 15d3bfb..0e2aa23 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -80,7 +80,7 @@ Serilog.Extensions.Logging 9.0.0 Serilog.Formatting.Compact 3.0.0 dotnet Serilog.Settings.Configuration 9.0.0 dotnet Serilog.Sinks.Async 2.1.0 dotnet -Serilog.Sinks.Console 6.0.0 dotnet +Serilog.Sinks.Console 6.1.1 dotnet Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025110305+ubu2404 deb +jellyfin 2025111005+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-3-noble deb -jellyfin-server 2025110305+ubu2404 deb -jellyfin-web 2025110305+ubu2404 deb +jellyfin-server 2025111005+ubu2404 deb +jellyfin-web 2025111005+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -243,7 +243,7 @@ libsharpyuv0 1.3.2-0.4buil libsmartcols1 2.39.3-9ubuntu6.3 deb libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb -libssh-4 0.10.6-2ubuntu0.1 deb +libssh-4 0.10.6-2ubuntu0.2 deb libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.11 deb @@ -317,6 +317,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.6.0 dotnet +z440.atl.core 7.7.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 6d48589dd3f898b707e15a1397d3362f0a5d5ef6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Nov 2025 13:04:41 +0000 Subject: [PATCH 2232/2257] 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 c7eaf56..9d43747 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -142,7 +142,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.11.2+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-3-noble deb +jellyfin-ffmpeg7 7.1.2-4-noble deb jellyfin-server 10.11.2+ubu2404 deb jellyfin-web 10.11.2+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb @@ -242,7 +242,7 @@ libsharpyuv0 1.3.2-0.4buil libsmartcols1 2.39.3-9ubuntu6.3 deb libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb -libssh-4 0.10.6-2ubuntu0.1 deb +libssh-4 0.10.6-2ubuntu0.2 deb libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.11 deb From 6374455f12cb1e609eb1e1f83da61557741be344 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Nov 2025 13:05:09 +0000 Subject: [PATCH 2233/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0e2aa23..ef0f4bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -143,7 +143,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 2025111005+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-3-noble deb +jellyfin-ffmpeg7 7.1.2-4-noble deb jellyfin-server 2025111005+ubu2404 deb jellyfin-web 2025111005+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb From 868639323e08a6e1a67b1c09f2085b5afad18c1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Nov 2025 23:14:37 +0000 Subject: [PATCH 2234/2257] 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 9d43747..3fcc412 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.2.0 dotnet +Emby.Naming 10.11.3.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -39,11 +39,11 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.2.0 dotnet -MediaBrowser.Controller 10.11.2.0 dotnet +MediaBrowser.Common 10.11.3.0 dotnet +MediaBrowser.Controller 10.11.3.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.2.0 dotnet +MediaBrowser.Model 10.11.3.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.11.2+ubu2404 deb +jellyfin 10.11.3+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-4-noble deb -jellyfin-server 10.11.2+ubu2404 deb -jellyfin-web 10.11.2+ubu2404 deb +jellyfin-server 10.11.3+ubu2404 deb +jellyfin-web 10.11.3+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -304,8 +304,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.10 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.10 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.11 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.11 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb systemd-standalone-sysusers 255.4-1ubuntu8.11 deb From 586a721203ecba0831f0b5a9d741a8efb9245f06 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 17 Nov 2025 06:23:29 +0000 Subject: [PATCH 2235/2257] 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 ef0f4bb..c04dc68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025111005+ubu2404 deb +jellyfin 2025111705+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-4-noble deb -jellyfin-server 2025111005+ubu2404 deb -jellyfin-web 2025111005+ubu2404 deb +jellyfin-server 2025111705+ubu2404 deb +jellyfin-web 2025111705+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -305,8 +305,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.10 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.10 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.11 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.11 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb systemd-standalone-sysusers 255.4-1ubuntu8.11 deb From 0f5ef2769e2e758af8061b77c38689464d08f661 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Nov 2025 05:15:20 +0000 Subject: [PATCH 2236/2257] Bot Updating Templated Files --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e02b6d6..1b0988e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -906,6 +906,8 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ + -e COMMIT_SHA=\"${COMMIT_SHA}\" \ + -e BUILD_NUMBER=\"${BUILD_NUMBER}\" \ -t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \ python3 test_build.py''' } From 5599599e65dc7413614ec9cb7d5193a0e958fe2f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Nov 2025 05:19:53 +0000 Subject: [PATCH 2237/2257] 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 c04dc68..cc785ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -50,15 +50,15 @@ MediaBrowser.XbmcMetadata 24.4.0 MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Data.Sqlite 9.0.10 dotnet -Microsoft.Data.Sqlite.Core 9.0.10 dotnet -Microsoft.EntityFrameworkCore 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.10 dotnet -Microsoft.Extensions.DependencyModel 9.0.10 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.10 dotnet +Microsoft.Data.Sqlite 9.0.11 dotnet +Microsoft.Data.Sqlite.Core 9.0.11 dotnet +Microsoft.EntityFrameworkCore 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.11 dotnet +Microsoft.Extensions.DependencyModel 9.0.11 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.11 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025111705+ubu2404 deb +jellyfin 2025112405+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-4-noble deb -jellyfin-server 2025111705+ubu2404 deb -jellyfin-web 2025111705+ubu2404 deb +jellyfin-server 2025112405+ubu2404 deb +jellyfin-web 2025112405+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -170,10 +170,10 @@ libcrypt1 1:4.4.36-4bui libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb -libdrm-amdgpu1 2.4.122-1~ubuntu0.24.04.1 deb -libdrm-common 2.4.122-1~ubuntu0.24.04.1 deb -libdrm-intel1 2.4.122-1~ubuntu0.24.04.1 deb -libdrm2 2.4.122-1~ubuntu0.24.04.1 deb +libdrm-amdgpu1 2.4.122-1~ubuntu0.24.04.2 deb +libdrm-common 2.4.122-1~ubuntu0.24.04.2 deb +libdrm-intel1 2.4.122-1~ubuntu0.24.04.2 deb +libdrm2 2.4.122-1~ubuntu0.24.04.2 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.3 deb @@ -317,6 +317,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.7.0 dotnet +z440.atl.core 7.9.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 79e24906d1f2c1e8245c8b9ea8144bd2a8976374 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Nov 2025 13:02:45 +0000 Subject: [PATCH 2238/2257] Bot Updating Templated Files --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9a4d392..1b852ef 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -906,6 +906,8 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ + -e COMMIT_SHA=\"${COMMIT_SHA}\" \ + -e BUILD_NUMBER=\"${BUILD_NUMBER}\" \ -t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \ python3 test_build.py''' } From cf2894fe15ca4977f51d0b7a06dd865be7d35cf3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Nov 2025 13:09:50 +0000 Subject: [PATCH 2239/2257] 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 3fcc412..622aabe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -169,10 +169,10 @@ libcrypt1 1:4.4.36-4bui libcurl4t64 8.5.0-2ubuntu10.6 deb libdb5.3t64 5.3.28+dfsg2-7 deb libdebconfclient0 0.271ubuntu3 deb -libdrm-amdgpu1 2.4.122-1~ubuntu0.24.04.1 deb -libdrm-common 2.4.122-1~ubuntu0.24.04.1 deb -libdrm-intel1 2.4.122-1~ubuntu0.24.04.1 deb -libdrm2 2.4.122-1~ubuntu0.24.04.1 deb +libdrm-amdgpu1 2.4.122-1~ubuntu0.24.04.2 deb +libdrm-common 2.4.122-1~ubuntu0.24.04.2 deb +libdrm-intel1 2.4.122-1~ubuntu0.24.04.2 deb +libdrm2 2.4.122-1~ubuntu0.24.04.2 deb libedit2 3.1-20230828-1build1 deb libelf1t64 0.190-1.1ubuntu0.1 deb libexpat1 2.6.1-2ubuntu0.3 deb From 758600658bd387e0e5951f95689876f1a6f6008c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Dec 2025 03:47:17 +0000 Subject: [PATCH 2240/2257] 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 622aabe..3f59539 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.3.0 dotnet +Emby.Naming 10.11.4.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -39,11 +39,11 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.3.0 dotnet -MediaBrowser.Controller 10.11.3.0 dotnet +MediaBrowser.Common 10.11.4.0 dotnet +MediaBrowser.Controller 10.11.4.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.3.0 dotnet +MediaBrowser.Model 10.11.4.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.11.3+ubu2404 deb +jellyfin 10.11.4+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-4-noble deb -jellyfin-server 10.11.3+ubu2404 deb -jellyfin-web 10.11.3+ubu2404 deb +jellyfin-server 10.11.4+ubu2404 deb +jellyfin-web 10.11.4+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb From 2366e8217b69118606106ce0aefcb107d2278080 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Dec 2025 05:25:24 +0000 Subject: [PATCH 2241/2257] 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 cc785ce..d70e84b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -65,8 +65,8 @@ Morestachio 5.0.1.631 NEbml 1.1.0.5 dotnet Newtonsoft.Json 13.0.4 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.6.4 dotnet -Polly.Core 8.6.4 dotnet +Polly 8.6.5 dotnet +Polly.Core 8.6.5 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025112405+ubu2404 deb +jellyfin 2025120105+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.2-4-noble deb -jellyfin-server 2025112405+ubu2404 deb -jellyfin-web 2025112405+ubu2404 deb +jellyfin-server 2025120105+ubu2404 deb +jellyfin-web 2025120105+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb From 6b2fb595f215702ab2a32b7270dc5958c77ade43 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Dec 2025 06:25:26 +0000 Subject: [PATCH 2242/2257] 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 d70e84b..901743e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025120105+ubu2404 deb +jellyfin 2025120805+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-4-noble deb -jellyfin-server 2025120105+ubu2404 deb -jellyfin-web 2025120105+ubu2404 deb +jellyfin-ffmpeg7 7.1.3-1-noble deb +jellyfin-server 2025120805+ubu2404 deb +jellyfin-web 2025120805+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb From 22f3da4e706a534acd82b5e611e338238a834d90 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Dec 2025 13:08:31 +0000 Subject: [PATCH 2243/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3f59539..5311ea8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -142,7 +142,7 @@ hostname 3.23+nmu2ubun init-system-helpers 1.66ubuntu1 deb jellyfin 10.11.4+ubu2404 deb jellyfin 24.04 dotnet -jellyfin-ffmpeg7 7.1.2-4-noble deb +jellyfin-ffmpeg7 7.1.3-1-noble deb jellyfin-server 10.11.4+ubu2404 deb jellyfin-web 10.11.4+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb From aa7b822ca8a89d21ae3a8d33bc67fe2ac7c80a03 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Tue, 9 Dec 2025 12:45:14 -0500 Subject: [PATCH 2244/2257] use device perm fixer from baseimage --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + .../dependencies.d/init-jellyfin-config | 0 .../dependencies.d/init-jellyfin-video | 0 .../s6-rc.d/init-jellyfin-video/run | 42 ------------------- .../s6-rc.d/init-jellyfin-video/type | 1 - .../s6-overlay/s6-rc.d/init-jellyfin-video/up | 1 - .../user/contents.d/init-jellyfin-video | 0 8 files changed, 2 insertions(+), 44 deletions(-) rename root/etc/s6-overlay/s6-rc.d/{init-jellyfin-video => init-config-end}/dependencies.d/init-jellyfin-config (100%) delete mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video delete mode 100755 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run delete mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type delete mode 100644 root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up delete mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video diff --git a/Dockerfile b/Dockerfile index 752e67f..968d8b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" # https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 ENV MALLOC_TRIM_THRESHOLD_=131072 +ENV ATTACHED_DEVICES_PERMS="/dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c" RUN \ echo "**** install jellyfin *****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 14d8a11..f16fc19 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -14,6 +14,7 @@ ARG DEBIAN_FRONTEND="noninteractive" ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" # https://github.com/dlemstra/Magick.NET/issues/707#issuecomment-785351620 ENV MALLOC_TRIM_THRESHOLD_=131072 +ENV ATTACHED_DEVICES_PERMS="/dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c" RUN \ echo "**** install jellyfin *****" && \ diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-config similarity index 100% rename from root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/dependencies.d/init-jellyfin-config rename to root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-config diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-jellyfin-video deleted file mode 100644 index e69de29..0000000 diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run deleted file mode 100755 index d62bc5e..0000000 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/with-contenv bash -# shellcheck shell=bash - -FILES=$(find /dev/dri /dev/dvb /dev/vchiq /dev/vc-mem /dev/video1? -type c -print 2>/dev/null) - -for i in ${FILES}; do - VIDEO_GID=$(stat -c '%g' "${i}") - VIDEO_UID=$(stat -c '%u' "${i}") - # check if user matches device - if id -u abc | grep -qw "${VIDEO_UID}"; then - echo "**** permissions for ${i} are good ****" - else - # check if group matches and that device has group rw - if id -G abc | grep -qw "${VIDEO_GID}" && [[ $(stat -c '%A' "${i}" | cut -b 5,6) == "rw" ]]; then - echo "**** permissions for ${i} are good ****" - # check if device needs to be added to video group - elif ! id -G abc | grep -qw "${VIDEO_GID}"; then - # check if video group needs to be created - VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}') - if [[ -z "${VIDEO_NAME}" ]]; then - VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-z0-9' | head -c4)" - groupadd "${VIDEO_NAME}" - groupmod -g "${VIDEO_GID}" "${VIDEO_NAME}" - echo "**** creating video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" - fi - echo "**** adding ${i} to video group ${VIDEO_NAME} with id ${VIDEO_GID} ****" - usermod -a -G "${VIDEO_NAME}" abc - fi - # check if device has group rw - if [[ $(stat -c '%A' "${i}" | cut -b 5,6) != "rw" ]]; then - echo -e "**** The device ${i} does not have group read/write permissions, attempting to fix inside the container. ****" - chmod g+rw "${i}" - fi - fi -done - -# openmax lib loading -if [[ -e "/opt/vc/lib" ]] && [[ ! -e "/etc/ld.so.conf.d/00-vmcs.conf" ]]; then - echo "[jellyfin-init] Pi Libs detected loading" - echo "/opt/vc/lib" > "/etc/ld.so.conf.d/00-vmcs.conf" - ldconfig -fi diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type deleted file mode 100644 index bdd22a1..0000000 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/type +++ /dev/null @@ -1 +0,0 @@ -oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up b/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up deleted file mode 100644 index 9c16049..0000000 --- a/root/etc/s6-overlay/s6-rc.d/init-jellyfin-video/up +++ /dev/null @@ -1 +0,0 @@ -/etc/s6-overlay/s6-rc.d/init-jellyfin-video/run diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-jellyfin-video deleted file mode 100644 index e69de29..0000000 From 590d9c3eebb6c2fc60bb8105bc163ab5a4708e09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Dec 2025 16:35:02 +0000 Subject: [PATCH 2245/2257] Bot Updating Templated Files --- readme-vars.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 0ad4bde..1f8845a 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -108,13 +108,12 @@ init_diagram: | init-os-end -> init-config init-config -> init-config-end init-crontab-config -> init-config-end - init-jellyfin-video -> init-config-end + init-jellyfin-config -> init-config-end init-config -> init-crontab-config init-mods-end -> init-custom-files init-adduser -> init-device-perms base -> init-envfile init-config -> init-jellyfin-config - init-jellyfin-config -> init-jellyfin-video base -> init-migrations init-config-end -> init-mods init-mods-package-install -> init-mods-end From 1826c6ad978ead60b5778754bd0d86540f99f502 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Dec 2025 16:39:31 +0000 Subject: [PATCH 2246/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5311ea8..8b47192 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -222,7 +222,7 @@ libpam0g 1.5.3-5ubuntu libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb -libpng16-16t64 1.6.43-5build1 deb +libpng16-16t64 1.6.43-5ubuntu0.1 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb From 3c66b9697c0206b7b1c7a6e591e9ce4aaf200c5b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Dec 2025 03:27:31 +0000 Subject: [PATCH 2247/2257] Bot Updating Package Versions --- package_versions.txt | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8b47192..9da5a16 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -AsyncKeyedLock 7.1.7 dotnet +AsyncKeyedLock 7.1.8 dotnet BDInfo 0.8.0 dotnet BitFaster.Caching 2.5.4 dotnet BlurHashSharp 1.4.0-pre.1 dotnet @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.4.0 dotnet +Emby.Naming 10.11.5.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -39,33 +39,33 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.4.0 dotnet -MediaBrowser.Controller 10.11.4.0 dotnet +MediaBrowser.Common 10.11.5.0 dotnet +MediaBrowser.Controller 10.11.5.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.4.0 dotnet +MediaBrowser.Model 10.11.5.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet MetaBrainz.Common.Json 6.0.2 dotnet MetaBrainz.MusicBrainz 6.1.0 dotnet -Microsoft.Data.Sqlite 9.0.10 dotnet -Microsoft.Data.Sqlite.Core 9.0.10 dotnet -Microsoft.EntityFrameworkCore 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Abstractions 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Relational 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Sqlite 9.0.10 dotnet -Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.10 dotnet -Microsoft.Extensions.DependencyModel 9.0.10 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.10 dotnet +Microsoft.Data.Sqlite 9.0.11 dotnet +Microsoft.Data.Sqlite.Core 9.0.11 dotnet +Microsoft.EntityFrameworkCore 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Abstractions 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Relational 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Sqlite 9.0.11 dotnet +Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.11 dotnet +Microsoft.Extensions.DependencyModel 9.0.11 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.11 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet NEbml 1.1.0.5 dotnet Newtonsoft.Json 13.0.4 dotnet PlaylistsNET 1.4.1 dotnet -Polly 8.6.4 dotnet -Polly.Core 8.6.4 dotnet +Polly 8.6.5 dotnet +Polly.Core 8.6.5 dotnet SQLitePCLRaw.bundle_e_sqlite3 2.1.10 dotnet SQLitePCLRaw.core 2.1.10 dotnet SQLitePCLRaw.lib.e_sqlite3 2.1.10 dotnet @@ -79,7 +79,7 @@ Serilog.Extensions.Logging 9.0.0 Serilog.Formatting.Compact 3.0.0 dotnet Serilog.Settings.Configuration 9.0.0 dotnet Serilog.Sinks.Async 2.1.0 dotnet -Serilog.Sinks.Console 6.0.0 dotnet +Serilog.Sinks.Console 6.1.1 dotnet Serilog.Sinks.Debug 3.0.0 dotnet Serilog.Sinks.File 7.0.0 dotnet Serilog.Sinks.Graylog 3.1.1 dotnet @@ -140,11 +140,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.11.4+ubu2404 deb +jellyfin 10.11.5+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 10.11.4+ubu2404 deb -jellyfin-web 10.11.4+ubu2404 deb +jellyfin-server 10.11.5+ubu2404 deb +jellyfin-web 10.11.5+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -316,6 +316,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.3 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.6.0 dotnet +z440.atl.core 7.9.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From e45daa848f0a4c839c2d4b4dbfae78604ace495f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Dec 2025 12:31:34 +0000 Subject: [PATCH 2248/2257] 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 901743e..89341a1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -AsyncKeyedLock 7.1.7 dotnet +AsyncKeyedLock 7.1.8 dotnet BDInfo 0.8.0 dotnet BitFaster.Caching 2.5.4 dotnet BlurHashSharp 1.4.0-pre.1 dotnet @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025120805+ubu2404 deb +jellyfin 2025121505+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 2025120805+ubu2404 deb -jellyfin-web 2025120805+ubu2404 deb +jellyfin-server 2025121505+ubu2404 deb +jellyfin-web 2025121505+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -223,7 +223,7 @@ libpam0g 1.5.3-5ubuntu libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb -libpng16-16t64 1.6.43-5build1 deb +libpng16-16t64 1.6.43-5ubuntu0.1 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb From 5501c67c0a7be499c720e763b5d5fd6a4bd9cf5e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Dec 2025 05:21:30 +0000 Subject: [PATCH 2249/2257] 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 89341a1..c6b0be5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -109,7 +109,7 @@ at 3.2.5-2.1ubun base-files 13ubuntu10.3 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.3 deb +bsdutils 1:2.39.3-9ubuntu6.4 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6.1 deb @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025121505+ubu2404 deb +jellyfin 2025122205+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 2025121505+ubu2404 deb -jellyfin-web 2025121505+ubu2404 deb +jellyfin-server 2025122205+ubu2404 deb +jellyfin-web 2025122205+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -155,7 +155,7 @@ libassuan0 2.5.6-1build1 libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb -libblkid1 2.39.3-9ubuntu6.3 deb +libblkid1 2.39.3-9ubuntu6.4 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb @@ -203,7 +203,7 @@ libllvm20 1:20.1.2-0ubu liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb -libmount1 2.39.3-9ubuntu6.3 deb +libmount1 2.39.3-9ubuntu6.4 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb @@ -240,7 +240,7 @@ libsensors-config 1:3.6.0-9buil libsensors5 1:3.6.0-9build1 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.3 deb +libsmartcols1 2.39.3-9ubuntu6.4 deb libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.2 deb @@ -253,7 +253,7 @@ libtinfo6 6.4+20240113- libudev1 255.4-1ubuntu8.11 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.3 deb +libuuid1 2.39.3-9ubuntu6.4 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -290,7 +290,7 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-libgallium 25.0.7-0ubuntu0.24.04.2 deb mesa-va-drivers 25.0.7-0ubuntu0.24.04.2 deb -mount 2.39.3-9ubuntu6.3 deb +mount 2.39.3-9ubuntu6.4 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb @@ -315,7 +315,7 @@ tar 1.35+dfsg-3bu tzdata 2025b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb -util-linux 2.39.3-9ubuntu6.3 deb +util-linux 2.39.3-9ubuntu6.4 deb xmlstarlet 1.6.1-4 deb z440.atl.core 7.9.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet From 45d9d8536cd4928b6d18bb3ba84ef21938d50ace Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 23 Dec 2025 13:09:25 +0000 Subject: [PATCH 2250/2257] 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 9da5a16..3cfbc75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -108,7 +108,7 @@ at 3.2.5-2.1ubun base-files 13ubuntu10.3 deb base-passwd 3.6.3build1 deb bash 5.2.21-2ubuntu4 deb -bsdutils 1:2.39.3-9ubuntu6.3 deb +bsdutils 1:2.39.3-9ubuntu6.4 deb ca-certificates 20240203 deb catatonit 0.1.7-1 deb coreutils 9.4-3ubuntu6.1 deb @@ -154,7 +154,7 @@ libassuan0 2.5.6-1build1 libattr1 1:2.5.2-1build1.1 deb libaudit-common 1:3.1.2-2.1build1.1 deb libaudit1 1:3.1.2-2.1build1.1 deb -libblkid1 2.39.3-9ubuntu6.3 deb +libblkid1 2.39.3-9ubuntu6.4 deb libbluray2 1:1.3.4-1build1 deb libbrotli1 1.1.0-2build2 deb libbsd0 0.12.1-1build1.1 deb @@ -202,7 +202,7 @@ libllvm20 1:20.1.2-0ubu liblz4-1 1.9.4-1build1.1 deb liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libmd0 1.1.0-2build1.1 deb -libmount1 2.39.3-9ubuntu6.3 deb +libmount1 2.39.3-9ubuntu6.4 deb libmp3lame0 3.100-6build1 deb libmpg123-0t64 1.32.5-1ubuntu1.1 deb libncursesw6 6.4+20240113-1ubuntu2 deb @@ -239,7 +239,7 @@ libsensors-config 1:3.6.0-9buil libsensors5 1:3.6.0-9build1 deb libsepol2 3.5-2build1 deb libsharpyuv0 1.3.2-0.4build3 deb -libsmartcols1 2.39.3-9ubuntu6.3 deb +libsmartcols1 2.39.3-9ubuntu6.4 deb libsqlite3-0 3.45.1-1ubuntu2.5 deb libss2 1.47.0-2.4~exp1ubuntu4.1 deb libssh-4 0.10.6-2ubuntu0.2 deb @@ -252,7 +252,7 @@ libtinfo6 6.4+20240113- libudev1 255.4-1ubuntu8.11 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.3 deb +libuuid1 2.39.3-9ubuntu6.4 deb libvorbis0a 1.3.7-1build3 deb libvorbisenc2 1.3.7-1build3 deb libvorbisfile3 1.3.7-1build3 deb @@ -289,7 +289,7 @@ logsave 1.47.0-2.4~ex mawk 1.3.4.20240123-1build1 deb mesa-libgallium 25.0.7-0ubuntu0.24.04.2 deb mesa-va-drivers 25.0.7-0ubuntu0.24.04.2 deb -mount 2.39.3-9ubuntu6.3 deb +mount 2.39.3-9ubuntu6.4 deb ncurses-base 6.4+20240113-1ubuntu2 deb ncurses-bin 6.4+20240113-1ubuntu2 deb netcat-openbsd 1.226-1ubuntu2 deb @@ -314,7 +314,7 @@ tar 1.35+dfsg-3bu tzdata 2025b-0ubuntu0.24.04.1 deb ubuntu-keyring 2023.11.28.1 deb unminimize 0.2.1 deb -util-linux 2.39.3-9ubuntu6.3 deb +util-linux 2.39.3-9ubuntu6.4 deb xmlstarlet 1.6.1-4 deb z440.atl.core 7.9.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet From 3b69c2b6c403c5227a712a1a59207217a165d8d5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 29 Dec 2025 05:25:35 +0000 Subject: [PATCH 2251/2257] 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 c6b0be5..1397e8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025122205+ubu2404 deb +jellyfin 2025122905+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 2025122205+ubu2404 deb -jellyfin-web 2025122205+ubu2404 deb +jellyfin-server 2025122905+ubu2404 deb +jellyfin-web 2025122905+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -246,11 +246,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2ubuntu0.2 deb libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.11 deb +libsystemd0 255.4-1ubuntu8.12 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.11 deb +libudev1 255.4-1ubuntu8.12 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.4 deb @@ -309,7 +309,7 @@ runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.11 runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.11 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.11 deb +systemd-standalone-sysusers 255.4-1ubuntu8.12 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb From beef6cbbfb95530e94568764aa81b66c0abecda5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Dec 2025 13:07:48 +0000 Subject: [PATCH 2252/2257] 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 3cfbc75..673b29d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -245,11 +245,11 @@ libss2 1.47.0-2.4~ex libssh-4 0.10.6-2ubuntu0.2 deb libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb -libsystemd0 255.4-1ubuntu8.11 deb +libsystemd0 255.4-1ubuntu8.12 deb libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb -libudev1 255.4-1ubuntu8.11 deb +libudev1 255.4-1ubuntu8.12 deb libudfread0 1.1.2-1build1 deb libunistring5 1.1-2build1.1 deb libuuid1 2.39.3-9ubuntu6.4 deb @@ -308,7 +308,7 @@ runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.11 runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.11 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb -systemd-standalone-sysusers 255.4-1ubuntu8.11 deb +systemd-standalone-sysusers 255.4-1ubuntu8.12 deb sysvinit-utils 3.08-6ubuntu3 deb tar 1.35+dfsg-3build1 deb tzdata 2025b-0ubuntu0.24.04.1 deb From a8b0a2c295d6d1d541ca5e5fe682b737074f871a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Jan 2026 05:33:33 +0000 Subject: [PATCH 2253/2257] 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 1397e8a..5968174 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -47,9 +47,9 @@ MediaBrowser.MediaEncoding 24.4.0 MediaBrowser.Model 10.12.0.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet -MetaBrainz.Common 3.0.0 dotnet -MetaBrainz.Common.Json 6.0.2 dotnet -MetaBrainz.MusicBrainz 6.1.0 dotnet +MetaBrainz.Common 4.0.0 dotnet +MetaBrainz.Common.Json 7.1.0 dotnet +MetaBrainz.MusicBrainz 7.0.0 dotnet Microsoft.Data.Sqlite 9.0.11 dotnet Microsoft.Data.Sqlite.Core 9.0.11 dotnet Microsoft.EntityFrameworkCore 9.0.11 dotnet @@ -59,7 +59,7 @@ Microsoft.EntityFrameworkCore.Sqlite 9.0.11 Microsoft.EntityFrameworkCore.Sqlite.Core 9.0.11 dotnet Microsoft.Extensions.DependencyModel 9.0.11 dotnet Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 9.0.11 dotnet -Microsoft.OpenApi 1.2.3 dotnet +Microsoft.OpenApi 1.6.14 dotnet Microsoft.Win32.SystemEvents 9.0.2 dotnet Morestachio 5.0.1.631 dotnet NEbml 1.1.0.5 dotnet @@ -91,11 +91,11 @@ SkiaSharp.NativeAssets.Linux 3.116.1 Svg.Custom 3.2.1 dotnet Svg.Model 3.2.1 dotnet Svg.Skia 3.2.1 dotnet -Swashbuckle.AspNetCore 6.2.3 dotnet -Swashbuckle.AspNetCore.ReDoc 6.5.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.2.3 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.2.3 dotnet -Swashbuckle.AspNetCore.SwaggerUI 6.2.3 dotnet +Swashbuckle.AspNetCore 6.9.0 dotnet +Swashbuckle.AspNetCore.ReDoc 6.9.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.9.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.9.0 dotnet +Swashbuckle.AspNetCore.SwaggerUI 6.9.0 dotnet System.Drawing.Common 9.0.2 dotnet System.Linq.Async 6.0.3 dotnet TMDbLib 2.3.0 dotnet @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2025122905+ubu2404 deb +jellyfin 2026010505+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 2025122905+ubu2404 deb -jellyfin-web 2025122905+ubu2404 deb +jellyfin-server 2026010505+ubu2404 deb +jellyfin-web 2026010505+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb From 6af487a65627d16bf358ec3b891f803375275739 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 Jan 2026 05:26:50 +0000 Subject: [PATCH 2254/2257] 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 5968174..41c802e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -141,11 +141,11 @@ grep 3.11-4build1 gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 2026010505+ubu2404 deb +jellyfin 2026011205+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 2026010505+ubu2404 deb -jellyfin-web 2026010505+ubu2404 deb +jellyfin-server 2026011205+ubu2404 deb +jellyfin-web 2026011205+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb keyboxd 2.4.4-2ubuntu17.3 deb krb5-locales 1.20.1-6ubuntu2.6 deb @@ -279,7 +279,7 @@ libxext6 2:1.3.4-1buil libxml2 2.9.14+dfsg-1.3ubuntu3.6 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb -libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb +libxslt1.1 1.1.39-0exp1ubuntu0.24.04.3 deb libxxhash0 0.8.2-2build1 deb libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb @@ -317,6 +317,6 @@ ubuntu-keyring 2023.11.28.1 unminimize 0.2.1 deb util-linux 2.39.3-9ubuntu6.4 deb xmlstarlet 1.6.1-4 deb -z440.atl.core 7.9.0 dotnet +z440.atl.core 7.10.0 dotnet zlib.net-mutliplatform 1.0.8 dotnet zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb From 10cca242c781ca8a61216c57e2314237165f8eac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 13 Jan 2026 13:12:39 +0000 Subject: [PATCH 2255/2257] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 673b29d..6f5c2e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -278,7 +278,7 @@ libxext6 2:1.3.4-1buil libxml2 2.9.14+dfsg-1.3ubuntu3.6 deb libxrender1 1:0.9.10-1.1build1 deb libxshmfence1 1.3-1build5 deb -libxslt1.1 1.1.39-0exp1ubuntu0.24.04.2 deb +libxslt1.1 1.1.39-0exp1ubuntu0.24.04.3 deb libxxhash0 0.8.2-2build1 deb libzstd1 1.5.5+dfsg2-2build1.1 deb libzvbi-common 0.2.42-2 deb From 71f0b359dfee5c054fed6a7c7f32a1f07c7fe27c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 19 Jan 2026 03:46:39 +0000 Subject: [PATCH 2256/2257] Bot Updating Package Versions --- package_versions.txt | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6f5c2e5..08f8033 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ DiscUtils.Iso9660 0.16.13 DiscUtils.Streams 0.16.13 dotnet DiscUtils.Udf 0.16.13 dotnet DotNet.Glob 3.1.3 dotnet -Emby.Naming 10.11.5.0 dotnet +Emby.Naming 10.11.6.0 dotnet Emby.Photos 24.4.0 dotnet Emby.Server.Implementations 24.4.0 dotnet ExCSS 4.3.1 dotnet @@ -39,11 +39,11 @@ Jellyfin.Networking 24.4.0 Jellyfin.Server.Implementations 24.4.0 dotnet Jellyfin.XmlTv 10.8.0 dotnet LrcParser 2025.623.0 dotnet -MediaBrowser.Common 10.11.5.0 dotnet -MediaBrowser.Controller 10.11.5.0 dotnet +MediaBrowser.Common 10.11.6.0 dotnet +MediaBrowser.Controller 10.11.6.0 dotnet MediaBrowser.LocalMetadata 24.4.0 dotnet MediaBrowser.MediaEncoding 24.4.0 dotnet -MediaBrowser.Model 10.11.5.0 dotnet +MediaBrowser.Model 10.11.6.0 dotnet MediaBrowser.Providers 24.4.0 dotnet MediaBrowser.XbmcMetadata 24.4.0 dotnet MetaBrainz.Common 3.0.0 dotnet @@ -119,7 +119,7 @@ dash 0.5.12-6ubunt debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17.3 deb +dirmngr 2.4.4-2ubuntu17.4 deb dpkg 1.22.6ubuntu6.5 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb @@ -127,26 +127,26 @@ fontconfig-config 2.15.0-1.1ubu fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17.3 deb -gnupg-l10n 2.4.4-2ubuntu17.3 deb -gnupg-utils 2.4.4-2ubuntu17.3 deb -gpg 2.4.4-2ubuntu17.3 deb -gpg-agent 2.4.4-2ubuntu17.3 deb -gpg-wks-client 2.4.4-2ubuntu17.3 deb -gpgconf 2.4.4-2ubuntu17.3 deb -gpgsm 2.4.4-2ubuntu17.3 deb -gpgv 2.4.4-2ubuntu17.3 deb +gnupg 2.4.4-2ubuntu17.4 deb +gnupg-l10n 2.4.4-2ubuntu17.4 deb +gnupg-utils 2.4.4-2ubuntu17.4 deb +gpg 2.4.4-2ubuntu17.4 deb +gpg-agent 2.4.4-2ubuntu17.4 deb +gpg-wks-client 2.4.4-2ubuntu17.4 deb +gpgconf 2.4.4-2ubuntu17.4 deb +gpgsm 2.4.4-2ubuntu17.4 deb +gpgv 2.4.4-2ubuntu17.4 deb grep 3.11-4build1 deb gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb init-system-helpers 1.66ubuntu1 deb -jellyfin 10.11.5+ubu2404 deb +jellyfin 10.11.6+ubu2404 deb jellyfin 24.04 dotnet jellyfin-ffmpeg7 7.1.3-1-noble deb -jellyfin-server 10.11.5+ubu2404 deb -jellyfin-web 10.11.5+ubu2404 deb +jellyfin-server 10.11.6+ubu2404 deb +jellyfin-web 10.11.6+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb -keyboxd 2.4.4-2ubuntu17.3 deb +keyboxd 2.4.4-2ubuntu17.4 deb krb5-locales 1.20.1-6ubuntu2.6 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.8.3 deb @@ -222,7 +222,7 @@ libpam0g 1.5.3-5ubuntu libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb -libpng16-16t64 1.6.43-5ubuntu0.1 deb +libpng16-16t64 1.6.43-5ubuntu0.3 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb @@ -246,7 +246,7 @@ libssh-4 0.10.6-2ubunt libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.12 deb -libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb +libtasn1-6 4.19.0-3ubuntu0.24.04.2 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.12 deb @@ -304,8 +304,8 @@ prometheus-net.AspNetCore 8.2.1 prometheus-net.DotNetRuntime 4.4.1 dotnet publicsuffix 20231001.0357-0.1 deb readline-common 8.2-4build1 deb -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.11 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.11 dotnet +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64 9.0.12 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-x64 9.0.12 dotnet sed 4.9-2build1 deb sensible-utils 0.0.22 deb systemd-standalone-sysusers 255.4-1ubuntu8.12 deb From b386b068723d7073e51dd47c3ba3445a4b635bdc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 20 Jan 2026 13:16:45 +0000 Subject: [PATCH 2257/2257] 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 41c802e..0e9e091 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -120,7 +120,7 @@ dash 0.5.12-6ubunt debconf 1.5.86ubuntu1 deb debianutils 5.17build1 deb diffutils 1:3.10-1build1 deb -dirmngr 2.4.4-2ubuntu17.3 deb +dirmngr 2.4.4-2ubuntu17.4 deb dpkg 1.22.6ubuntu6.5 deb e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb findutils 4.9.0-5build1 deb @@ -128,15 +128,15 @@ fontconfig-config 2.15.0-1.1ubu fonts-dejavu-core 2.37-8 deb fonts-dejavu-mono 2.37-8 deb gcc-14-base 14.2.0-4ubuntu2~24.04 deb -gnupg 2.4.4-2ubuntu17.3 deb -gnupg-l10n 2.4.4-2ubuntu17.3 deb -gnupg-utils 2.4.4-2ubuntu17.3 deb -gpg 2.4.4-2ubuntu17.3 deb -gpg-agent 2.4.4-2ubuntu17.3 deb -gpg-wks-client 2.4.4-2ubuntu17.3 deb -gpgconf 2.4.4-2ubuntu17.3 deb -gpgsm 2.4.4-2ubuntu17.3 deb -gpgv 2.4.4-2ubuntu17.3 deb +gnupg 2.4.4-2ubuntu17.4 deb +gnupg-l10n 2.4.4-2ubuntu17.4 deb +gnupg-utils 2.4.4-2ubuntu17.4 deb +gpg 2.4.4-2ubuntu17.4 deb +gpg-agent 2.4.4-2ubuntu17.4 deb +gpg-wks-client 2.4.4-2ubuntu17.4 deb +gpgconf 2.4.4-2ubuntu17.4 deb +gpgsm 2.4.4-2ubuntu17.4 deb +gpgv 2.4.4-2ubuntu17.4 deb grep 3.11-4build1 deb gzip 1.12-1ubuntu3.1 deb hostname 3.23+nmu2ubuntu2 deb @@ -147,7 +147,7 @@ jellyfin-ffmpeg7 7.1.3-1-noble jellyfin-server 2026011205+ubu2404 deb jellyfin-web 2026011205+ubu2404 deb jq 1.7.1-3ubuntu0.24.04.1 deb -keyboxd 2.4.4-2ubuntu17.3 deb +keyboxd 2.4.4-2ubuntu17.4 deb krb5-locales 1.20.1-6ubuntu2.6 deb libacl1 2.3.2-1build1.1 deb libapt-pkg6.0t64 2.8.3 deb @@ -223,7 +223,7 @@ libpam0g 1.5.3-5ubuntu libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpcre2-8-0 10.42-4ubuntu2.1 deb libpixman-1-0 0.42.2-1build1 deb -libpng16-16t64 1.6.43-5ubuntu0.1 deb +libpng16-16t64 1.6.43-5ubuntu0.3 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb libreadline8t64 8.2-4build1 deb @@ -247,7 +247,7 @@ libssh-4 0.10.6-2ubunt libssl3t64 3.0.13-0ubuntu3.6 deb libstdc++6 14.2.0-4ubuntu2~24.04 deb libsystemd0 255.4-1ubuntu8.12 deb -libtasn1-6 4.19.0-3ubuntu0.24.04.1 deb +libtasn1-6 4.19.0-3ubuntu0.24.04.2 deb libtheora0 1.1.1+dfsg.1-16.1build3 deb libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.12 deb