diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index bc97af9..d0587ab 100755 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -26,7 +26,7 @@ jobs: echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY echo "> External trigger running off of development branch. To disable this trigger, add \`duplicati_development\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY - EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/duplicati/duplicati/releases" | jq -r '. | first(.[] | select(.tag_name | contains("canary"))) | .tag_name') + EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/duplicati/duplicati/releases" | jq -r '. | first(.[] | select(.tag_name | contains("beta"))) | .tag_name') echo "Type is \`custom_json\`" >> $GITHUB_STEP_SUMMARY if grep -q "^duplicati_development_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY diff --git a/Dockerfile b/Dockerfile index a782b01..fcb1e91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,11 +31,10 @@ RUN \ echo "**** install duplicati ****" && \ if [ -z ${DUPLICATI_RELEASE+x} ]; then \ DUPLICATI_RELEASE=$(curl -sX GET "https://api.github.com/repos/duplicati/duplicati/releases" \ - | jq -r 'first(.[] | select(.tag_name | contains("canary"))) | .tag_name'); \ + | jq -r 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name'); \ fi && \ - duplicati_url=$(curl -s https://api.github.com/repos/duplicati/duplicati/releases/tags/"${DUPLICATI_RELEASE}" |jq -r '.assets[].browser_download_url' |grep 'linux-x64-gui.zip$') || \ - duplicati_url="https://updates.duplicati.com/canary/duplicati-${DUPLICATI_RELEASE}-linux-x64-gui.zip" && \ - curl -fso \ + duplicati_url=$(curl -s "https://api.github.com/repos/duplicati/duplicati/releases/tags/${DUPLICATI_RELEASE}" | jq -r '.assets[].browser_download_url' |grep 'linux-x64-gui.zip$') && \ + curl -o \ /tmp/duplicati.zip -L \ "${duplicati_url}" && \ unzip -q /tmp/duplicati.zip -d /app && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 6ab2d86..2778fec 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,11 +31,10 @@ RUN \ echo "**** install duplicati ****" && \ if [ -z ${DUPLICATI_RELEASE+x} ]; then \ DUPLICATI_RELEASE=$(curl -sX GET "https://api.github.com/repos/duplicati/duplicati/releases" \ - | jq -r 'first(.[] | select(.tag_name | contains("canary"))) | .tag_name'); \ + | jq -r 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name'); \ fi && \ - duplicati_url=$(curl -s https://api.github.com/repos/duplicati/duplicati/releases/tags/"${DUPLICATI_RELEASE}" |jq -r '.assets[].browser_download_url' |grep 'linux-arm64-gui.zip$') || \ - duplicati_url="https://updates.duplicati.com/canary/duplicati-${DUPLICATI_RELEASE}-linux-arm64-gui.zip" && \ - curl -fso \ + duplicati_url=$(curl -s "https://api.github.com/repos/duplicati/duplicati/releases/tags/${DUPLICATI_RELEASE}" | jq -r '.assets[].browser_download_url' |grep 'linux-arm64-gui.zip$') && \ + curl -o \ /tmp/duplicati.zip -L \ "${duplicati_url}" && \ unzip -q /tmp/duplicati.zip -d /app && \ diff --git a/Jenkinsfile b/Jenkinsfile index 1db3d12..3a4f009 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,7 +20,7 @@ pipeline { QUAYIO_API_TOKEN=credentials('quayio-repo-api-token') GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f') JSON_URL = 'https://api.github.com/repos/duplicati/duplicati/releases' - JSON_PATH = 'first(.[] | select(.tag_name | contains("canary"))) | .tag_name' + JSON_PATH = 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name' BUILD_VERSION_ARG = 'DUPLICATI_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-duplicati' diff --git a/README.md b/README.md index 33dc242..a4cac88 100644 --- a/README.md +++ b/README.md @@ -63,8 +63,8 @@ This image provides various versions that are available via tags. Please read th | Tag | Available | Description | | :----: | :----: |--- | -| latest | ✅ | Beta releases of Duplicati | -| development | ✅ | Canary releases of Duplicati | +| latest | ✅ | Stable releases of Duplicati | +| development | ✅ | Beta releases of Duplicati | ## Application Setup @@ -72,10 +72,6 @@ The webui is at `:8200`. For local backups select `/backups` as the destination. For more information see [Duplicati](https://www.duplicati.com/). -## Read-Only Operation - -This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/). - ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. @@ -142,7 +138,6 @@ Containers are configured using parameters passed at runtime (such as those abov | `-v /config` | Contains all relevant configuration files. | | `-v /backups` | Path to store local backups. | | `-v /source` | Path to source for files to backup. | -| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). | ## Environment variables from files (Docker secrets) @@ -306,18 +301,19 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **31.01.25:** - Make `latest` stable releases, move beta releases to `development`. * **28.01.25:** - Add xz-utils. * **03.12.24:** - Add mscorefonts for captcha support. -* **29.08.24:** - Add support for settings DB encryption. -* **30.05.24:** - Rebase to Noble, switch to net core. +* **29.11.24:** - Rebase to Noble, add support for settings DB encryption. * **15.02.23:** - Rebase to Jammy. * **03.08.22:** - Deprecate armhf. -* **13.03.22:** - Fix artifact link. -* **10.03.21:** - Rebase to focal baseimage with mono 6.12+. +* **25.04.22:** - Rebase to mono:focal. * **01.08.19:** - Rebase to Linuxserver LTS mono version. * **16.07.19:** - Allow for additional command line arguments in an environment variable. +* **28.06.19:** - Rebase to bionic. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. -* **11.03.19:** - Rebase to bionic, add rclone. +* **28.02.19:** - Allow access from all hostnames, clarify info on image tags. +* **13.01.19:** - Use jq instead of awk in dockerfiles. * **11.01.19:** - Multi-arch image. * **09.12.17:** - Fix continuation lines. * **31.08.17:** - Build only beta or release versions (thanks deasmi). diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 13a32f9..d5c2d9b 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -8,7 +8,7 @@ release_tag: development ls_branch: development repo_vars: - JSON_URL = 'https://api.github.com/repos/duplicati/duplicati/releases' - - JSON_PATH = 'first(.[] | select(.tag_name | contains("canary"))) | .tag_name' + - JSON_PATH = 'first(.[] | select(.tag_name | contains("beta"))) | .tag_name' - BUILD_VERSION_ARG = 'DUPLICATI_RELEASE' - LS_USER = 'linuxserver' - LS_REPO = 'docker-duplicati' diff --git a/package_versions.txt b/package_versions.txt index ad11df7..0b13b4d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -@duplicati/ngclient 0.0.73 npm +@duplicati/ngclient 0.0.65 npm Aliyun OSS SDK for C# 2.13.0 dotnet AlphaVSS 2.0.3+Branch.master.Sha.2800471697f06364d7a57ff891a96f343a044a21 dotnet Amazon Web Services SDK for .NET 3.7.102.54 dotnet @@ -13,79 +13,77 @@ Avalonia 11.2.0.0 Bouncy Castle for .NET (netstandard2.0) 1.8.5.50 dotnet BouncyCastle.NET 2.4.0.33771 dotnet COSXML 5.4.11.0 dotnet -CoCoL 1.8.1.0 dotnet +CoCoL 1.8.0.0 dotnet Crc32.NET 1.2.0.5 dotnet DnsClient.NET 1.4.0.0 dotnet -Duplicati.CommandLine 2.1.0.108 dotnet -Duplicati.CommandLine.AutoUpdater 2.1.0.108 dotnet -Duplicati.CommandLine.BackendTester 2.1.0.108 dotnet -Duplicati.CommandLine.BackendTester.Implementation 2.1.0.108 dotnet -Duplicati.CommandLine.BackendTool 2.1.0.108 dotnet -Duplicati.CommandLine.BackendTool.Implementation 2.1.0.108 dotnet -Duplicati.CommandLine.Implementation 2.1.0.108 dotnet -Duplicati.CommandLine.RecoveryTool 2.1.0.108 dotnet -Duplicati.CommandLine.RecoveryTool.Implementation 2.1.0.108 dotnet -Duplicati.CommandLine.SecretTool 2.1.0.108 dotnet -Duplicati.CommandLine.SecretTool.Implementation 2.1.0.108 dotnet -Duplicati.CommandLine.ServerUtil 2.1.0.108 dotnet -Duplicati.CommandLine.ServerUtil.Implementation 2.1.0.108 dotnet -Duplicati.CommandLine.SharpAESCrypt 2.1.0.108 dotnet -Duplicati.CommandLine.Snapshots 2.1.0.108 dotnet -Duplicati.GUI.TrayIcon 2.1.0.108 dotnet -Duplicati.GUI.TrayIcon.Implementation 2.1.0.108 dotnet -Duplicati.Library.AutoUpdater 2.1.0.108 dotnet +Duplicati.CommandLine 2.1.0.3 dotnet +Duplicati.CommandLine.AutoUpdater 2.1.0.3 dotnet +Duplicati.CommandLine.BackendTester 2.1.0.3 dotnet +Duplicati.CommandLine.BackendTester.Implementation 2.1.0.3 dotnet +Duplicati.CommandLine.BackendTool 2.1.0.3 dotnet +Duplicati.CommandLine.BackendTool.Implementation 2.1.0.3 dotnet +Duplicati.CommandLine.Implementation 2.1.0.3 dotnet +Duplicati.CommandLine.RecoveryTool 2.1.0.3 dotnet +Duplicati.CommandLine.RecoveryTool.Implementation 2.1.0.3 dotnet +Duplicati.CommandLine.SecretTool 2.1.0.3 dotnet +Duplicati.CommandLine.SecretTool.Implementation 2.1.0.3 dotnet +Duplicati.CommandLine.ServerUtil 2.1.0.3 dotnet +Duplicati.CommandLine.ServerUtil.Implementation 2.1.0.3 dotnet +Duplicati.CommandLine.SharpAESCrypt 2.1.0.3 dotnet +Duplicati.CommandLine.Snapshots 2.1.0.3 dotnet +Duplicati.GUI.TrayIcon 2.1.0.3 dotnet +Duplicati.GUI.TrayIcon.Implementation 2.1.0.3 dotnet +Duplicati.Library.AutoUpdater 2.1.0.3 dotnet Duplicati.Library.Backend.AliyunOSS 1.0.0.0 dotnet -Duplicati.Library.Backend.AzureBlob 2.1.0.108 dotnet -Duplicati.Library.Backend.Backblaze 2.1.0.108 dotnet -Duplicati.Library.Backend.Box 2.1.0.108 dotnet -Duplicati.Library.Backend.CIFS 2.1.0.108 dotnet -Duplicati.Library.Backend.CloudFiles 2.1.0.108 dotnet -Duplicati.Library.Backend.Dropbox 2.1.0.108 dotnet -Duplicati.Library.Backend.FTP 2.1.0.108 dotnet -Duplicati.Library.Backend.File 2.1.0.108 dotnet -Duplicati.Library.Backend.GoogleServices 2.1.0.108 dotnet -Duplicati.Library.Backend.Idrivee2 2.1.0.108 dotnet -Duplicati.Library.Backend.Jottacloud 2.1.0.108 dotnet -Duplicati.Library.Backend.Mega 2.1.0.108 dotnet -Duplicati.Library.Backend.OneDrive 2.1.0.108 dotnet -Duplicati.Library.Backend.OpenStack 2.1.0.108 dotnet -Duplicati.Library.Backend.Rclone 2.1.0.108 dotnet -Duplicati.Library.Backend.S3 2.1.0.108 dotnet -Duplicati.Library.Backend.SSHv2 2.1.0.108 dotnet -Duplicati.Library.Backend.SharePoint 2.1.0.108 dotnet -Duplicati.Library.Backend.Sia 2.1.0.108 dotnet -Duplicati.Library.Backend.Storj 2.1.0.108 dotnet -Duplicati.Library.Backend.TahoeLAFS 2.1.0.108 dotnet -Duplicati.Library.Backend.TencentCOS 2.1.0.108 dotnet -Duplicati.Library.Backend.WEBDAV 2.1.0.108 dotnet -Duplicati.Library.Backend.pCloud 2.1.0.108 dotnet -Duplicati.Library.Backends 2.1.0.108 dotnet -Duplicati.Library.Common 2.1.0.108 dotnet -Duplicati.Library.Compression 2.1.0.108 dotnet -Duplicati.Library.Crashlog 2.1.0.108 dotnet -Duplicati.Library.DynamicLoader 2.1.0.108 dotnet -Duplicati.Library.Encryption 2.1.0.108 dotnet -Duplicati.Library.Interface 2.1.0.108 dotnet -Duplicati.Library.Localization 2.1.0.108 dotnet -Duplicati.Library.Logging 2.1.0.108 dotnet -Duplicati.Library.Main 2.1.0.108 dotnet -Duplicati.Library.Modules.Builtin 2.1.0.108 dotnet -Duplicati.Library.OAuthHelper 2.1.0.108 dotnet -Duplicati.Library.RemoteControl 2.1.0.108 dotnet -Duplicati.Library.RestAPI 2.1.0.108 dotnet -Duplicati.Library.SecretProvider 2.1.0.108 dotnet -Duplicati.Library.Snapshots 2.1.0.108 dotnet -Duplicati.Library.UsageReporter 2.1.0.108 dotnet -Duplicati.Library.Utility 2.1.0.108 dotnet -Duplicati.License 2.1.0.108 dotnet -Duplicati.Server 2.1.0.108 dotnet -Duplicati.Server.Implementation 2.1.0.108 dotnet -Duplicati.Server.Serialization 2.1.0.108 dotnet -Duplicati.Service 2.1.0.108 dotnet -Duplicati.Service.Implementation 2.1.0.108 dotnet -Duplicati.Tools 2.1.0.108 dotnet -Duplicati.WebserverCore 2.1.0.108 dotnet -FluentFTP 52.0.0.0 dotnet +Duplicati.Library.Backend.AzureBlob 2.1.0.3 dotnet +Duplicati.Library.Backend.Backblaze 2.1.0.3 dotnet +Duplicati.Library.Backend.Box 2.1.0.3 dotnet +Duplicati.Library.Backend.CloudFiles 2.1.0.3 dotnet +Duplicati.Library.Backend.Dropbox 2.1.0.3 dotnet +Duplicati.Library.Backend.FTP 2.1.0.3 dotnet +Duplicati.Library.Backend.File 2.1.0.3 dotnet +Duplicati.Library.Backend.GoogleServices 2.1.0.3 dotnet +Duplicati.Library.Backend.Idrivee2 2.1.0.3 dotnet +Duplicati.Library.Backend.Jottacloud 2.1.0.3 dotnet +Duplicati.Library.Backend.Mega 2.1.0.3 dotnet +Duplicati.Library.Backend.OneDrive 2.1.0.3 dotnet +Duplicati.Library.Backend.OpenStack 2.1.0.3 dotnet +Duplicati.Library.Backend.Rclone 2.1.0.3 dotnet +Duplicati.Library.Backend.S3 2.1.0.3 dotnet +Duplicati.Library.Backend.SSHv2 2.1.0.3 dotnet +Duplicati.Library.Backend.SharePoint 2.1.0.3 dotnet +Duplicati.Library.Backend.Sia 2.1.0.3 dotnet +Duplicati.Library.Backend.Storj 2.1.0.3 dotnet +Duplicati.Library.Backend.TahoeLAFS 2.1.0.3 dotnet +Duplicati.Library.Backend.TencentCOS 2.1.0.3 dotnet +Duplicati.Library.Backend.WEBDAV 2.1.0.3 dotnet +Duplicati.Library.Backends 2.1.0.3 dotnet +Duplicati.Library.Common 2.1.0.3 dotnet +Duplicati.Library.Compression 2.1.0.3 dotnet +Duplicati.Library.Crashlog 2.1.0.3 dotnet +Duplicati.Library.DynamicLoader 2.1.0.3 dotnet +Duplicati.Library.Encryption 2.1.0.3 dotnet +Duplicati.Library.Interface 2.1.0.3 dotnet +Duplicati.Library.Localization 2.1.0.3 dotnet +Duplicati.Library.Logging 2.1.0.3 dotnet +Duplicati.Library.Main 2.1.0.3 dotnet +Duplicati.Library.Modules.Builtin 2.1.0.3 dotnet +Duplicati.Library.OAuthHelper 2.1.0.3 dotnet +Duplicati.Library.RemoteControl 2.1.0.3 dotnet +Duplicati.Library.RestAPI 2.1.0.3 dotnet +Duplicati.Library.SecretProvider 2.1.0.3 dotnet +Duplicati.Library.Snapshots 2.1.0.3 dotnet +Duplicati.Library.UsageReporter 2.1.0.3 dotnet +Duplicati.Library.Utility 2.1.0.3 dotnet +Duplicati.License 2.1.0.3 dotnet +Duplicati.Server 2.1.0.3 dotnet +Duplicati.Server.Implementation 2.1.0.3 dotnet +Duplicati.Server.Serialization 2.1.0.3 dotnet +Duplicati.Service 2.1.0.3 dotnet +Duplicati.Service.Implementation 2.1.0.3 dotnet +Duplicati.Tools 2.1.0.3 dotnet +Duplicati.WebserverCore 2.1.0.3 dotnet +FluentFTP 50.1.0.0 dotnet Google.Api.CommonProtos 2.15.0.0 dotnet Google.Api.Gax 4.8.0.0 dotnet Google.Api.Gax.Grpc 4.8.0.0 dotnet @@ -113,145 +111,145 @@ Microsoft Azure.Identity Component 1.1300.24.51403 Microsoft Azure.Security.KeyVault.Secrets client library 4.700.24.51403 dotnet Microsoft Rest Azure Client Runtime 3.3.19 dotnet Microsoft Rest Client Runtime 2.3.24 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 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.JwtBearer 8.0.324.11615 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.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.Azure.Storage.Blob.dll 11.0.1.0 dotnet Microsoft.Azure.Storage.Common.dll 11.0.1.0 dotnet Microsoft.Azure.Storage.File.dll 11.0.1.0 dotnet Microsoft.Azure.Storage.Queue.dll 11.0.1.0 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.CSharp 8.0.1224.60305 dotnet +Microsoft.CSharp 8.0.624.26715 dotnet Microsoft.Extensions.Caching.Abstractions 8.0.23.53103 dotnet -Microsoft.Extensions.Caching.Memory 8.0.1024.46610 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.724.31311 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.724.31311 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.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.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.Features 8.0.1224.60312 dotnet +Microsoft.Extensions.Configuration.Json 8.0.23.53103 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 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.324.11423 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.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.1224.60312 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.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.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.1224.60312 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.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.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.1224.60312 dotnet +Microsoft.Extensions.WebEncoders 8.0.624.26909 dotnet Microsoft.IO.RecyclableMemoryStream 3.0.0.0 dotnet Microsoft.Identity.Client 4.65.0.0 dotnet Microsoft.Identity.Client.Extensions.Msal 4.65.0.0 dotnet @@ -261,13 +259,13 @@ Microsoft.IdentityModel.Logging 7.5.0.50326 Microsoft.IdentityModel.Protocols 7.1.2.41121005246.a607fa5e0005a6178cf1d2fed4fa0f8179cdb186 dotnet Microsoft.IdentityModel.Protocols.OpenIdConnect 7.1.2.41121005246.a607fa5e0005a6178cf1d2fed4fa0f8179cdb186 dotnet Microsoft.IdentityModel.Tokens 7.5.0.50326 dotnet -Microsoft.JSInterop 8.0.1224.60312 dotnet -Microsoft.Net.Http.Headers 8.0.1224.60312 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.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.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 Microsoft.WindowsAzure.Storage.dll 9.3.2.0 dotnet MimeKit 2.4.1.0 dotnet @@ -276,10 +274,8 @@ Mono.Unix.dll 7.100.21.45801 NGettext 0.6.5 dotnet Otp.NET 1.4.0.0 dotnet RestSharp 106.10.1.0 dotnet -SMBLibrary 1.5.3.5 dotnet -SMBLibrary.Win32 1.5.3.0 dotnet SQLite-net 1.7.335.0 dotnet -SQLiteHelper 2.1.0.108 dotnet +SQLiteHelper 2.1.0.3 dotnet SQLitePCLRaw.batteries_v2 2.0.3.851 dotnet SQLitePCLRaw.core 2.0.3.851 dotnet SQLitePCLRaw.nativelibrary 2.0.3.851 dotnet @@ -296,187 +292,187 @@ StreamUtil 1.0.0.0 Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerUI 6.5.0.0 dotnet -System 8.0.1224.60305 dotnet -System.AppContext 8.0.1224.60305 dotnet -System.Buffers 8.0.1224.60305 dotnet +System 8.0.624.26715 dotnet +System.AppContext 8.0.624.26715 dotnet +System.Buffers 8.0.624.26715 dotnet System.ClientModel 1.100.24.46703 dotnet System.CodeDom 8.0.23.53103 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.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.CommandLine 2.0.22.27201 dotnet (+13 duplicates) System.CommandLine.NamingConventionBinder 2.0.22.27201 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.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.Data.SQLite 1.0.115.0 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.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.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.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.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.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.1224.60305 dotnet -System.IO.Pipes.AccessControl 8.0.1224.60305 dotnet -System.IO.UnmanagedMemoryStream 8.0.1224.60305 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.IdentityModel.Tokens.Jwt 7.5.0.50326 dotnet -System.Linq 8.0.1224.60305 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.Linq 8.0.624.26715 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.Management 8.0.23.53103 dotnet -System.Memory 8.0.1224.60305 dotnet +System.Memory 8.0.624.26715 dotnet System.Memory.Data 6.0.21.52210 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.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.Reactive (net6.0) 6.0.0.1+e29c7a50db dotnet System.Reactive.Linq (netstandard2.0) 3.0.6000.0 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.1224.60305 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.624.26715 dotnet System.Security.Cryptography.ProtectedData 4.6.26515.06 dotnet -System.Security.Cryptography.X509Certificates 8.0.1224.60305 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.Cryptography.X509Certificates 8.0.624.26715 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.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.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 Tmds.DBus.Protocol 0.20.0.0 dotnet VaultSharp 1.7.0.0 dotnet Websocket.Client 5.1.2.0 dotnet -WindowsBase 8.0.1224.60305 dotnet +WindowsBase 8.0.624.26715 dotnet ZstdSharp 0.7.4.0 dotnet adduser 3.137ubuntu1 deb apt 2.7.14build2 deb @@ -484,7 +480,7 @@ apt-utils 2.7.14build2 base-files 13ubuntu10.1 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.1 deb ca-certificates 20240203 deb cabextract 1.11-2 deb catatonit 0.1.7-1 deb @@ -550,17 +546,17 @@ libacl1 2.3.2-1build1.1 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 +libattr1 1:2.5.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.2 deb +libblkid1 2.39.3-9ubuntu6.1 deb libbrotli1 1.1.0-2build2 deb -libbsd0 0.12.1-1build1.1 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 libcap-ng0 0.8.4-2build2 deb -libcap2 1:2.66-5ubuntu2.1 deb +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.6 deb @@ -577,13 +573,13 @@ libgcrypt20 1.10.3-2build1 libgirepository-1.0-1 1.80.1-1 deb libglib2.0-0t64 2.80.0-6ubuntu3.2 deb libglib2.0-data 2.80.0-6ubuntu3.2 deb -libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb +libgmp10 2:6.3.0+dfsg-2ubuntu6 deb libgnutls30t64 3.8.3-1.1ubuntu3.2 deb -libgpg-error0 1.47-3build2.1 deb +libgpg-error0 1.47-3build2 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.1 deb +libidn2-0 2.3.7-2build1 deb libjq1 1.7.1-3build1 deb libjson-c5 0.17-1build1 deb libk5crypto3 1.20.1-6ubuntu2.2 deb @@ -595,12 +591,12 @@ libldap-common 2.6.7+dfsg-1~exp1ubu libldap2 2.6.7+dfsg-1~exp1ubuntu8.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.1 deb -libmount1 2.39.3-9ubuntu6.2 deb +libmd0 1.1.0-2build1 deb +libmount1 2.39.3-9ubuntu6.1 deb libmspack0t64 0.11-1.1build1 deb libncursesw6 6.4+20240113-1ubuntu2 deb libnettle8t64 3.9.1-2.2build1.1 deb -libnghttp2-14 1.59.0-1ubuntu0.2 deb +libnghttp2-14 1.59.0-1ubuntu0.1 deb libnpth0t64 1.6-3.1build1 deb libonig5 6.9.9-1build1 deb libp11-kit0 0.25.3-4ubuntu2.1 deb @@ -608,7 +604,7 @@ libpam-modules 1.5.3-5ubuntu5.1 libpam-modules-bin 1.5.3-5ubuntu5.1 deb libpam-runtime 1.5.3-5ubuntu5.1 deb libpam0g 1.5.3-5ubuntu5.1 deb -libpcre2-8-0 10.42-4ubuntu2.1 deb +libpcre2-8-0 10.42-4ubuntu2 deb libpng16-16t64 1.6.43-5build1 deb libproc2-0 2:4.0.4-4ubuntu3.2 deb libpsl5t64 0.21.2-1.1build1 deb @@ -621,12 +617,12 @@ libsasl2-2 2.1.28+dfsg1-5ubuntu libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb libseccomp2 2.5.5-1ubuntu3.1 deb -libselinux1 3.5-2ubuntu2.1 deb +libselinux1 3.5-2ubuntu2 deb libsemanage-common 3.5-1build5 deb libsemanage2 3.5-1build5 deb libsepol2 3.5-2build1 deb -libsmartcols1 2.39.3-9ubuntu6.2 deb -libsqlite3-0 3.45.1-1ubuntu2.1 deb +libsmartcols1 2.39.3-9ubuntu6.1 deb +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.4 deb @@ -635,9 +631,9 @@ libsystemd0 255.4-1ubuntu8.4 libtasn1-6 4.19.0-3build1 deb libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 255.4-1ubuntu8.4 deb -libunistring5 1.1-2build1.1 deb -libuuid1 2.39.3-9ubuntu6.2 deb -libxml2 2.9.14+dfsg-1.3ubuntu3.1 deb +libunistring5 1.1-2build1 deb +libuuid1 2.39.3-9ubuntu6.1 deb +libxml2 2.9.14+dfsg-1.3ubuntu3 deb libxxhash0 0.8.2-2build1 deb libyaml-0-2 0.2.5-1build1 deb libzstd1 1.5.5+dfsg2-2build1.1 deb @@ -647,17 +643,17 @@ logsave 1.47.0-2.4~exp1ubunt lsb-release 12.0-2 deb mawk 1.3.4.20240123-1build1 deb media-types 10.1.0 deb -mount 2.39.3-9ubuntu6.2 deb -mscorlib 8.0.1224.60305 dotnet +mount 2.39.3-9ubuntu6.1 deb +mscorlib 8.0.624.26715 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.1224.60305 dotnet +netstandard 8.0.624.26715 dotnet openssl 3.0.13-0ubuntu3.4 deb passwd 1:4.13+dfsg1-4ubuntu3.2 deb patch 2.7.6-7build3 deb -perl-base 5.38.2-3.2build2.1 deb +perl-base 5.38.2-3.2build2 deb pinentry-curses 1.2.1-3ubuntu5 deb procps 2:4.0.4-4ubuntu3.2 deb publicsuffix 20231001.0357-0.1 deb @@ -703,12 +699,11 @@ ubuntu-pro-client 34~24.04 ubuntu-pro-client 8001 python ubuntu-pro-client-l10n 34~24.04 deb ubuntu-release-upgrader-core 1:24.04.23 deb -unminimize 0.2.1 deb unzip 6.0-28ubuntu4.1 deb update-manager-core 1:24.04.9 deb update-notifier-common 3.192.68build3 deb uplink.NET 2.13.0.3489+f4531debbac8b29d6a048345ea261f701e38309c dotnet -util-linux 2.39.3-9ubuntu6.2 deb +util-linux 2.39.3-9ubuntu6.1 deb wget 1.21.4-1ubuntu4.1 deb x11-common 1:7.7+23ubuntu3 deb xdg-user-dirs 0.18-1build1 deb diff --git a/readme-vars.yml b/readme-vars.yml index bc8a480..917da5f 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -6,6 +6,7 @@ project_url: "https://www.duplicati.com/" project_logo: "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/duplicati-icon.png" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a backup client that securely stores encrypted, incremental, compressed backups on local storage, cloud storage services and remote file servers. It works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon S3, Google Drive, box.com, Mega, B2, and many others." project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" +project_categories: "Backup" # supported architectures available_architectures: - {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} @@ -13,8 +14,8 @@ available_architectures: # development version development_versions: true development_versions_items: - - {tag: "latest", desc: "Beta releases of Duplicati"} - - {tag: "development", desc: "Canary releases of Duplicati"} + - {tag: "latest", desc: "Stable releases of Duplicati"} + - {tag: "development", desc: "Beta releases of Duplicati"} # container parameters common_param_env_vars_enabled: true param_container_name: "{{ project_name }}" @@ -34,7 +35,6 @@ opt_param_usage_include_env: true opt_param_env_vars: - {env_var: "CLI_ARGS", env_value: "", desc: "Optionally specify any [CLI variables](https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/) you want to launch the app with"} - {env_var: "DUPLICATI__WEBSERVICE_PASSWORD", env_value: "", desc: "Password for the webui. If left unset will default to `changeme` and can be changed from the webui settings."} -readonly_supported: true # application setup block app_setup_block_enabled: true app_setup_block: | @@ -43,7 +43,7 @@ app_setup_block: | For local backups select `/backups` as the destination. For more information see [Duplicati]({{project_url}}). # init diagram init_diagram: | - "duplicati:development": { + "duplicati:latest": { docker-mods base { fix-attr +\nlegacy cont-init @@ -79,21 +79,22 @@ init_diagram: | Base Images: { "baseimage-ubuntu:noble" } - "duplicati:development" <- Base Images + "duplicati:latest" <- Base Images # changelog changelogs: + - {date: "31.01.25:", desc: "Make `latest` stable releases, move beta releases to `development`."} - {date: "28.01.25:", desc: "Add xz-utils."} - {date: "03.12.24:", desc: "Add mscorefonts for captcha support."} - - {date: "29.08.24:", desc: "Add support for settings DB encryption."} - - {date: "30.05.24:", desc: "Rebase to Noble, switch to net core."} + - {date: "29.11.24:", desc: "Rebase to Noble, add support for settings DB encryption."} - {date: "15.02.23:", desc: "Rebase to Jammy."} - {date: "03.08.22:", desc: "Deprecate armhf."} - - {date: "13.03.22:", desc: "Fix artifact link."} - - {date: "10.03.21:", desc: "Rebase to focal baseimage with mono 6.12+."} + - {date: "25.04.22:", desc: "Rebase to mono:focal."} - {date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version."} - {date: "16.07.19:", desc: "Allow for additional command line arguments in an environment variable."} + - {date: "28.06.19:", desc: "Rebase to bionic."} - {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."} - - {date: "11.03.19:", desc: "Rebase to bionic, add rclone."} + - {date: "28.02.19:", desc: "Allow access from all hostnames, clarify info on image tags."} + - {date: "13.01.19:", desc: "Use jq instead of awk in dockerfiles."} - {date: "11.01.19:", desc: "Multi-arch image."} - {date: "09.12.17:", desc: "Fix continuation lines."} - {date: "31.08.17:", desc: "Build only beta or release versions (thanks deasmi)."} diff --git a/root/etc/s6-overlay/s6-rc.d/init-duplicati-config/run b/root/etc/s6-overlay/s6-rc.d/init-duplicati-config/run index 4754272..e250138 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-duplicati-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-duplicati-config/run @@ -30,7 +30,7 @@ else fi fi -# permissions +# permissions lsiown -R abc:abc \ /config \ /run/duplicati-temp