|
2 | 2 |
|
3 | 3 | ## Known Issues
|
4 | 4 |
|
5 |
| -* The behaviour of cancellation is not well-defined in this release; cancelling a query |
6 |
| -may leave the `MySqlConnection` in an unusable state. |
7 |
| -* Not all MySQL data types are supported. |
8 |
| -* Many `MySql.Data` connection string settings are not supported by this library. See |
9 |
| -[Connection Options](https://mysql-net.github.io/MySqlConnector/connection-options/) for a list |
10 |
| -of supported options. |
11 |
| -* Only the "`mysql_native_password`" and "`mysql_old_password`" authentication plugins are supported. |
| 5 | +Known Issues have [moved here](https://mysql-net.github.io/MySqlConnector/overview/known-issues/). |
12 | 6 |
|
13 | 7 | ## Release Notes
|
14 | 8 |
|
15 |
| -### 0.15.2 |
16 |
| - |
17 |
| -* Include help on `AllowUserVariables` in exception message: [#206](https://github.com/mysql-net/MySqlConnector/issues/206). |
18 |
| - |
19 |
| -### 0.15.1 |
20 |
| - |
21 |
| -* Fix `NullReferenceException` in `MySqlConnection.Database`: [#205](https://github.com/mysql-net/MySqlConnector/issues/205). |
22 |
| - |
23 |
| -### 0.15.0 |
24 |
| - |
25 |
| -* Implement `MySqlConnection.ChangeDatabase`: [#201](https://github.com/mysql-net/MySqlConnector/issues/201). |
26 |
| -* Add `Buffer Result Sets` connection string option: [#202](https://github.com/mysql-net/MySqlConnector/issues/202). |
27 |
| - |
28 |
| -### 0.14.1 |
29 |
| - |
30 |
| -* Fix exception when `MySqlDataReader` isn't disposed: [#196](https://github.com/mysql-net/MySqlConnector/issues/196). |
31 |
| - |
32 |
| -### 0.14.0 |
33 |
| - |
34 |
| -* Update `System.*` package references: [#190](https://github.com/mysql-net/MySqlConnector/issues/190). |
35 |
| - |
36 |
| -### 0.13.0 |
37 |
| - |
38 |
| -* Add `MySqlBulkLoader`: [#15](https://github.com/mysql-net/MySqlConnector/issues/15). |
39 |
| - |
40 |
| -### 0.12.0 |
41 |
| - |
42 |
| -* Add support for `DateTimeOffset`: [#172](https://github.com/mysql-net/MySqlConnector/issues/172), [#175](https://github.com/mysql-net/MySqlConnector/issues/175). |
43 |
| - |
44 |
| -### 0.11.6 |
45 |
| - |
46 |
| -* Fix `PlatformNotSupportedException` on AWS Lambda: [#170](https://github.com/mysql-net/MySqlConnector/issues/170). |
47 |
| - |
48 |
| -### 0.11.5 |
49 |
| - |
50 |
| -* Further improve async and sync performance: [#164](https://github.com/mysql-net/MySqlConnector/issues/164). |
51 |
| - |
52 |
| -### 0.11.4 |
53 |
| - |
54 |
| -* No changes in this release. |
55 |
| - |
56 |
| -### 0.11.3 |
57 |
| - |
58 |
| -* Improve async performance: [#164](https://github.com/mysql-net/MySqlConnector/issues/164). |
59 |
| - |
60 |
| -### 0.11.2 |
61 |
| - |
62 |
| -* Fix InvalidCastException when using aggregate functions: [#54](https://github.com/mysql-net/MySqlConnector/issues/54). |
63 |
| - |
64 |
| -### 0.11.1 |
65 |
| - |
66 |
| -* Handle `IOException` in `MySqlSession.DisposeAsync`: [#159](https://github.com/mysql-net/MySqlConnector/issues/159). |
67 |
| - |
68 |
| -### 0.11.0 |
69 |
| - |
70 |
| -* Implement the `SslMode=Preferred` connection string option and make it the default: [#158](https://github.com/mysql-net/MySqlConnector/pull/158). |
71 |
| - |
72 |
| -### 0.10.0 |
73 |
| - |
74 |
| -* Change minimum supported .NET Framework version to .NET 4.5.1: [#154](https://github.com/mysql-net/MySqlConnector/issues/154). |
75 |
| - |
76 |
| -### 0.9.2 |
77 |
| - |
78 |
| -* Fix MySqlConnection.DataSource with Unix Domain Socket: [#152](https://github.com/mysql-net/MySqlConnector/issues/152). |
79 |
| - |
80 |
| -### 0.9.1 |
81 |
| - |
82 |
| -* Fix `SocketException` when calling `OpenAsync`: [#150](https://github.com/mysql-net/MySqlConnector/issues/150). |
83 |
| - |
84 |
| -### 0.9.0 |
85 |
| - |
86 |
| -* Implement `Treat Tiny As Boolean` connection string option: [#141](https://github.com/mysql-net/MySqlConnector/issues/141). |
87 |
| - |
88 |
| -### 0.8.0 |
89 |
| - |
90 |
| -* Implement `Keep Alive` connection string option: [#132](https://github.com/mysql-net/MySqlConnector/issues/132). |
91 |
| - |
92 |
| -### 0.7.4 |
93 |
| - |
94 |
| -* Fix `Packet received out-of-order` exception with `UseCompression=true`: [#146](https://github.com/mysql-net/MySqlConnector/issues/146). |
95 |
| - |
96 |
| -### 0.7.3 |
97 |
| - |
98 |
| -* Fix `GetDataTypeName` for `ENUM` and `SET` columns: [#52](https://github.com/mysql-net/MySqlConnector/issues/52), [#71](https://github.com/mysql-net/MySqlConnector/issues/71). |
99 |
| - |
100 |
| -### 0.7.2 |
101 |
| - |
102 |
| -* Fix authentication for MySQL Server 5.1: [#139](https://github.com/mysql-net/MySqlConnector/issues/139). |
103 |
| - |
104 |
| -### 0.7.1 |
105 |
| - |
106 |
| -* Fix `NextResult` incorrectly returning `true`, which may cause problems with Dapper's `QueryMultiple`: [#135](https://github.com/mysql-net/MySqlConnector/issues/135). |
107 |
| -* Reduce memory usage related to `Enum.HasFlag`: [#137](https://github.com/mysql-net/MySqlConnector/issues/137). |
108 |
| - |
109 |
| -### 0.7.0 |
110 |
| - |
111 |
| -* Implement stored procedure support: [#19](https://github.com/mysql-net/MySqlConnector/issues/19). |
112 |
| - * Known issue: `NextResult` incorrectly returns `true`, which may cause problems with Dapper's `QueryMultiple`: [#135](https://github.com/mysql-net/MySqlConnector/issues/135). |
113 |
| - |
114 |
| -### 0.6.2 |
115 |
| - |
116 |
| -* Fix `NullReferenceException` when `MySqlParameter.Value == null`: [#126](https://github.com/mysql-net/MySqlConnector/issues/126). |
117 |
| - |
118 |
| -### 0.6.1 |
119 |
| - |
120 |
| -* Fix `AggregateException` going unhandled in `OpenAsync`: [#124](https://github.com/mysql-net/MySqlConnector/issues/124). |
121 |
| -* Fix SSL over Unix domain sockets. |
122 |
| -* Reduce allocations when using SSL certificates. |
123 |
| - |
124 |
| -### 0.6.0 |
125 |
| - |
126 |
| -* Implement `UseCompression` connection string option: [#31](https://github.com/mysql-net/MySqlConnector/issues/31). |
127 |
| -* Add support for Unix domain sockets: [#118](https://github.com/mysql-net/MySqlConnector/issues/118). |
128 |
| - |
129 |
| -### 0.5.0 |
130 |
| - |
131 |
| -* Implement `UseAffectedRows` connection string option. (Note that the default value is `true`, unlike `MySql.Data`.) |
132 |
| - |
133 |
| -### 0.4.0 |
134 |
| - |
135 |
| -* Rename `SslMode` enum to `MySqlSslMode` (for compatibility with `MySql.Data`):[#102](https://github.com/mysql-net/MySqlConnector/pull/93). |
136 |
| - |
137 |
| -### 0.3.0 |
138 |
| - |
139 |
| -* Add SSL support and `SslMode` connection string option: [#88](https://github.com/mysql-net/MySqlConnector/issues/88). |
140 |
| -* Rewrite protocol serialization layer to support SSL and make adding compression easier: [#93](https://github.com/mysql-net/MySqlConnector/pull/93). |
141 |
| - |
142 |
| -### 0.2.1 |
143 |
| - |
144 |
| -* Add more diagnostics for unsupported auth plugins. |
145 |
| - |
146 |
| -### 0.2.0 |
147 |
| - |
148 |
| -* Add `MySqlConnectionStringBuilder.ForceSynchronous`: [#91](https://github.com/mysql-net/MySqlConnector/issues/91). |
149 |
| - |
150 |
| -### 0.1.0 |
151 |
| - |
152 |
| -* First non-alpha release. Supports core data access scenarios with common ORMs. |
| 9 | +Release Notes have [moved here](https://mysql-net.github.io/MySqlConnector/overview/version-history/). |
0 commit comments