Releases: mysql-net/MySqlConnector
Releases · mysql-net/MySqlConnector
1.3.12
- Fix bug executing stored procedures with backticks in their names: #1029.
1.4.0-beta.2
- Support .NET 6.0 Preview 7
- Breaking Update the
MySqlBatch
(experimental API) to match the latest .NET 6.0 API changes.
- Throw an informative exception if
DELIMITER
is used in a SQL statement: #1010.
- Fix bug that failed to deserialize a binary row (from a prepared statement) correctly: #1018.
1.4.0-beta.1
- Reduce default log message severity: #981.
- Make
MySqlError.Code
obsolete: #1011.
- Use
ErrorCode
property instead.
- Remove
BackgroundConnectionResetHelper
: #1013.
MySqlConnectionStringBuilder.DeferConnectionReset
is obsolete and will always be treated as if it's true
.
- Support .NET 6.0 Preview:
- Support
DateOnly
and TimeOnly
structs: #963.
- Use
ZLibStream
for compression: #957.
- Use
X_OR_GREATER
preprocessor definitions: #958.
1.3.11
- Add
MySqlError.ErrorCode
: #1011.
- Allow
MySqlDataReader.GetDateTime
to read a VARCHAR
column as a DateTime
: #980.
- Support the
NEWDATE
column type: #1007.
1.3.10
- Handle
NoBackslashEscapes
for binary parameter values: #999.
- Fix
NotSupportedException
when cancelling a MySqlCommand
in a TransactionScope
: #1001.
- Ignore
InvalidOperationException
thrown from MySqlConnection.Cancel
: #1002.
- Set the default value of
DeferConnectionReset
to true
; this disables background connection reset and restores the pre-1.3 behavior.
- Thanks to @kpreisser for contributions to this release.
1.3.9
- Use
StringBuilder.GetChunks
(in .NET 5.0) for MySqlParameter
: #977.
- Fix error encoding multibyte characters in
MySqlBulkCopy
: #974.
- Fix error encoding multibyte characters for
StringBuilder
MySqlParameter
values in .NET 5.0.
1.3.8
- Reduce latency of resetting connections: #982.
1.3.6
- Add NuGet Package ReadMe: #978.
1.3.5
- Support
StringBuilder
, Memory<char>
, and ReadOnlyMemory<char>
as MySqlParameter.Value
values: #975.
- Fix
ArgumentException
in MySqlBulkCopy
: #974.