Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ updates:
# Check the nuget registry for updates every week:
schedule:
interval: "daily"
ignore:
- dependency-name: "AWSSDK.S3"
versions: [">= 3.7.411.7"]

# Enable version updates for nuget (Fronter.NET.Tests)
- package-ecosystem: "nuget"
Expand Down
12 changes: 6 additions & 6 deletions Fronter.NET/Fronter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.3.13" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.20" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.15" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.20" />
<PackageReference Include="ReactiveUI.Avalonia" Version="11.4.13" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.20" />
<PackageReference Include="AWSSDK.S3" Version="[3.7.411.7]" /> <!-- versions >= 3.7.412.0 didn't work correctly with Backblaze B2 as of 2025-05-17: https://www.backblaze.com/docs/en/cloud-storage-use-the-aws-sdk-for-net-with-backblaze-b2?highlight=Data%20Integrity%20Protection%20Headers -->
<PackageReference Include="DynamicData" Version="9.4.31" />
<PackageReference Include="AWSSDK.S3" Version="4.0.102.3" />
<PackageReference Include="DynamicData" Version="9.4.33" />
<PackageReference Include="MessageBox.Avalonia" Version="3.3.1.1" />
<PackageReference Include="MessageBox.Avalonia.Markdown" Version="3.2.0" />
<PackageReference Include="Meziantou.Analyzer" Version="3.0.156">
<PackageReference Include="Meziantou.Analyzer" Version="3.0.177">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand All @@ -80,11 +80,11 @@
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Notification.Avalonia" Version="2.2.0" />
<PackageReference Include="PGCG.commonItems" Version="23.1.1" />
<PackageReference Include="Roslynator.Analyzers" Version="4.16.0">
<PackageReference Include="Roslynator.Analyzers" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Sentry" Version="6.8.0" />
<PackageReference Include="Sentry" Version="6.9.0" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion Fronter.NET/Services/ConverterLauncher.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Amazon.S3;
using Amazon.Runtime;
using Amazon.S3;
using Amazon.S3.Transfer;
using Avalonia;
using Avalonia.Controls.ApplicationLifetimes;
Expand Down Expand Up @@ -276,6 +277,9 @@ private static async Task UploadSaveArchiveToBackblaze(string archivePath, Sentr

var s3Config = new AmazonS3Config {
ServiceURL = "https://s3.eu-central-003.backblazeb2.com",
// Backblaze B2's S3-compatible API doesn't support the checksum headers that the SDK sends by default.
RequestChecksumCalculation = RequestChecksumCalculation.WHEN_REQUIRED,
ResponseChecksumValidation = ResponseChecksumValidation.WHEN_REQUIRED,
};

var s3Client = new AmazonS3Client(keyId, applicationKey, s3Config);
Expand Down
Loading