Skip to content

Commit

Permalink
bump dependencies and address lint issue in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AerisG222 committed Sep 30, 2023
1 parent ed743ef commit a9c2821
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/Maw.Domain/Maw.Domain.csproj
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Google.Apis.Gmail.v1" Version="1.62.0.3175" />
<PackageReference Include="Google.Apis.Gmail.v1" Version="1.62.1.3189" />
<PackageReference Include="IdentityModel" Version="6.2.0" />
<PackageReference Include="MailKit" Version="4.2.0" />
<PackageReference Include="MedallionShell" Version="1.6.2" />
Expand Down
4 changes: 2 additions & 2 deletions src/auth/auth.csproj
Expand Up @@ -14,8 +14,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Duende.IdentityServer" Version="6.3.4" />
<PackageReference Include="Duende.IdentityServer.AspNetIdentity" Version="6.3.4" />
<PackageReference Include="Duende.IdentityServer" Version="6.3.5" />
<PackageReference Include="Duende.IdentityServer.AspNetIdentity" Version="6.3.5" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="7.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" Version="7.0.11" />
Expand Down
4 changes: 2 additions & 2 deletions tests/Maw.Cache.Tests/Maw.Cache.Tests.csproj
Expand Up @@ -10,8 +10,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="StackExchange.Redis" Version="2.6.122" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions tests/Maw.Data.Tests/Maw.Data.Tests.csproj
Expand Up @@ -7,15 +7,15 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="xunit.analyzers" Version="1.2.0" />
<PackageReference Include="xunit.analyzers" Version="1.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions tests/Maw.Data.Tests/PhotoRepositoryTests.cs
Expand Up @@ -12,7 +12,7 @@ public async Task GetAllCategories_ShouldReturnPopulatedObjects()
{
var repo = GetRepo();

var categories = await repo.GetAllCategoriesAsync(new string[] { "friend" }).ConfigureAwait(false);
var categories = await repo.GetAllCategoriesAsync(new string[] { "friend" });

Assert.NotNull(categories);
Assert.NotNull(categories.First().TeaserImage);
Expand All @@ -24,7 +24,7 @@ public async Task GetPhotos_ShouldReturnPopulatedObjects()
{
var repo = GetRepo();

var photos = await repo.GetPhotosForCategoryAsync(1, new string[] { "friend" }).ConfigureAwait(false);
var photos = await repo.GetPhotosForCategoryAsync(1, new string[] { "friend" });

Assert.NotNull(photos);
Assert.NotNull(photos.First().XsInfo);
Expand Down
4 changes: 2 additions & 2 deletions tests/Maw.Data.Tests/VideoRepositoryTests.cs
Expand Up @@ -12,7 +12,7 @@ public async Task GetAllCategories_ShouldReturnPopulatedObjects()
{
var repo = GetRepo();

var categories = await repo.GetAllCategoriesAsync(new string[] { "friend" }).ConfigureAwait(false);
var categories = await repo.GetAllCategoriesAsync(new string[] { "friend" });

Assert.NotNull(categories);
Assert.NotNull(categories.First().TeaserImage);
Expand All @@ -24,7 +24,7 @@ public async Task GetVideos_ShouldReturnPopulatedObjects()
{
var repo = GetRepo();

var videos = await repo.GetVideosInCategoryAsync(1, new string[] { "friend" }).ConfigureAwait(false);
var videos = await repo.GetVideosInCategoryAsync(1, new string[] { "friend" });

Assert.NotNull(videos);
Assert.NotNull(videos.First().VideoScaled);
Expand Down
4 changes: 2 additions & 2 deletions tests/Maw.Domain.Models.Tests/Maw.Domain.Models.Tests.csproj
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit a9c2821

Please sign in to comment.