Skip to content

Commit c135854

Browse files
committed
1.5.52
1 parent 54fe082 commit c135854

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.5.52 (06 April 2024)
2+
- [#1091](https://github.com/WireMock-Net/WireMock.Net/pull/1091) - Add RegEx support to JsonMatcher [feature] contributed by [StefH](https://github.com/StefH)
3+
- [#1088](https://github.com/WireMock-Net/WireMock.Net/issues/1088) - Regex support for JsonMatcher [feature]
4+
15
# 1.5.51 (20 March 2024)
26
- [#1085](https://github.com/WireMock-Net/WireMock.Net/pull/1085) - Fix FluentAssertions (actual body is not displayed in error message) [bug] contributed by [StefH](https://github.com/StefH)
37
- [#1084](https://github.com/WireMock-Net/WireMock.Net/issues/1084) - FluentAssertions - Actual body is not displayed in error message when using Json Body [bug]

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</PropertyGroup>
55

66
<PropertyGroup>
7-
<VersionPrefix>1.5.51</VersionPrefix>
7+
<VersionPrefix>1.5.52</VersionPrefix>
88
<PackageIcon>WireMock.Net-Logo.png</PackageIcon>
99
<PackageProjectUrl>https://github.com/WireMock-Net/WireMock.Net</PackageProjectUrl>
1010
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

Generate-ReleaseNotes.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rem https://github.com/StefH/GitHubReleaseNotes
22

3-
SET version=1.5.51
3+
SET version=1.5.52
44

55
GitHubReleaseNotes --output CHANGELOG.md --skip-empty-releases --exclude-labels question invalid doc duplicate example --version %version% --token %GH_TOKEN%
66

PackageReleaseNotes.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# 1.5.51 (20 March 2024)
2-
- #1085 Fix FluentAssertions (actual body is not displayed in error message) [bug]
3-
- #1084 FluentAssertions - Actual body is not displayed in error message when using Json Body [bug]
1+
# 1.5.52 (06 April 2024)
2+
- #1091 Add RegEx support to JsonMatcher [feature]
3+
- #1088 Regex support for JsonMatcher [feature]
44

55
The full release notes can be found here: https://github.com/WireMock-Net/WireMock.Net/blob/master/CHANGELOG.md

src/WireMock.Net/Matchers/JsonMatcher.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ protected virtual bool IsMatch(JToken value, JToken? input)
112112
return true;
113113
}
114114

115-
// If input, return false.
115+
// If input is null, return false.
116116
if (input == null)
117117
{
118118
return false;

0 commit comments

Comments
 (0)