Skip to content

Commit 7c95a73

Browse files
committed
deps: Upgrade all dependencies
We are targetting net8.0 so we avoid picking the 9.x packages.
1 parent 4db8030 commit 7c95a73

File tree

7 files changed

+26
-26
lines changed

7 files changed

+26
-26
lines changed

src/Spark.Engine.Test/Formatters/ResourceJsonInputFormatterTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ public class ResourceJsonInputFormatterTests : FormatterTestBase
3333
[InlineData("text/*", false)]
3434
[InlineData("text/xml", false)]
3535
[InlineData("application/xml", false)]
36-
[InlineData("application/some.entity+json", true)]
37-
[InlineData("application/some.entity+json;v=2", true)]
36+
[InlineData("application/some.entity+json", false)]
37+
[InlineData("application/some.entity+json;v=2", false)]
3838
[InlineData("application/some.entity+xml", false)]
3939
[InlineData("application/some.entity+*", false)]
40-
[InlineData("text/some.entity+json", true)]
40+
[InlineData("text/some.entity+json", false)]
4141
[InlineData("", false)]
4242
[InlineData(null, false)]
4343
[InlineData("invalid", false)]
@@ -124,4 +124,4 @@ protected static ResourceJsonInputFormatter GetInputFormatter(ParserSettings par
124124
new FhirJsonParser(parserSettings),
125125
ArrayPool<char>.Shared);
126126
}
127-
}
127+
}

src/Spark.Engine.Test/Formatters/ResourceXmlInputFormatterTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public class ResourceXmlInputFormatterTests : FormatterTestBase
3030
[InlineData("text/*", false)]
3131
[InlineData("text/json", false)]
3232
[InlineData("application/json", false)]
33-
[InlineData("application/some.entity+xml", true)]
34-
[InlineData("application/some.entity+xml;v=2", true)]
33+
[InlineData("application/some.entity+xml", false)]
34+
[InlineData("application/some.entity+xml;v=2", false)]
3535
[InlineData("application/some.entity+json", false)]
3636
[InlineData("application/some.entity+*", false)]
37-
[InlineData("text/some.entity+xml", true)]
37+
[InlineData("text/some.entity+xml", false)]
3838
[InlineData("", false)]
3939
[InlineData(null, false)]
4040
[InlineData("invalid", false)]
@@ -104,4 +104,4 @@ protected static ResourceXmlInputFormatter GetInputFormatter(ParserSettings pars
104104
return new ResourceXmlInputFormatter(
105105
new FhirXmlParser(parserSettings));
106106
}
107-
}
107+
}

src/Spark.Engine.Test/Spark.Engine.Test.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
1010
<PackageReference Include="Moq" Version="4.20.72" />
11-
<PackageReference Include="MSTest.TestAdapter" Version="3.7.3" />
12-
<PackageReference Include="MSTest.TestFramework" Version="3.7.3" />
13-
<PackageReference Include="NuGet.Versioning" Version="6.12.1" />
11+
<PackageReference Include="MSTest.TestAdapter" Version="3.8.3" />
12+
<PackageReference Include="MSTest.TestFramework" Version="3.8.3" />
13+
<PackageReference Include="NuGet.Versioning" Version="6.13.2" />
1414
<PackageReference Include="xunit" Version="2.9.3" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
15+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>

src/Spark.Engine/Spark.Engine.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Fhir.Metrics" Version="1.3.0" />
14-
<PackageReference Include="Hl7.Fhir.R4" Version="5.11.2" />
15-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.1" />
13+
<PackageReference Include="Fhir.Metrics" Version="1.3.1" />
14+
<PackageReference Include="Hl7.Fhir.R4" Version="5.11.4" />
15+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.4" />
1616
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
1717
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.2" />
1818
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
1919
</ItemGroup>
2020

2121
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
22-
<PackageReference Include="Microsoft.AspNetCore.Mvc.WebApiCompatShim" Version="2.2.0" />
22+
<PackageReference Include="Microsoft.AspNetCore.Mvc.WebApiCompatShim" Version="2.3.0" />
2323
</ItemGroup>
2424

2525
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">

src/Spark.Mongo.Tests/Spark.Mongo.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
1010
<PackageReference Include="xunit" Version="2.9.3" />
11-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
11+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>

src/Spark.Mongo/Spark.Mongo.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Hl7.Fhir.R4" Version="5.11.2" />
14-
<PackageReference Include="MongoDB.Driver" Version="3.1.0" />
13+
<PackageReference Include="Hl7.Fhir.R4" Version="5.11.4" />
14+
<PackageReference Include="MongoDB.Driver" Version="3.3.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

src/Spark.Web/Spark.Web.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.12" />
11-
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.12" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.12" />
13-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.15" />
11+
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.15" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
13+
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

0 commit comments

Comments
 (0)