diff --git a/Source/MySql.Data/Field.cs b/Source/MySql.Data/Field.cs index 1856212c9..8b64ad4ea 100644 --- a/Source/MySql.Data/Field.cs +++ b/Source/MySql.Data/Field.cs @@ -28,6 +28,7 @@ using System; using System.Collections; using System.Collections.Generic; +using System.Security; namespace MySql.Data.MySqlClient { @@ -77,9 +78,10 @@ internal class MySqlField protected bool binaryOk; protected List typeConversions = new List(); - #endregion + #endregion - public MySqlField(Driver driver) + [SecuritySafeCritical] + public MySqlField(Driver driver) { this.driver = driver; connVersion = driver.Version; diff --git a/Source/MySql.Data/project.json b/Source/MySql.Data/project.json index 6d6a13871..271096709 100644 --- a/Source/MySql.Data/project.json +++ b/Source/MySql.Data/project.json @@ -1,5 +1,5 @@ { - "version": "6.9.815", + "version": "6.9.816", "description": "MySQL client library targeting netstandard 1.3", "authors": [ "Oracle", "SapientGuardian", "ebyte23" ], "buildOptions": {