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 1
1
---
2
- lastmod : 2020-04-04
2
+ lastmod : 2021-02-06
3
3
date : 2016-10-16
4
4
title : Connection Options
5
5
customtitle : MySQL Connection String for C# .NET Core Programs
Original file line number Diff line number Diff line change 1
1
---
2
- lastmod : 2021-01-04
2
+ lastmod : 2021-02-06
3
3
date : 2017-03-27
4
4
menu :
5
5
main :
@@ -10,6 +10,16 @@ weight: 30
10
10
11
11
# Version History
12
12
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
+
13
23
### 1.3.0 Beta 2
14
24
15
25
* 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.
7
7
8
8
The tests require a MySQL server. The simplest way to run one is with [ Docker] ( https://www.docker.com/community-edition ) :
9
9
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
11
11
12
12
Copy the file ` SideBySide/config.json.example ` to ` SideBySide/config.json ` , then edit
13
13
the ` 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