Skip to content

Commit d19d5d1

Browse files
committed
Fixes an issue where using SSO profile was giving error while monitoring DLQ in Lambda Test Tool.
1 parent 0e7c0cf commit d19d5d1

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<OutputType>Exe</OutputType>
77
<Description>A tool to help debug and test your .NET Core AWS Lambda functions locally.</Description>
88
<LangVersion>Latest</LangVersion>
9-
<VersionPrefix>0.14.0</VersionPrefix>
9+
<VersionPrefix>0.14.1</VersionPrefix>
1010
<Product>AWS .NET Lambda Test Tool</Product>
1111
<Copyright>Apache 2</Copyright>
1212
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester31-pack.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
77
<Description>A tool to help debug and test your .NET Core 3.1 AWS Lambda functions locally.</Description>
8-
<VersionPrefix>0.14.0</VersionPrefix>
8+
<VersionPrefix>0.14.1</VersionPrefix>
99
<Product>AWS .NET Lambda Test Tool</Product>
1010
<Copyright>Apache 2</Copyright>
1111
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester50-pack.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
77
<Description>A tool to help debug and test your .NET 5.0 AWS Lambda functions locally.</Description>
8-
<VersionPrefix>0.14.0</VersionPrefix>
8+
<VersionPrefix>0.14.1</VersionPrefix>
99
<Product>AWS .NET Lambda Test Tool</Product>
1010
<Copyright>Apache 2</Copyright>
1111
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester60-pack.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
77
<Description>A tool to help debug and test your .NET 6.0 AWS Lambda functions locally.</Description>
8-
<VersionPrefix>0.14.0</VersionPrefix>
8+
<VersionPrefix>0.14.1</VersionPrefix>
99
<Product>AWS .NET Lambda Test Tool</Product>
1010
<Copyright>Apache 2</Copyright>
1111
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Tools/LambdaTestTool/src/Amazon.Lambda.TestTool.BlazorTester/Amazon.Lambda.TestTool.BlazorTester70-pack.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
77
<Description>A tool to help debug and test your .NET 7.0 AWS Lambda functions locally.</Description>
8-
<VersionPrefix>0.14.0</VersionPrefix>
8+
<VersionPrefix>0.14.1</VersionPrefix>
99
<Product>AWS .NET Lambda Test Tool</Product>
1010
<Copyright>Apache 2</Copyright>
1111
<PackageTags>AWS;Amazon;Lambda</PackageTags>

Tools/LambdaTestTool/src/Amazon.Lambda.TestTool/Amazon.Lambda.TestTool.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
13+
<PackageReference Include="AWSSDK.SSO" Version="3.7.200.18" />
14+
<PackageReference Include="AWSSDK.SSOOIDC" Version="3.7.200.18" />
1315
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1416
<PackageReference Include="YamlDotNet.Signed" Version="5.2.1" />
1517

16-
<PackageReference Include="AWSSDK.Core" Version="3.7.0" />
17-
<PackageReference Include="AWSSDK.SQS" Version="3.7.0" />
18+
<PackageReference Include="AWSSDK.Core" Version="3.7.200.18" />
19+
<PackageReference Include="AWSSDK.SQS" Version="3.7.200.19" />
1820
</ItemGroup>
1921

2022
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">

Tools/LambdaTestTool/tests/Amazon.Lambda.TestTool.Tests.NETCore31/Amazon.Lambda.TestTool.Tests.NETCore31.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageReference Include="xunit" Version="2.3.1" />
1717
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
1818
<PackageReference Include="LitJson" Version="0.13.0" />
19-
<PackageReference Include="AWSSDK.SQS" Version="3.7.0" />
19+
<PackageReference Include="AWSSDK.SQS" Version="3.7.200.19" />
2020
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
2121
</ItemGroup>
2222
<ItemGroup>

0 commit comments

Comments
 (0)