Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/gitversion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 0.8.1
next-version: 0.8.2
assembly-versioning-scheme: MajorMinorPatch
assembly-file-versioning-scheme: MajorMinorPatchTag
assembly-informational-format: '{InformationalVersion}'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM debian:12-slim
ARG VERSION=0.8.1
ARG VERSION=0.8.2
RUN apt update && apt install -y curl libicu-dev

RUN if [ "$(uname -m)" = "aarch64" ]; then \
Expand Down
6 changes: 3 additions & 3 deletions src/Explore.Cli/MappingHelpers/Pact/PactMappingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static Dictionary<string, object> CreatePactPathsDictionary(object reques
{
var methodJson = new Dictionary<string, object>
{
{ v4Request.Method?.ToString()?.Replace("Method", string.Empty) ?? string.Empty, pathsContent }
{ v4Request.Method?.ToString()?.Replace("Method", string.Empty).ToLower() ?? string.Empty, pathsContent }
};

var json = new Dictionary<string, object>
Expand Down Expand Up @@ -138,7 +138,7 @@ public static Dictionary<string, object> CreatePactPathsDictionary(object reques
{
var methodJson = new Dictionary<string, object>
{
{ v3Request.Method?.ToString()?.Replace("Method", string.Empty) ?? string.Empty, pathsContent }
{ v3Request.Method?.ToString()?.Replace("Method", string.Empty).ToLower() ?? string.Empty, pathsContent }
};

var json = new Dictionary<string, object>
Expand Down Expand Up @@ -186,7 +186,7 @@ public static Dictionary<string, object> CreatePactPathsDictionary(object reques
{
var methodJson = new Dictionary<string, object>
{
{ v2Request.Method?.ToString()?.Replace("Method", string.Empty) ?? string.Empty, pathsContent }
{ v2Request.Method?.ToString()?.Replace("Method", string.Empty).ToLower() ?? string.Empty, pathsContent }
};

var json = new Dictionary<string, object>
Expand Down
Loading