Skip to content

Commit 17fe67b

Browse files
authored
Support MySQL 8.4 and 9.0 (#283)
Motivation: Add compatibility for the newer MySQL versions 8.4 and 9.0 to ensure the connector works with the latest MySQL features and improvements. Modifications: - Added tests to verify functionality with MySQL 8.4 and 9.0. Result: Ensures compatibility with MySQL 8.4 and 9.0.
1 parent a5ada25 commit 17fe67b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci-integration-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-20.04
1010
strategy:
1111
matrix:
12-
mysql-version: [ 5.5, 5.6.45, 5.6, 5.7.28, 5.7, 8.0, 8.1, 8.2, 8.3]
12+
mysql-version: [ 5.5, 5.6.45, 5.6, 5.7.28, 5.7, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0]
1313
name: Integration test with MySQL ${{ matrix.mysql-version }}
1414
steps:
1515
- uses: actions/checkout@v3

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ This driver provides the following features:
4343
![MySQL 8.0 status](https://img.shields.io/badge/MySQL%208.0-pass-blue)
4444
![MySQL 8.1 status](https://img.shields.io/badge/MySQL%208.1-pass-blue)
4545
![MySQL 8.2 status](https://img.shields.io/badge/MySQL%208.2-pass-blue)
46+
![MySQL 8.3 status](https://img.shields.io/badge/MySQL%208.3-pass-blue)
47+
![MySQL 8.4 status](https://img.shields.io/badge/MySQL%208.4-pass-blue)
48+
![MySQL 9.0 status](https://img.shields.io/badge/MySQL%209.0-pass-blue)
4649
![MariaDB 10.6 status](https://img.shields.io/badge/MariaDB%2010.6-pass-blue)
4750
![MariaDB 10.11 status](https://img.shields.io/badge/MariaDB%2010.11-pass-blue)
4851

0 commit comments

Comments
 (0)