File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -213,3 +213,4 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
213
213
* [ #97473 ] ( https://bugs.mysql.com/bug.php?id=97473 ) : ` MySqlConnection.Clone ` discloses connection password
214
214
* [ #97738 ] ( https://bugs.mysql.com/bug.php?id=97738 ) : Cannot use PEM files when account uses ` require subject `
215
215
* [ #97872 ] ( https://bugs.mysql.com/bug.php?id=97872 ) : ` KeepAlive ` in connection string throws exception on .NET Core
216
+ * [ #98322 ] ( https://bugs.mysql.com/bug.php?id=98322 ) : ` new MySqlConnection(null) ` throws ` NullReferenceException `
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public void DefaultConnectionStringIsEmpty()
60
60
Assert . Equal ( "" , connection . ConnectionString ) ;
61
61
}
62
62
63
- [ Fact ]
63
+ [ SkippableFact ( Baseline = "https://bugs.mysql.com/bug.php?id=98322" ) ]
64
64
public void InitializeWithNullConnectionString ( )
65
65
{
66
66
using var connection = new MySqlConnection ( default ( string ) ) ;
Original file line number Diff line number Diff line change 42
42
</ItemGroup >
43
43
44
44
<ItemGroup Condition =" '$(Configuration)' == 'Baseline' " >
45
- <PackageReference Include =" MySql.Data" Version =" 8.0.18 " />
45
+ <PackageReference Include =" MySql.Data" Version =" 8.0.19 " />
46
46
</ItemGroup >
47
47
48
48
<ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp1.1.2' " >
You can’t perform that action at this time.
0 commit comments