Skip to content

Commit 4fda18c

Browse files
committed
v3.1.0
1 parent 78cc980 commit 4fda18c

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.1.0
2+
- Added .NET 8 target framework
3+
14
## 3.0.1
25
- All invalid patch operations now correctly throw JsonPatchTestOperationException and malformed patch documents throw JsonPatchException
36

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ This test deserializes a JSON patch document of 8 operations and applies the cha
6060

6161
See [SystemTextJsonPatch.Benchmark](https://github.com/Havunen/SystemTextJsonPatch/tree/main/SystemTextJsonPatch.Benchmark) for more details.
6262

63-
BenchmarkDotNet v0.13.7, Windows 11 (10.0.22621.2134/22H2/2022Update/SunValley2)
63+
BenchmarkDotNet v0.13.10, Windows 11 (10.0.22621.2428/22H2/2022Update/SunValley2)
6464
AMD Ryzen 9 5950X, 1 CPU, 32 logical and 16 physical cores
65-
.NET SDK 8.0.100-preview.7.23376.3
66-
[Host] : .NET 7.0.9 (7.0.923.32018), X64 RyuJIT AVX2
67-
Job-TMETTY : .NET 7.0.9 (7.0.923.32018), X64 RyuJIT AVX2
65+
.NET SDK 8.0.100
66+
[Host] : .NET 8.0.0 (8.0.23.53103), X64 RyuJIT AVX2
67+
Job-NISUXQ : .NET 8.0.0 (8.0.23.53103), X64 RyuJIT AVX2
6868

6969
WarmupCount=2
7070

71-
| Method | Mean | Error | StdDev | Gen0 | Gen1 | Allocated |
72-
|-------------------- |-----------:|-----------:|-----------:|-------:|-------:|----------:|
73-
| SystemTextJsonPatch (v3.0.0) | 4.953 us | 0.0277 us | 0.0259 us | 0.2899 | - | 4.83 KB |
74-
| MarvinJsonPatch (v2.2.1) | 909.176 us | 17.4292 us | 18.6490 us | 5.8594 | 3.9063 | 96.14 KB |
75-
| AspNetCoreJsonPatch (v7.0.10) | 24.742 us | 0.3156 us | 0.2952 us | 2.6550 | 0.0610 | 43.61 KB |
71+
| Method | Mean | Error | StdDev | Gen0 | Gen1 | Allocated |
72+
|-------------------- |-----------:|----------:|----------:|-------:|-------:|----------:|
73+
| SystemTextJsonPatch 3.1.0 | 4.043 us | 0.0122 us | 0.0109 us | 0.2899 | - | 4.81 KB |
74+
| MarvinJsonPatch 2.2.1 | 745.778 us | 6.4053 us | 6.2909 us | 3.9063 | 1.9531 | 95.53 KB |
75+
| AspNetCoreJsonPatch 8.0.0 | 16.294 us | 0.0653 us | 0.0611 us | 2.6550 | 0.0610 | 43.61 KB |

SystemTextJsonPatch/SystemTextJsonPatch.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<NoWarn>$(NoWarn);CS1591</NoWarn>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<PackageTags>aspnetcore;json;jsonpatch;system.text.json;rfc6902;</PackageTags>
9-
<LangVersion>11</LangVersion>
10-
<Version>3.0.1</Version>
9+
<LangVersion>12</LangVersion>
10+
<Version>3.1.0</Version>
1111
<RepositoryUrl>https://github.com/Havunen/SystemTextJsonPatch.git</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<AnalysisLevel>6.0-all</AnalysisLevel>

0 commit comments

Comments
 (0)