Skip to content

Commit 9d17166

Browse files
committed
Update Connector/NET to 8.0.15.
1 parent d36335d commit 9d17166

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
118118
* [#88124](https://bugs.mysql.com/bug.php?id=88124): CommandTimeout isn’t reset when calling Read/NextResult
119119
* ~~[#88472](https://bugs.mysql.com/bug.php?id=88472): `TINYINT(1)` is not returned as `bool` if `MySqlCommand.Prepare` is called~~
120120
* [#88611](https://bugs.mysql.com/bug.php?id=88611): `MySqlCommand` can be executed even if it has "wrong" transaction
121-
* [#88660](https://bugs.mysql.com/bug.php?id=88660): `MySqlClientFactory.Instance.CreateDataAdapter()` and `CreateCommandBuilder` return `null`
121+
* ~~[#88660](https://bugs.mysql.com/bug.php?id=88660): `MySqlClientFactory.Instance.CreateDataAdapter()` and `CreateCommandBuilder` return `null`~~
122122
* [#89085](https://bugs.mysql.com/bug.php?id=89085): `MySqlConnection.Database` not updated after `USE database;`
123123
* [#89159](https://bugs.mysql.com/bug.php?id=89159): `MySqlDataReader` cannot outlive `MySqlCommand`
124124
* [#89335](https://bugs.mysql.com/bug.php?id=89335): `MySqlCommandBuilder.DeriveParameters` fails for `JSON` type

tests/SideBySide/ClientFactoryTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ public void CreateParameter()
3131
}
3232

3333
#if !NETCOREAPP1_1_2
34-
[SkippableFact(Baseline = "https://bugs.mysql.com/bug.php?id=88660")]
34+
[Fact]
3535
public void CreateCommandBuilder()
3636
{
3737
Assert.IsType<MySqlCommandBuilder>(MySqlClientFactory.Instance.CreateCommandBuilder());
3838
}
3939

40-
[SkippableFact(Baseline = "https://bugs.mysql.com/bug.php?id=88660")]
40+
[Fact]
4141
public void CreateDataAdapter()
4242
{
4343
Assert.IsType<MySqlDataAdapter>(MySqlClientFactory.Instance.CreateDataAdapter());

tests/SideBySide/SideBySide.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup Condition=" '$(Configuration)' != 'Baseline' ">
44
<TargetFrameworks>net452;net461;net472;netcoreapp1.1.2;netcoreapp2.0;netcoreapp2.1</TargetFrameworks>
@@ -39,7 +39,7 @@
3939
</ItemGroup>
4040

4141
<ItemGroup Condition=" '$(Configuration)' == 'Baseline' ">
42-
<PackageReference Include="MySql.Data" Version="8.0.13" />
42+
<PackageReference Include="MySql.Data" Version="8.0.15" />
4343
</ItemGroup>
4444

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

0 commit comments

Comments
 (0)