Skip to content

Commit

Permalink
Support for MySQL 8.2 (#159)
Browse files Browse the repository at this point in the history
Motivation:
MySQL 8.2 has been released

Modification:
Added integration tests for MySQL 8.2

Result:
Ensures compatibility with MySQL 8.2
  • Loading branch information
jchrys authored and mirromutth committed Dec 22, 2023
1 parent 96f57c6 commit b64a6cf
Show file tree
Hide file tree
Showing 2 changed files with 3 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, 5.7, 8.0, 8.1 ]
mysql-version: [ 5.5, 5.6, 5.7, 8.0, 8.1, 8.2 ]
name: Integration test with MySQL ${{ matrix.mysql-version }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ This project is currently being maintained by [@jchrys](https://github.com/jchry
![MySQL 5.7 status](https://img.shields.io/badge/MySQL%205.7-pass-blue)
![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)



In fact, it supports lower versions, in the theory, such as 4.1, 4.0, etc.
Expand Down

0 comments on commit b64a6cf

Please sign in to comment.