Skip to content

Commit

Permalink
Support MySQL 8.4 and 9.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jchrys committed Jul 28, 2024
1 parent a5ada25 commit bb45dbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
mysql-version: [ 5.5, 5.6.45, 5.6, 5.7.28, 5.7, 8.0, 8.1, 8.2, 8.3]
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]
name: Integration test with MySQL ${{ matrix.mysql-version }}
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ This driver provides the following features:
![MySQL 8.0 status](https://img.shields.io/badge/MySQL%208.0-pass-blue)
![MySQL 8.1 status](https://img.shields.io/badge/MySQL%208.1-pass-blue)
![MySQL 8.2 status](https://img.shields.io/badge/MySQL%208.2-pass-blue)
![MySQL 8.3 status](https://img.shields.io/badge/MySQL%208.3-pass-blue)
![MySQL 8.4 status](https://img.shields.io/badge/MySQL%208.4-pass-blue)
![MySQL 9.0 status](https://img.shields.io/badge/MySQL%209.0-pass-blue)
![MariaDB 10.6 status](https://img.shields.io/badge/MariaDB%2010.6-pass-blue)
![MariaDB 10.11 status](https://img.shields.io/badge/MariaDB%2010.11-pass-blue)

Expand Down

0 comments on commit bb45dbf

Please sign in to comment.