[PR #783] [MERGED] Fix WithBody when using Pact and added more nullable annotations #1082

Closed
opened 2025-12-29 08:34:36 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/783
Author: @StefH
Created: 8/9/2022
Status: Merged
Merged: 8/11/2022
Merged by: @StefH

Base: masterHead: JsonDefaultSettings-774


📝 Commits (10+)

📊 Changes

87 files changed (+2523 additions, -2400 deletions)

View changed files

📝 WireMock.Net Solution.sln.DotSettings (+1 -0)
📝 src/WireMock.Net.Abstractions/Admin/Mappings/WebProxyModel.cs (+17 -18)
📝 src/WireMock.Net.Abstractions/Admin/Mappings/WebhookRequestModel.cs (+45 -47)
📝 src/WireMock.Net.Abstractions/IRequestMessage.cs (+2 -2)
📝 src/WireMock.Net.Abstractions/IResponseMessage.cs (+53 -54)
📝 src/WireMock.Net.Abstractions/Logging/ILogEntry.cs (+50 -51)
📝 src/WireMock.Net.Abstractions/Models/IWebhook.cs (+8 -9)
📝 src/WireMock.Net.Matchers.CSharpCode/Matchers/CSharpCodeMatcher.cs (+1 -1)
📝 src/WireMock.Net/Authentication/AzureADAuthenticationMatcher.cs (+47 -41)
📝 src/WireMock.Net/Authentication/BasicAuthenticationMatcher.cs (+9 -10)
src/WireMock.Net/Compatibility/EmptyArray.cs (+11 -0)
📝 src/WireMock.Net/Compatibility/WebProxy.cs (+18 -20)
📝 src/WireMock.Net/Extensions/AnyOfExtensions.cs (+13 -15)
📝 src/WireMock.Net/Http/ByteArrayContentHelper.cs (+20 -22)
📝 src/WireMock.Net/Http/HttpKnownHeaderNames.cs (+110 -111)
📝 src/WireMock.Net/Http/HttpRequestMessageHelper.cs (+58 -60)
📝 src/WireMock.Net/Http/HttpRequestMethods.cs (+15 -16)
📝 src/WireMock.Net/Http/StringContentHelper.cs (+15 -17)
📝 src/WireMock.Net/Http/WebhookSender.cs (+56 -58)
📝 src/WireMock.Net/HttpsCertificate/CertificateLoader.cs (+68 -69)

...and 67 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/wiremock/WireMock.Net/pull/783 **Author:** [@StefH](https://github.com/StefH) **Created:** 8/9/2022 **Status:** ✅ Merged **Merged:** 8/11/2022 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `JsonDefaultSettings-774` --- ### 📝 Commits (10+) - [`53fdcd3`](https://github.com/wiremock/WireMock.Net/commit/53fdcd31c432f6e92ad97f3b840fbc7a5f63077f) More nullable annotations - [`47afc4c`](https://github.com/wiremock/WireMock.Net/commit/47afc4cb5f707ae7689297b178f75d1f45132400) . - [`0aadf26`](https://github.com/wiremock/WireMock.Net/commit/0aadf269ade7e37c00edf0e8b4a698783cebfa8e) . - [`1aca9fa`](https://github.com/wiremock/WireMock.Net/commit/1aca9fad46713cc69d5f05aba482ca2e80ed4c9f) FIX - [`7fcc299`](https://github.com/wiremock/WireMock.Net/commit/7fcc29917ab16c42327dc9f8db6228a973e34a39) pact - [`5877c49`](https://github.com/wiremock/WireMock.Net/commit/5877c496e864d2bb1a81675ff514d29b88247221) . - [`b6ea45c`](https://github.com/wiremock/WireMock.Net/commit/b6ea45c8a328f6168f23ca929126b376f3be04a4) M - [`804d2d2`](https://github.com/wiremock/WireMock.Net/commit/804d2d2620f9a60c30ed96a148efcc98827abb74) p - [`34cfbed`](https://github.com/wiremock/WireMock.Net/commit/34cfbed3cf654b4f1282b0878d28b132810ec761) xxx - [`006fc53`](https://github.com/wiremock/WireMock.Net/commit/006fc537d1482cc8fac76778786e996033681bcc) ... ### 📊 Changes **87 files changed** (+2523 additions, -2400 deletions) <details> <summary>View changed files</summary> 📝 `WireMock.Net Solution.sln.DotSettings` (+1 -0) 📝 `src/WireMock.Net.Abstractions/Admin/Mappings/WebProxyModel.cs` (+17 -18) 📝 `src/WireMock.Net.Abstractions/Admin/Mappings/WebhookRequestModel.cs` (+45 -47) 📝 `src/WireMock.Net.Abstractions/IRequestMessage.cs` (+2 -2) 📝 `src/WireMock.Net.Abstractions/IResponseMessage.cs` (+53 -54) 📝 `src/WireMock.Net.Abstractions/Logging/ILogEntry.cs` (+50 -51) 📝 `src/WireMock.Net.Abstractions/Models/IWebhook.cs` (+8 -9) 📝 `src/WireMock.Net.Matchers.CSharpCode/Matchers/CSharpCodeMatcher.cs` (+1 -1) 📝 `src/WireMock.Net/Authentication/AzureADAuthenticationMatcher.cs` (+47 -41) 📝 `src/WireMock.Net/Authentication/BasicAuthenticationMatcher.cs` (+9 -10) ➕ `src/WireMock.Net/Compatibility/EmptyArray.cs` (+11 -0) 📝 `src/WireMock.Net/Compatibility/WebProxy.cs` (+18 -20) 📝 `src/WireMock.Net/Extensions/AnyOfExtensions.cs` (+13 -15) 📝 `src/WireMock.Net/Http/ByteArrayContentHelper.cs` (+20 -22) 📝 `src/WireMock.Net/Http/HttpKnownHeaderNames.cs` (+110 -111) 📝 `src/WireMock.Net/Http/HttpRequestMessageHelper.cs` (+58 -60) 📝 `src/WireMock.Net/Http/HttpRequestMethods.cs` (+15 -16) 📝 `src/WireMock.Net/Http/StringContentHelper.cs` (+15 -17) 📝 `src/WireMock.Net/Http/WebhookSender.cs` (+56 -58) 📝 `src/WireMock.Net/HttpsCertificate/CertificateLoader.cs` (+68 -69) _...and 67 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 08:34:36 +01:00
adam closed this issue 2025-12-29 08:34:36 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WireMock.Net#1082