Skip to content

Commit 757bb42

Browse files
committed
Update SideBySide tests to Connector/NET 8.0.19.
Ignore test that exposed a regression in this update.
1 parent 9df06c9 commit 757bb42

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/content/tutorials/migrating-from-connector-net.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,3 +213,4 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
213213
* [#97473](https://bugs.mysql.com/bug.php?id=97473): `MySqlConnection.Clone` discloses connection password
214214
* [#97738](https://bugs.mysql.com/bug.php?id=97738): Cannot use PEM files when account uses `require subject`
215215
* [#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`

tests/SideBySide/ConnectionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void DefaultConnectionStringIsEmpty()
6060
Assert.Equal("", connection.ConnectionString);
6161
}
6262

63-
[Fact]
63+
[SkippableFact(Baseline = "https://bugs.mysql.com/bug.php?id=98322")]
6464
public void InitializeWithNullConnectionString()
6565
{
6666
using var connection = new MySqlConnection(default(string));

tests/SideBySide/SideBySide.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</ItemGroup>
4343

4444
<ItemGroup Condition=" '$(Configuration)' == 'Baseline' ">
45-
<PackageReference Include="MySql.Data" Version="8.0.18" />
45+
<PackageReference Include="MySql.Data" Version="8.0.19" />
4646
</ItemGroup>
4747

4848
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1.2' ">

0 commit comments

Comments
 (0)