mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-17 14:40:00 +02:00
1.8.8
This commit is contained in:
@@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"TestRunner": "",
|
|
||||||
"TestPlatform": "x86",
|
|
||||||
"TestApartmentState": "STA",
|
|
||||||
"TestSettings": "",
|
|
||||||
"ExcludeAttributes": "System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute",
|
|
||||||
"ExcludeFiles": "",
|
|
||||||
"ExcludeDirectories": "",
|
|
||||||
"Filters": "+[*]*",
|
|
||||||
"IsIncludingSolutionAssemblies": true,
|
|
||||||
"IsExcludingTestAssemblies": false,
|
|
||||||
"IsCoveringByTest": true,
|
|
||||||
"IsMergingByHash": true,
|
|
||||||
"IsSkippingAutoProps": true
|
|
||||||
}
|
|
||||||
11
.vscode/launch.json
vendored
11
.vscode/launch.json
vendored
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": ".NET Core Attach",
|
|
||||||
"type": "coreclr",
|
|
||||||
"request": "attach",
|
|
||||||
"processId": "${command:pickProcess}"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
17
.vscode/tasks.json
vendored
17
.vscode/tasks.json
vendored
@@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
||||||
// for the documentation about the tasks.json format
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"taskName": "build_WireMock.Net.StandAlone.NETCoreApp",
|
|
||||||
"command": "dotnet build ${workspaceRoot}/examples/WireMock.Net.StandAlone.NETCoreApp/WireMock.Net.StandAlone.NETCoreApp.csproj -f netcoreapp2.0 ",
|
|
||||||
"type": "shell",
|
|
||||||
"group": "build",
|
|
||||||
"presentation": {
|
|
||||||
"reveal": "silent"
|
|
||||||
},
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
# 1.8.8 (24 May 2025)
|
||||||
|
- [#1300](https://github.com/wiremock/WireMock.Net/pull/1300) - Create WireMock.Net.MimePart project [feature] contributed by [StefH](https://github.com/StefH)
|
||||||
|
|
||||||
# 1.8.7 (22 May 2025)
|
# 1.8.7 (22 May 2025)
|
||||||
- [#1297](https://github.com/wiremock/WireMock.Net/pull/1297) - Fix BodyParser to correctly check for json [bug] contributed by [StefH](https://github.com/StefH)
|
- [#1297](https://github.com/wiremock/WireMock.Net/pull/1297) - Fix BodyParser to correctly check for json [bug] contributed by [StefH](https://github.com/StefH)
|
||||||
- [#1299](https://github.com/wiremock/WireMock.Net/pull/1299) - Use TinyMapper.Signed [bug] contributed by [StefH](https://github.com/StefH)
|
- [#1299](https://github.com/wiremock/WireMock.Net/pull/1299) - Use TinyMapper.Signed [bug] contributed by [StefH](https://github.com/StefH)
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>1.8.7</VersionPrefix>
|
<VersionPrefix>1.8.8</VersionPrefix>
|
||||||
<PackageIcon>WireMock.Net-Logo.png</PackageIcon>
|
<PackageIcon>WireMock.Net-Logo.png</PackageIcon>
|
||||||
<PackageProjectUrl>https://github.com/wiremock/WireMock.Net</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/wiremock/WireMock.Net</PackageProjectUrl>
|
||||||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
rem https://github.com/StefH/GitHubReleaseNotes
|
rem https://github.com/StefH/GitHubReleaseNotes
|
||||||
|
|
||||||
SET version=1.8.7
|
SET version=1.8.8
|
||||||
|
|
||||||
GitHubReleaseNotes --output CHANGELOG.md --skip-empty-releases --exclude-labels wontfix test question invalid doc duplicate example environment --version %version% --token %GH_TOKEN%
|
GitHubReleaseNotes --output CHANGELOG.md --skip-empty-releases --exclude-labels wontfix test question invalid doc duplicate example environment --version %version% --token %GH_TOKEN%
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
# 1.8.7 (22 May 2025)
|
# 1.8.8 (24 May 2025)
|
||||||
- #1297 Fix BodyParser to correctly check for json [bug]
|
- #1300 Create WireMock.Net.MimePart project [feature]
|
||||||
- #1299 Use TinyMapper.Signed [bug]
|
|
||||||
- #1301 Fix errors when converting response bodies with top-level JSON arrays to C# code [bug]
|
|
||||||
- #973 TinyMapper error [bug]
|
|
||||||
- #1272 WithMappingFromOpenApiFile fails with exception when example item present in text-plain response in OAS contract
|
|
||||||
- #1295 Content-Type `multipart/form-data` header not proxied [bug]
|
|
||||||
- #1298 TinyMapper error redux [bug]
|
|
||||||
|
|
||||||
The full release notes can be found here: https://github.com/wiremock/WireMock.Net/blob/master/CHANGELOG.md
|
The full release notes can be found here: https://github.com/wiremock/WireMock.Net/blob/master/CHANGELOG.md
|
||||||
Reference in New Issue
Block a user