Skip to content

Commit 38f2bb8

Browse files
committed
Move version history to the docs website.
Change <PackageReleaseNotes> to just link to the online documentation (instead of needing to be updated with every release).
1 parent 37fe2d7 commit 38f2bb8

File tree

6 files changed

+176
-149
lines changed

6 files changed

+176
-149
lines changed

docs/VersionHistory.md

Lines changed: 2 additions & 145 deletions
Original file line numberDiff line numberDiff line change
@@ -2,151 +2,8 @@
22

33
## Known Issues
44

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/).
126

137
## Release Notes
148

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/).

docs/content/overview/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ menu:
55
main:
66
parent: getting started
77
title: Configuration
8-
weight: 20
8+
weight: 40
99
---
1010

1111
Configuration
@@ -64,4 +64,4 @@ public void SyncMethod()
6464
// db.Connection was closed by AppDb.Dispose
6565
}
6666

67-
```
67+
```

docs/content/overview/known-issues.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
lastmod: 2017-03-27
3+
date: 2017-03-27
4+
menu:
5+
main:
6+
parent: getting started
7+
title: Known Issues
8+
weight: 20
9+
---
10+
11+
Known Issues
12+
============
13+
14+
* The behaviour of cancellation is not well-defined in this release; cancelling a query
15+
may leave the `MySqlConnection` in an unusable state.
16+
* Not all MySQL data types are supported.
17+
* Many `MySql.Data` connection string settings are not supported by this library. See
18+
[Connection Options](connection-options/) for a list of supported options.
19+
* Only the `mysql_native_password` and `mysql_old_password` authentication plugins are supported.

docs/content/overview/use-with-orms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ menu:
55
main:
66
parent: getting started
77
title: Use with ORMs
8-
weight: 30
8+
weight: 50
99
---
1010

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

src/MySqlConnector/MySqlConnector.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<AssemblyName>MySqlConnector</AssemblyName>
1212
<PackageId>MySqlConnector</PackageId>
1313
<PackageTags>mysql;async;ado.net;database;netcore</PackageTags>
14-
<PackageReleaseNotes>Include help on AllowUserVariables in exception message: GitHub issue #206.</PackageReleaseNotes>
14+
<PackageReleaseNotes>https://mysql-net.github.io/MySqlConnector/overview/version-history/</PackageReleaseNotes>
1515
<PackageProjectUrl>https://github.com/mysql-net/MySqlConnector</PackageProjectUrl>
1616
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
1717
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)