Skip to content

Commit 5c79dcc

Browse files
committed
Bumped version to 4.15.1
1 parent 0b2c467 commit 5c79dcc

10 files changed

Lines changed: 17 additions & 26 deletions

File tree

MimeKit/MimeKit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An Open Source library for creating and parsing MIME, S/MIME, PGP messages on desktop and mobile platforms.</Description>
55
<AssemblyTitle>MimeKit</AssemblyTitle>
6-
<VersionPrefix>4.15.0</VersionPrefix>
6+
<VersionPrefix>4.15.1</VersionPrefix>
77
<LangVersion>12</LangVersion>
88
<Authors>Jeffrey Stedfast</Authors>
99
<_LegacyFrameworks>net462;net47</_LegacyFrameworks>

MimeKit/MimeKitLite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An Open Source library for creating and parsing MIME, S/MIME, PGP messages on desktop and mobile platforms.</Description>
55
<AssemblyTitle>MimeKit Lite</AssemblyTitle>
6-
<VersionPrefix>4.15.0</VersionPrefix>
6+
<VersionPrefix>4.15.1</VersionPrefix>
77
<LangVersion>12</LangVersion>
88
<Authors>Jeffrey Stedfast</Authors>
99
<_LegacyFrameworks>net462;net47</_LegacyFrameworks>

MimeKit/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@
9292
//
9393
// If there have only been bug fixes, bump the Micro Version and/or the Build Number
9494
// in the AssemblyFileVersion attribute.
95-
[assembly: AssemblyInformationalVersion ("4.15.0.0")]
96-
[assembly: AssemblyFileVersion ("4.15.0.0")]
95+
[assembly: AssemblyInformationalVersion ("4.15.1.0")]
96+
[assembly: AssemblyFileVersion ("4.15.1.0")]
9797
[assembly: AssemblyVersion ("4.15.0.0")]

ReleaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## MimeKit 4.15.1 (2026-03-04)
4+
5+
* SECURITY: Use stricter parsing logic for quoted-strings in addr-specs to prevent
6+
SMTP command injection attacks when those quoted-strings include CRLF sequences.
7+
38
## MimeKit 4.15.0 (2026-02-14)
49

510
* Bumped System.Buffers to 4.6.1 and System.Memory to 4.6.3

nuget/MimeKit.nuspec

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>MimeKit</id>
5-
<version>4.15.0</version>
5+
<version>4.15.1</version>
66
<title>MimeKit</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,15 +26,7 @@
2626
</description>
2727
<summary>An Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms.</summary>
2828
<releaseNotes>
29-
* Fixed inexact read in TnefPropertyReader.GetEmbeddedMessageReader().
30-
* Fixed IndexOutOfRangeException in DateTImeUtils.TryParse() when missing timezone after AM/PM. (issue #1204)
31-
* Added nullable attributes to the API. (issue #1067)
32-
* AuthenticationResults parsing now supports Gmail style headers. (issue #1208)
33-
* Changed the Base64Decoder to no longer default to enabling hardware acceleration due to bugs in System.Buffers.Text.Base64.DecodeFromUtf8 (will likely be fixed in .NET 11). (issue #1215)
34-
* Improved SqlCertificateDatabase abstraction to make it easier to subclass when the SQL syntax does not match SQLite. (issue #1218)
35-
* Bumped System.Buffers to 4.6.1 and System.Memory to 4.6.3.
36-
* Bumped BouncyCastle.Cryptography to 2.6.2.
37-
* Added support for .NET 10.
29+
* [SECURITY] Use stricter parsing logic for quoted-strings in addr-specs to prevent SMTP command injection attacks when those quoted-strings include CRLF sequences.
3830
</releaseNotes>
3931
<copyright>.NET Foundation and Contributors</copyright>
4032
<language>en-US</language>

nuget/MimeKitLite.nuspec

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>MimeKitLite</id>
5-
<version>4.15.0</version>
5+
<version>4.15.1</version>
66
<title>MimeKit Lite</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -22,13 +22,7 @@
2222
</description>
2323
<summary>An Open Source library for creating and parsing MIME messages.</summary>
2424
<releaseNotes>
25-
* Fixed inexact read in TnefPropertyReader.GetEmbeddedMessageReader().
26-
* Fixed IndexOutOfRangeException in DateTImeUtils.TryParse() when missing timezone after AM/PM. (issue #1204)
27-
* Added nullable attributes to the API. (issue #1067)
28-
* AuthenticationResults parsing now supports Gmail style headers. (issue #1208)
29-
* Changed the Base64Decoder to no longer default to enabling hardware acceleration due to bugs in System.Buffers.Text.Base64.DecodeFromUtf8 (will likely be fixed in .NET 11). (issue #1215)
30-
* Bumped System.Buffers to 4.6.1 and System.Memory to 4.6.3.
31-
* Added support for .NET 10.
25+
* [SECURITY] Use stricter parsing logic for quoted-strings in addr-specs to prevent SMTP command injection attacks when those quoted-strings include CRLF sequences.
3226
</releaseNotes>
3327
<copyright>.NET Foundation and Contributors</copyright>
3428
<language>en-US</language>

samples/DkimVerifier/DkimVerifier/DkimVerifier.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
</PropertyGroup>
1414
<ItemGroup>
1515
<PackageReference Include="DnsClient" Version="1.7.0" />
16-
<PackageReference Include="MimeKit" version="4.15.0" />
16+
<PackageReference Include="MimeKit" version="4.15.1" />
1717
</ItemGroup>
1818
</Project>

samples/MessageReader.Android/MessageReader.Android/MessageReader.Android.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.2.0.5" />
6969
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0.1" />
7070
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
71-
<PackageReference Include="MimeKit" Version="4.15.0" />
71+
<PackageReference Include="MimeKit" Version="4.15.1" />
7272
</ItemGroup>
7373
<ItemGroup>
7474
<Compile Include="MainActivity.cs" />

samples/MessageReader.iOS/MessageReader.iOS/MessageReader.iOS.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<Reference Include="System.Data" />
7676
</ItemGroup>
7777
<ItemGroup>
78-
<PackageReference Include="MimeKit" Version="4.15.0" />
78+
<PackageReference Include="MimeKit" Version="4.15.1" />
7979
</ItemGroup>
8080
<ItemGroup>
8181
<BundleResource Include="Resources\Default-568h%402x.png" />

samples/MessageReader/MessageReader/MessageReader.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<Reference Include="System.Xml" />
4848
</ItemGroup>
4949
<ItemGroup>
50-
<PackageReference Include="MimeKit" Version="4.15.0" />
50+
<PackageReference Include="MimeKit" Version="4.15.1" />
5151
</ItemGroup>
5252
<ItemGroup>
5353
<Compile Include="MessageViewWindow.cs">

0 commit comments

Comments
 (0)