diff --git a/.github/gitversion.yml b/.github/gitversion.yml index e15a10c..9c2ba78 100644 --- a/.github/gitversion.yml +++ b/.github/gitversion.yml @@ -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}' diff --git a/Dockerfile.debian b/Dockerfile.debian index e8f3d8e..025083b 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -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 \ diff --git a/src/Explore.Cli/MappingHelpers/Pact/PactMappingHelper.cs b/src/Explore.Cli/MappingHelpers/Pact/PactMappingHelper.cs index 0ebc092..c74a47c 100644 --- a/src/Explore.Cli/MappingHelpers/Pact/PactMappingHelper.cs +++ b/src/Explore.Cli/MappingHelpers/Pact/PactMappingHelper.cs @@ -90,7 +90,7 @@ public static Dictionary CreatePactPathsDictionary(object reques { var methodJson = new Dictionary { - { 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 @@ -138,7 +138,7 @@ public static Dictionary CreatePactPathsDictionary(object reques { var methodJson = new Dictionary { - { 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 @@ -186,7 +186,7 @@ public static Dictionary CreatePactPathsDictionary(object reques { var methodJson = new Dictionary { - { 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