Skip to content

Commit 2b30265

Browse files
committed
Release 0.29.0.
1 parent d528baa commit 2b30265

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

docs/content/overview/version-history.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@ weight: 30
1111
Version History
1212
===============
1313

14+
### 0.29.0
15+
16+
* **Breaking** Implement `MySqlConnectionStringBuilder.DefaultCommandTimeout` and `MySqlCommand.CommandTimeout` with a default of 30 seconds: [#67](https://github.com/mysql-net/MySqlConnector/issues/67).
17+
* This may cause long-running queries to throw an exception instead of succeeding; as a workaround, increase `CommandTimeout`.
18+
* Expose `MySqlDbType` and `MySqlCommand.MySqlDbType`: [#362](https://github.com/mysql-net/MySqlConnector/issues/362).
19+
* MySqlConnector adds `MySqlDbType.Bool` to represent a `TINYINT(1)` column.
20+
* Return correct values for `ProviderType` in `GetColumnSchema`/`GetSchemaTable`.
21+
* Implement `MySqlConnection.GetSchema`: [#361](https://github.com/mysql-net/MySqlConnector/issues/362).
22+
* Update documentation for .NET Core 2.0: [#372](https://github.com/mysql-net/MySqlConnector/issues/372).
23+
* Fix information disclosure vulnerability related to `LOAD DATA LOCAL INFILE`: [#334](https://github.com/mysql-net/MySqlConnector/issues/334).
24+
* Improve async performance.
25+
* Throw exception for unexpected API use: [#308](https://github.com/mysql-net/MySqlConnector/issues/308).
26+
* Thanks to [Gabden Ayazbayev](https://github.com/Drake103), [Tuomas Hietanen](https://github.com/Thorium), and [Dustin Masters](https://github.com/dustinsoftware) for contributions to this release.
27+
1428
### 0.28.2
1529

1630
* Allow the auth plugin name in the initial handshake to be EOF-terminated: [#351](https://github.com/mysql-net/MySqlConnector/issues/351).

src/MySqlConnector/MySqlConnector.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Description>A truly async MySQL ADO.NET provider, supporting MySQL Server, MariaDB, Percona Server, Amazon Aurora, Azure Database for MySQL and more.</Description>
66
<Copyright>Copyright 2016–2017 Bradley Grainger</Copyright>
77
<AssemblyTitle>Async MySQL Connector</AssemblyTitle>
8-
<VersionPrefix>0.28.2</VersionPrefix>
8+
<VersionPrefix>0.29.0</VersionPrefix>
99
<Authors>Bradley Grainger;Caleb Lloyd</Authors>
1010
<TargetFrameworks>net45;net46;netstandard1.3;netstandard2.0</TargetFrameworks>
1111
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)