Skip to content

Commit 43cff52

Browse files
committed
1.8.12
1 parent 7b93b26 commit 43cff52

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

.github/workflows/CreateRelease.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: CreateRelease
22

3+
permissions:
4+
contents: write
5+
36
on:
47
push:
58
tags:
@@ -10,6 +13,9 @@ jobs:
1013
runs-on: ubuntu-latest
1114
steps:
1215
- name: Checkout
13-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
17+
1418
- name: Release
15-
uses: softprops/action-gh-release@v1
19+
uses: softprops/action-gh-release@v2
20+
with:
21+
generate_release_notes: true

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.8.12 (15 June 2025)
2+
- [#1317](https://github.com/wiremock/WireMock.Net/pull/1317) - Set description when converting MappingModel to IRespondWithAProvider [feature] contributed by [BodrickLight](https://github.com/BodrickLight)
3+
- [#1320](https://github.com/wiremock/WireMock.Net/pull/1320) - Fix TypeLoader [bug] contributed by [StefH](https://github.com/StefH)
4+
- [#1319](https://github.com/wiremock/WireMock.Net/issues/1319) - Why is IRequestMessage.BodyAsMimeMessage null in new versions (> 1.8.7) [bug]
5+
16
# 1.8.11 (11 June 2025)
27
- [#1311](https://github.com/wiremock/WireMock.Net/pull/1311) - Bump Testcontainers version to 4.5.0 [feature] contributed by [scrocquesel](https://github.com/scrocquesel)
38
- [#1313](https://github.com/wiremock/WireMock.Net/pull/1313) - Update RandomDataGenerator.Net to 1.0.19 [feature] contributed by [StefH](https://github.com/StefH)

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</PropertyGroup>
55

66
<PropertyGroup>
7-
<VersionPrefix>1.8.11</VersionPrefix>
7+
<VersionPrefix>1.8.12</VersionPrefix>
88
<PackageIcon>WireMock.Net-Logo.png</PackageIcon>
99
<PackageProjectUrl>https://github.com/wiremock/WireMock.Net</PackageProjectUrl>
1010
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

Generate-ReleaseNotes.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rem https://github.com/StefH/GitHubReleaseNotes
22

3-
SET version=1.8.11
3+
SET version=1.8.12
44

55
GitHubReleaseNotes --output CHANGELOG.md --skip-empty-releases --exclude-labels wontfix test question invalid doc duplicate example environment --version %version% --token %GH_TOKEN%
66

PackageReleaseNotes.txt

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
# 1.8.11 (11 June 2025)
2-
- #1311 Bump Testcontainers version to 4.5.0 [feature]
3-
- #1313 Update RandomDataGenerator.Net to 1.0.19 [feature]
4-
- #1315 Fix for WithTransformer and JsonBody as list [bug]
5-
- #1310 Binary compat issue with testcontainers 4.5.0 [bug]
6-
- #1312 WithTransformer breaks when the response BodyAsJson is a List [bug]
1+
# 1.8.12 (15 June 2025)
2+
- #1317 Set description when converting MappingModel to IRespondWithAProvider [feature]
3+
- #1320 Fix TypeLoader [bug]
4+
- #1319 Why is IRequestMessage.BodyAsMimeMessage null in new versions (&gt; 1.8.7) [bug]
75

86
The full release notes can be found here: https://github.com/wiremock/WireMock.Net/blob/master/CHANGELOG.md

0 commit comments

Comments
 (0)