File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11---
2- lastmod : 2020-04-04
2+ lastmod : 2021-02-06
33date : 2016-10-16
44title : Connection Options
55customtitle : MySQL Connection String for C# .NET Core Programs
Original file line number Diff line number Diff line change 11---
2- lastmod : 2021-01-04
2+ lastmod : 2021-02-06
33date : 2017-03-27
44menu :
55 main :
@@ -10,6 +10,16 @@ weight: 30
1010
1111# Version History
1212
13+ ### 1.3.0 Beta 3
14+
15+ * Implement Azure Server Redirection: [ #789 ] ( https://github.com/mysql-net/MySqlConnector/issues/789 ) .
16+ * Change default value of ` IgnorePrepare ` to ` false ` : [ #929 ] ( https://github.com/mysql-net/MySqlConnector/issues/929 ) .
17+ * Calling ` MySqlCommand.Prepare(Async) ` will have an effect by default.
18+ * Implement ` IComparable<MySqlDateTime> ` and ` IEquatable<MySqlDateTime> ` on ` MySqlDateTime ` .
19+ * Improve exception message for unsupported parameter types: [ #925 ] ( https://github.com/mysql-net/MySqlConnector/issues/925 ) .
20+ * Fix exception in server version parsing: [ #934 ] ( https://github.com/mysql-net/MySqlConnector/issues/934 ) .
21+ * Fix silent failure to use TLS 1.3 (when explicitly requested) on older frameworks.
22+
1323### 1.3.0 Beta 2
1424
1525* Implement ` MySqlException.IsTransient ` : [ #849 ] ( https://github.com/mysql-net/MySqlConnector/issues/849 ) .
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ with Connector/NET and that [known bugs have been fixed](https://mysqlconnector.
77
88The tests require a MySQL server. The simplest way to run one is with [ Docker] ( https://www.docker.com/community-edition ) :
99
10- docker run -d --rm --name mysqlconnector -e MYSQL_ROOT_PASSWORD=pass -p 3306:3306 mysql:5.7 --max-allowed-packet=96M --character-set-server=utf8mb4
10+ docker run -d --rm --name mysqlconnector -e MYSQL_ROOT_PASSWORD=pass -p 3306:3306 mysql:8.0.23 --max-allowed-packet=96M --character-set-server=utf8mb4 --log-bin-trust-function-creators=1 --local-infile=1 --max-connections=250
1111
1212Copy the file ` SideBySide/config.json.example ` to ` SideBySide/config.json ` , then edit
1313the ` config.json ` file in order to connect to your server. If you are using the Docker
You can’t perform that action at this time.
0 commit comments