Skip to content

Commit b843dc2

Browse files
committed
Release 1.3.0 Beta 3.
1 parent cd6f59c commit b843dc2

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

docs/content/connection-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
lastmod: 2020-04-04
2+
lastmod: 2021-02-06
33
date: 2016-10-16
44
title: Connection Options
55
customtitle: MySQL Connection String for C# .NET Core Programs

docs/content/overview/version-history.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
lastmod: 2021-01-04
2+
lastmod: 2021-02-06
33
date: 2017-03-27
44
menu:
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).

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ with Connector/NET and that [known bugs have been fixed](https://mysqlconnector.
77

88
The 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

1212
Copy the file `SideBySide/config.json.example` to `SideBySide/config.json`, then edit
1313
the `config.json` file in order to connect to your server. If you are using the Docker

0 commit comments

Comments
 (0)