Releases: mysql-net/MySqlConnector
Releases · mysql-net/MySqlConnector
0.29.2
0.29.1
0.29.0
- Breaking Implement
MySqlConnectionStringBuilder.DefaultCommandTimeout
andMySqlCommand.CommandTimeout
with a default of 30 seconds: #67- This may cause long-running queries to throw an exception instead of succeeding; as a workaround, increase
CommandTimeout
.
- This may cause long-running queries to throw an exception instead of succeeding; as a workaround, increase
- Expose
MySqlDbType
andMySqlCommand.MySqlDbType
: #362- MySqlConnector adds
MySqlDbType.Bool
to represent aTINYINT(1)
column. - Return correct values for
ProviderType
inGetColumnSchema
/GetSchemaTable
.
- MySqlConnector adds
- Implement
MySqlConnection.GetSchema
: #361 - Update documentation for .NET Core 2.0: #372
- Fix information disclosure vulnerability related to
LOAD DATA LOCAL INFILE
: #334 - Improve async performance.
- Throw exception for unexpected API use: #308
- Thanks to @Drake103, @Thorium, and @dustinsoftware for contributions to this release.
0.28.2
0.28.0
0.27.0
0.26.5
0.26.4
0.26.3
- Fix
HasRows
incorrectly returningfalse
after all rows have been read: #327. - Fix
EndOfStreamException
when reusing a pooled connection with Amazon Aurora. - Reduce network roundtrips when opening a pooled connection (with the default settings of
Pooling=True;Connection Reset=true
); see #258. - Update
System.*
dependencies to 4.3.0 for .NET 4.5 and .NET 4.6 packages. - Thanks to @bnabholz for contributions to this release.