You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
# 1.6.12 (21 January 2025)
2
+
-[#1231](https://github.com/WireMock-Net/WireMock.Net/pull/1231) - Fix google protobuf WellKnownTypes: Empty, Duration and Timestamp [bug] contributed by [StefH](https://github.com/StefH)
3
+
-[#1235](https://github.com/WireMock-Net/WireMock.Net/pull/1235) - Fix ArgumentException in FindLogEntries [bug] contributed by [StefH](https://github.com/StefH)
4
+
-[#1241](https://github.com/WireMock-Net/WireMock.Net/pull/1241) - Upgrade to Handlebars.Net.Helpers 2.4.9 [bug] contributed by [StefH](https://github.com/StefH)
5
+
-[#1227](https://github.com/WireMock-Net/WireMock.Net/issues/1227) - unable to call grpc method with namespace [bug]
6
+
-[#1228](https://github.com/WireMock-Net/WireMock.Net/issues/1228) - how to set datetime for grpc field [bug]
-[#1240](https://github.com/WireMock-Net/WireMock.Net/issues/1240) - Method 'get_Category' in type 'WireMock.Transformers.Handlebars.FileHelpers' [bug]
9
+
1
10
# 1.6.11 (02 January 2025)
2
11
-[#1221](https://github.com/WireMock-Net/WireMock.Net/pull/1221) - Add overloads to AtUrl and AtAbsoluteUrl which can use a IStringMatcher [feature] contributed by [StefH](https://github.com/StefH)
3
12
-[#1222](https://github.com/WireMock-Net/WireMock.Net/pull/1222) - Fix WireMockContainerBuilder (duplicate entries) [bug] contributed by [StefH](https://github.com/StefH)
@@ -21,91 +20,91 @@ public interface IFileSystemHandler
21
20
/// </summary>
22
21
/// <param name="path">The path.</param>
23
22
/// <returns>true if path refers to an existing directory; false if the directory does not exist or an error occurs when trying to determine if the specified directory exists.</returns>
24
-
boolFolderExists([NotNull]stringpath);
23
+
boolFolderExists(stringpath);
25
24
26
25
/// <summary>
27
26
/// Creates all directories and subdirectories in the specified path unless they already exist.
28
27
/// </summary>
29
28
/// <param name="path">The path.</param>
30
-
voidCreateFolder([NotNull]stringpath);
29
+
voidCreateFolder(stringpath);
31
30
32
31
/// <summary>
33
32
/// Returns an enumerable collection of file names in a specified path.
34
33
/// </summary>
35
34
/// <param name="path">The path.</param>
36
-
/// <param name="includeSubdirectories">A value indicating whether subdirectories should also included when enumerating files.</param>
35
+
/// <param name="includeSubdirectories">A value indicating whether subdirectories should also be included when enumerating files.</param>
37
36
/// <returns>An enumerable collection of the full names (including paths) for the files in the directory (and optionally subdirectories) specified by path.</returns>
// Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq
3
+
// Copied from https://github.com/Handlebars-Net/Handlebars.Net.Helpers/blob/master/src/Handlebars.Net.Helpers.DynamicLinq which is copied from https://github.com/StefH/JsonConverter
0 commit comments