Skip to content

Commit 1789aee

Browse files
committed
Update to JsonApiDotNetCore 5.7.1
1 parent 83ed214 commit 1789aee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package-versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<!-- Published dependencies (only update on major version change) -->
4-
<JsonApiDotNetCoreFrozenVersion>5.6.0</JsonApiDotNetCoreFrozenVersion>
4+
<JsonApiDotNetCoreFrozenVersion>5.7.1</JsonApiDotNetCoreFrozenVersion>
55
<MongoDBDriverFrozenVersion>3.3.0</MongoDBDriverFrozenVersion>
66

77
<!-- Non-published dependencies (these are safe to update, won't cause a breaking change) -->

test/TestBuildingBlocks/IntegrationTest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ namespace TestBuildingBlocks;
1313
/// </summary>
1414
public abstract class IntegrationTest : IAsyncLifetime
1515
{
16-
private static readonly MediaTypeHeaderValue DefaultMediaType = MediaTypeHeaderValue.Parse(HeaderConstants.MediaType);
16+
private static readonly MediaTypeHeaderValue DefaultMediaType = MediaTypeHeaderValue.Parse(JsonApiMediaType.Default.ToString());
1717

1818
private static readonly MediaTypeWithQualityHeaderValue OperationsMediaType =
19-
MediaTypeWithQualityHeaderValue.Parse(HeaderConstants.AtomicOperationsMediaType);
19+
MediaTypeWithQualityHeaderValue.Parse(JsonApiMediaType.AtomicOperations.ToString());
2020

2121
private static readonly SemaphoreSlim ThrottleSemaphore = GetDefaultThrottleSemaphore();
2222

0 commit comments

Comments
 (0)