Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0dee607
WL-11618 Change caching_sha2_password padding
Feb 8, 2018
446c758
Fixed failing unit tests due to the allowpublickeyretrieval flag bein…
Feb 9, 2018
5ad9129
Fixed unit tests failed due to different sql syntax required for olde…
Feb 9, 2018
3d68181
Fixed unit tests failing due to missing permissions on the mysql.user…
Feb 11, 2018
0e51ee2
Bug #27532931 CONN WITH BLANK PWD FAILS FOR USER CREATED USING MYSQL_…
Feb 14, 2018
9976908
Fixed failing tests due to closed connections.
Feb 15, 2018
ec7784a
Included ssdl file for server 8.0.4+.
Feb 15, 2018
ed870b5
Fixed bug where the manifest token was incorrectly determined.
Feb 16, 2018
891c5b5
Fixed bug where the manifest token was incorrectly determined.
Feb 16, 2018
70d0daf
Fixed EF code snippet that requires the collation to be specified.
Feb 16, 2018
b695554
Bug #27571593 CONN FAILS FOR USER CREATED USING MYSQL_PASSWD(SERV STR…
Feb 28, 2018
4f49f0a
Merge branch 'work/6.9/WL-11618' into 6.9
Mar 7, 2018
1df81b9
Bug #27685246 UNABLE TO GENERATE THE MODEL USING ADO.NET ENTITY DATA …
Mar 20, 2018
411b099
Error when running tests fixed:
davaldezr Apr 9, 2018
21444d3
Unit test fixes.
davaldezr Apr 10, 2018
1ba7fae
Test fix.
davaldezr Apr 11, 2018
122948a
Bug #27868312 CONNECT FAILS DUE TO HANDSHK FAILURE WHN 8.0SERV STARTD…
Apr 18, 2018
14c944d
Fixed unit tests.
Apr 19, 2018
e63c024
Giving global privileges to 'test' user.
davaldezr Apr 25, 2018
b14e1f7
Merge branch '6.9' into release/6.9.12
davaldezr Apr 25, 2018
f9bb908
Fix tests to MySQL Server 8.0.11 compatibility.
davaldezr Apr 26, 2018
fca8935
Merge branch '6.9' into release/6.9.12
davaldezr Apr 26, 2018
af9e8c5
Tests fix
davaldezr Apr 26, 2018
68c5437
Merge branch '6.9' into release/6.9.12
davaldezr Apr 26, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
6.9.12
- Updated the RSA key encryption padding to RSA_PKCS1_OAEP_PADDING for the caching_sha2_password authentication plugin when connecting to server 8.0.5 (or later) (WL11618).
- Added support for the caching_sha2_password authentication plugin introduced in server 8.0.3.
Added support for RSA key encription in the sha256_password authentication plugin (WL11285).
- Added support for MySQL 8 server features (WL11325).
Expand Down
9 changes: 5 additions & 4 deletions Source/MySql.Data.EntityFramework5/MySql.Data.EF5.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
<PropertyGroup>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<Framework>4.0</Framework>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<Framework>4.0</Framework>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<DefineConstants>NET_40_OR_GREATER</DefineConstants>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<Framework>4.5</Framework>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<Framework>4.5</Framework>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DefineConstants>NET_40_OR_GREATER;NET_45_OR_GREATER</DefineConstants>
</PropertyGroup>
</Otherwise>
Expand Down Expand Up @@ -174,6 +174,7 @@
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<EmbeddedResource Include="Properties\SchemaDefinition-8.0.ssdl" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
Expand Down
Loading