From 54b3845e26e76f6a35d604fb9d96e283b45ecc08 Mon Sep 17 00:00:00 2001 From: jchrys Date: Tue, 21 Nov 2023 20:20:18 +0900 Subject: [PATCH] Support for MySQL 8.2 (#159) Motivation: MySQL 8.2 has been released Modification: Added integration tests for MySQL 8.2 Result: Ensures compatibility with MySQL 8.2 --- .github/workflows/ci-integration-tests.yml | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-integration-tests.yml b/.github/workflows/ci-integration-tests.yml index 5f1395fd0..534393fe5 100644 --- a/.github/workflows/ci-integration-tests.yml +++ b/.github/workflows/ci-integration-tests.yml @@ -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 diff --git a/README.md b/README.md index 573fa5d5a..e426d52ef 100644 --- a/README.md +++ b/README.md @@ -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.