Skip to content

Commit 060f94c

Browse files
committed
Release 0.57.0-beta8.
1 parent c978d59 commit 060f94c

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

docs/content/overview/version-history.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ weight: 30
1111
Version History
1212
===============
1313

14+
### 0.57.0-beta8
15+
16+
* **Breaking** Removed definitions of `System.Data.Common.DbBatch`, `DbBatchCommand` etc. from this library.
17+
* Build with .NET Core 3.0 Preview 8.
18+
* Add some nullable annotations; these are primarily on internal types and not in the public API.
19+
* Add `MySqlGeometry` and `MySqlDataReader.GetMySqlGeometry`: [#677](https://github.com/mysql-net/MySqlConnector/issues/677).
20+
* The API is deliberately different than Connector/NET, which assumes a `MySqlGeometry` can only be a simple point.
21+
* Use `sql_select_limit` when `CommandBehavior.SingleRow` is specified: [#679](https://github.com/mysql-net/MySqlConnector/issues/679).
22+
* Fix exception deserializing an `OUT TIME` parameter from a stored procedure: [#680](https://github.com/mysql-net/MySqlConnector/issues/680).
23+
1424
### 0.57.0-beta7
1525

1626
* Implement `MySqlBatch.Prepare`: [#656](https://github.com/mysql-net/MySqlConnector/issues/656).

docs/content/tutorials/migrating-from-connector-net.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ have a synchronous implementation. MySqlConnector only adds “Async” methods
122122
This functionality depends on [dotnet/corefx#20658](https://github.com/dotnet/corefx/issues/20658) being implemented first.
123123
To migrate code, change it to call the synchronous methods instead.
124124

125+
### MySqlGeometry
126+
127+
The Connector/NET `MySqlGeometry` type assumes that the geometry can only be a simple point. MySqlConnector
128+
removes most of the API that is based on those assumptions.
129+
130+
To avoid ambiguity, there are two different factory methods for constructing a `MySqlGeometry`. Use the static factory method `MySqlGeometry.FromMySql` (if you have a byte array containing MySQL's internal format), or `FromWkb` if you have
131+
Well-known Binary bytes.
132+
125133
### Exceptions
126134

127135
For consistency with other ADO.NET providers, MySqlConnector will throw `InvalidOperationException` (instead of `MySqlException`)

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>0.57.0-beta7</VersionPrefix>
4+
<VersionPrefix>0.57.0-beta8</VersionPrefix>
55
<SignAssembly>true</SignAssembly>
66
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
77
<AssemblyOriginatorKeyFile>..\..\MySqlConnector.snk</AssemblyOriginatorKeyFile>

0 commit comments

Comments
 (0)