Skip to content

Commit 05da46b

Browse files
Bump MySql.Data from 8.0.25 to 8.0.26 (#2870)
Add SslMode=none to MySQL connection strings
1 parent a97627d commit 05da46b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
CONNECTION_STRING: Host=localhost;Port=5432;Username=postgres;Password=Password12!;Database=nhibernate;Enlist=true;
99
- DB: Firebird
1010
- DB: MySQL
11-
CONNECTION_STRING: Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;
11+
CONNECTION_STRING: Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;SslMode=none;
1212
- DB: SQLite
1313
init:
1414
# Required for having windows endlines in sources zip

psake.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Task Set-Configuration {
1515
'dialect' = 'NHibernate.Dialect.FirebirdDialect'
1616
};
1717
'MySQL' = @{
18-
'connection.connection_string' = 'Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;';
18+
'connection.connection_string' = 'Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;SslMode=none;';
1919
'connection.driver_class' = 'NHibernate.Driver.MySqlDataDriver';
2020
'dialect' = 'NHibernate.Dialect.MySQL5Dialect'
2121
};
@@ -118,4 +118,4 @@ Task Test -depends Build {
118118
dotnet $assembly --labels=before --nocolor "--result=$_-TestResult.xml"
119119
}
120120
}
121-
}
121+
}

src/NHibernate.Test/NHibernate.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
6666
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="6.6.0" />
6767
<PackageReference Include="Npgsql" Version="4.1.9" />
68-
<PackageReference Include="MySql.Data" Version="8.0.25" />
68+
<PackageReference Include="MySql.Data" Version="8.0.26" />
6969
</ItemGroup>
7070
<ItemGroup Condition="$(NhNetFx)">
7171
<Reference Include="System.Configuration" />

0 commit comments

Comments
 (0)