Skip to content

Releases: mysql-net/MySqlConnector

1.4.0-beta.2

13 Aug 05:09
1.4.0-beta.2
20ddc50
Compare
Choose a tag to compare
1.4.0-beta.2 Pre-release
Pre-release
  • 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

05 Jul 20:35
1.4.0-beta.1
64825d5
Compare
Choose a tag to compare
1.4.0-beta.1 Pre-release
Pre-release
  • 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

02 Jul 22:40
1.3.11
12f9832
Compare
Choose a tag to compare
  • 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

16 Jun 14:56
1.3.10
36f9618
Compare
Choose a tag to compare
  • 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

16 Jun 14:54
1.3.9
ccc8edd
Compare
Choose a tag to compare
  • 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

30 Apr 21:12
1.3.8
23714d7
Compare
Choose a tag to compare
  • Reduce latency of resetting connections: #982.

1.3.7

24 Apr 14:33
1.3.7
c86af2e
Compare
Choose a tag to compare

1.3.6

24 Apr 13:24
1.3.6
636893d
Compare
Choose a tag to compare
  • Add NuGet Package ReadMe: #978.

1.3.5

23 Apr 18:39
1.3.5
ad2b235
Compare
Choose a tag to compare
  • Support StringBuilder, Memory<char>, and ReadOnlyMemory<char> as MySqlParameter.Value values: #975.
  • Fix ArgumentException in MySqlBulkCopy: #974.

1.3.4

22 Apr 00:08
1.3.4
aedaeba
Compare
Choose a tag to compare
  • Improve compatibility with MySQL Server 8.0.24:
    • Ignore new ER_CLIENT_INTERACTION_TIMEOUT error packet sent to timed-out connections: #970.
    • Known Issue: Connections with UseCompression=true may throw a MySqlProtocolException when timed out.