Skip to content
Closed
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
2 changes: 2 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@
<PackageVersion Include="AWSSDK.CloudFront" Version="4.0.0.10" />
<PackageVersion Include="AWSSDK.CloudFrontKeyValueStore" Version="4.0.0.9" />
<PackageVersion Include="AWSSDK.Core" Version="4.0.0.2" />
<PackageVersion Include="AWSSDK.Extensions.CrtIntegration" Version="4.0.0" />
<PackageVersion Include="AWSSDK.SQS" Version="4.0.0.1" />
<PackageVersion Include="AWSSDK.S3" Version="4.0.0.1" />
<PackageVersion Include="FakeItEasy" Version="8.3.0" />
<PackageVersion Include="Elastic.Ingest.Elasticsearch" Version="0.11.3" />
<PackageVersion Include="Microsoft.OpenApi" Version="2.0.0-preview9" />
<PackageVersion Include="System.Private.Uri" Version="4.3.2" />
<PackageVersion Include="System.Text.Json" Version="9.0.5" />
</ItemGroup>
<!-- Build -->
Expand Down
5 changes: 5 additions & 0 deletions src/tooling/docs-assembler/Cli/DeployCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
using Amazon.CloudFront;
using Amazon.CloudFrontKeyValueStore;
using Amazon.CloudFrontKeyValueStore.Model;
using Amazon.Extensions.CrtIntegration;
using Amazon.RuntimeDependencies;
using Amazon.S3;
using Amazon.S3.Transfer;
using ConsoleAppFramework;
Expand Down Expand Up @@ -132,6 +134,9 @@ public async Task<int> UpdateRedirects(
return collector.Errors;
}

GlobalRuntimeDependencyRegistry.Instance.RegisterSigV4aProvider((context)
=> new CrtAWS4aSigner(context.SigV4aCrtSignerContextData.SignPayload));

ConsoleApp.Log("Parsing redirects mapping");
var jsonContent = await File.ReadAllTextAsync(redirectsFile, ctx);
var sourcedRedirects = JsonSerializer.Deserialize(jsonContent, SourceGenerationContext.Default.DictionaryStringString);
Expand Down
3 changes: 3 additions & 0 deletions src/tooling/docs-assembler/docs-assembler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@
<ItemGroup>
<PackageReference Include="AWSSDK.CloudFront" />
<PackageReference Include="AWSSDK.CloudFrontKeyValueStore" />
<PackageReference Include="AWSSDK.Extensions.CrtIntegration" />
<PackageReference Include="AWSSDK.S3"/>
<PackageReference Include="ConsoleAppFramework.Abstractions"/>
<PackageReference Include="ConsoleAppFramework" />
<PackageReference Include="Elastic.Ingest.Elasticsearch" />
<PackageReference Include="Proc" />
<!-- System.Private.Uri is added explicitly due to vulnerabilities on 4.3.0 which AWSSDK.Extensions.CrtIntegration requires -->
<PackageReference Include="System.Private.Uri" />
<PackageReference Include="YamlDotNet" />
<PackageReference Include="NetEscapades.EnumGenerators" />
<PackageReference Include="Vecc.YamlDotNet.Analyzers.StaticGenerator" />
Expand Down
Loading