Skip to content

Commit 5151ca4

Browse files
committed
Improve ConnectionReset release notes.
1 parent db6fb03 commit 5151ca4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/overview/version-history.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ weight: 30
2020
* **Breaking** Improve `MySqlBulkCopy` API: [#1012](https://github.com/mysql-net/MySqlConnector/issues/1012).
2121
* **Breaking** Remove `ConnectionIdlePingTime`: [#1042](https://github.com/mysql-net/MySqlConnector/issues/1042).
2222
* The `Connection Idle Ping Time` connection string option is still accepted, but has no effect.
23-
* If `Connection Reset = False`, `MySqlConnection.Open` will return a pooled connection (if one is available) without testing it for liveness (by pinging the server). This improves performance but may degrade reliability. (`Connection Reset = True`, which is the default, is still recommended for greatest reliability.)
24-
* If the server has closed the pooled connection, `MySqlConnection.Open` will succeed, but the first operation on that connection will fail. Command execution should be wrapped in a try/catch/retry loop to handle this scenario.
23+
* If `Connection Reset = False`, `MySqlConnection.Open` will return a pooled connection (if one is available) without testing it for liveness (by pinging the server). If the server has closed the pooled connection, `MySqlConnection.Open` will succeed, but the first operation on that connection will fail. Command execution should be wrapped in a try/catch/retry loop to handle this scenario.
24+
* `Connection Reset = False` improves performance but may degrade reliability; `Connection Reset = True`, which is the default, is still recommended for greatest reliability.
2525
* **Breaking** Change how option keys are serialized when retrieving the `MySqlConnectionStringBuilder.ConnectionString` property:
2626
* For example, `User Id` is now `User ID`, `DefaultCommandTimeout` is now `Default Command Timeout`, etc.
2727
* All existing connection strings are still valid, and all the previous aliases for connection string options are still accepted.

0 commit comments

Comments
 (0)