Skip to content

Commit

Permalink
Release 2.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrainger committed Nov 28, 2021
1 parent 9c80add commit dbadd12
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion docs/content/overview/version-history.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
lastmod: 2021-11-09
lastmod: 2021-11-27
date: 2017-03-27
menu:
main:
Expand All @@ -10,6 +10,25 @@ weight: 30

# Version History

### 2.1.0

* Opening a connection from the pool is now twice as fast: [#1089](https://github.com/mysql-net/MySqlConnector/issues/1089).
* This may fail with Amazon Aurora RDS; to explicitly disable this, set `Pipelining = False;` in the connection string.
* Add support for [query attributes](https://dev.mysql.com/doc/refman/8.0/en/query-attributes.html): [#930](https://github.com/mysql-net/MySqlConnector/issues/930).
* This requires MySQL Server 8.0.23 (or later) for regular commands, and MySQL Server 8.0.26 (or later) for prepared commands.
* Add attributes to the `MySqlCommand.Attributes` collection to send them to the server when the command is executed.
* Add `MySqlDecimal` support: [#1070](https://github.com/mysql-net/MySqlConnector/issues/1070).
* Improve `MySqlDataReader.GetX` exceptions for `NULL` values: [#1092](https://github.com/mysql-net/MySqlConnector/issues/1092).
* Improve detection of Azure Database for MySQL proxies: [#1093](https://github.com/mysql-net/MySqlConnector/issues/1093).
* Update Microsoft.SourceLink.GitHub.
* Thanks to [Ed Ball](https://github.com/ejball) and [Sumit Kumar](https://github.com/sumitdvlp) for contributions to this release.

#### MySqlConnector.Logging.Microsoft.Extensions.Logging

* Logger names are now prefixed with `MySqlConnector.` by default: [#1080](https://github.com/mysql-net/MySqlConnector/issues/1080).
* To return to the previous behavior, use `MicrosoftExtensionsLoggingLoggerProvider(loggingFactory, omitMySqlConnectorPrefix: true)`.
* Added `.UseMySqlConnectorLogging()` extension method to add logging easily.

### 2.0.0

* Target .NET 6.0.
Expand Down

0 comments on commit dbadd12

Please sign in to comment.