Skip to content

Commit 82c9d61

Browse files
committed
Update to MySQL 8.4.
1 parent bc6785e commit 82c9d61

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
1717
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
1818
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
19-
<PackageVersion Include="MySql.Data" Version="8.3.0" />
19+
<PackageVersion Include="MySql.Data" Version="8.4.0" />
2020
<PackageVersion Include="NLog" Version="4.5.0" />
2121
<PackageVersion Include="Serilog" Version="2.6.0" />
2222
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ jobs:
233233
image: 'mysql:8.0'
234234
connectionStringExtra: 'AllowPublicKeyRetrieval=True'
235235
unsupportedFeatures: 'Ed25519,StreamingResults,Tls11,ZeroDateTime'
236-
'MySQL 8.3':
237-
image: 'mysql:8.3'
236+
'MySQL 8.4':
237+
image: 'mysql:8.4'
238238
connectionStringExtra: 'AllowPublicKeyRetrieval=True'
239239
unsupportedFeatures: 'Ed25519,StreamingResults,Tls11,ZeroDateTime'
240240
'MariaDB 10.6':

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In a .NET Framework application, make the following `app.config` change to regis
4141
<!-- add name="MySQL Data Provider"
4242
invariant="MySql.Data.MySqlClient"
4343
description=".Net Framework Data Provider for MySQL"
44-
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.3.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" / -->
44+
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.4.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" / -->
4545

4646
<!-- ADD THIS -->
4747
<add name="MySqlConnector"

tests/IntegrationTests/SchemaProviderTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ public void MetaDataCollectionsRestriction() =>
144144
[InlineData("SchemaPrivileges")]
145145
[InlineData("TableConstraints")]
146146
[InlineData("TablePrivileges")]
147-
[InlineData("TableSpaces")]
148147
[InlineData("UserPrivileges")]
149148
#endif
150149
public void GetSchema(string schemaName, string? expectedSchemaName = null)

tests/IntegrationTests/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<system.data>
44
<DbProviderFactories>
55
<add name="MySqlConnector" invariant="MySqlConnector" description="Async MySQL ADO.NET Connector" type="MySqlConnector.MySqlConnectorFactory, MySqlConnector, Culture=neutral, PublicKeyToken=d33d3e53aa5f8c92" />
6-
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.3.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
6+
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.4.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
77
</DbProviderFactories>
88
</system.data>
99
</configuration>

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It also verifies that MySqlConnector and MySQL Connector/NET (MySql.Data) have s
77

88
The tests require a MySQL server. The simplest way to run one is with [Docker](https://www.docker.com/community-edition):
99

10-
docker run -d --rm --name mysqlconnector -e MYSQL_ROOT_PASSWORD=pass -p 3306:3306 --tmpfs /var/lib/mysql mysql:8.3 --max-allowed-packet=96M --character-set-server=utf8mb4 --disable-log-bin --local-infile=1 --max-connections=250
10+
docker run -d --rm --name mysqlconnector -e MYSQL_ROOT_PASSWORD=pass -p 3306:3306 --tmpfs /var/lib/mysql mysql:8.4 --max-allowed-packet=96M --character-set-server=utf8mb4 --disable-log-bin --local-infile=1 --max-connections=250
1111
docker exec mysqlconnector mysql -uroot -ppass -e "INSTALL COMPONENT 'file://component_query_attributes';"
1212

1313
Copy the file `IntegrationTests/config.json.example` to `IntegrationTests/config.json`, then edit

0 commit comments

Comments
 (0)