diff --git a/CHANGELOG.md b/CHANGELOG.md index 35d5c26..5fc24f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,32 @@ For Issues: Replace: [#$1](https://github.com/liquibase/liquibase-percona/issues/$1) --> +## [v4.31.0](https://github.com/liquibase/liquibase-percona/tree/v4.31.0) (2025-02-01) + +Support for Liquibase 4.31.0. + +### 📗 Notable Changes + +- ([#541](https://github.com/liquibase/liquibase-percona/pull/541)) build(deps): bump org.liquibase:liquibase-core from 4.30.0 to 4.31.0 @adangel + +### 🚀 New Features + +- ([#542](https://github.com/liquibase/liquibase-percona/pull/542)) Support MySQL 8.4 @adangel + +### 🧰 Maintenance + +- ([#543](https://github.com/liquibase/liquibase-percona/pull/543)) chore: Prepare release 4.31.0 @adangel +- ([#539](https://github.com/liquibase/liquibase-percona/pull/539)) Fix script download-toolkit.sh @adangel + +### 🤖 Security Driver and Other Updates + +- ([#541](https://github.com/liquibase/liquibase-percona/pull/541)) build(deps): bump org.liquibase:liquibase-core from 4.30.0 to 4.31.0 @adangel +- ([#540](https://github.com/liquibase/liquibase-percona/pull/540)) Bump percona-toolkit from 3.6.0 to 3.7.0 @adangel +- ([#538](https://github.com/liquibase/liquibase-percona/pull/538)) build(deps-dev): bump com.mysql:mysql-connector-j from 9.1.0 to 9.2.0 @[dependabot[bot]](https://github.com/apps/dependabot) +- ([#537](https://github.com/liquibase/liquibase-percona/pull/537)) Bump maven-release-plugin to 3.1.1 @adangel + +**Full Changelog**: https://github.com/liquibase/liquibase-percona/compare/v4.30.0...v4.31.0 + ## [v4.30.0](https://github.com/liquibase/liquibase-percona/tree/v4.30.0) (2024-12-19) Support for Liquibase 4.30.0. diff --git a/README.md b/README.md index 2ca7005..afbf326 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,11 @@ This liquibase extension supports the following changeset formats: ## Liquibase version(s) tested against +* Liquibase 4.31.0 (liquibase-percona 4.31.0). Percona Toolkit 3.7.0. + +
+Old Versions + * Liquibase 3.2.0 (liquibase-percona 1.0.0) * Liquibase 3.3.0 (liquibase-percona 1.1.1) * Liquibase 3.3.5 and 3.4.2 (liquibase-percona 1.2.1) @@ -95,6 +100,8 @@ This liquibase extension supports the following changeset formats: * Liquibase 4.29.2 (liquibase-percona 4.29.2). Percona Toolkit 3.6.0. * Liquibase 4.30.0 (liquibase-percona 4.30.0). Percona Toolkit 3.6.0. +
+ ## Supported Changes and examples The following changes are supported: @@ -558,7 +565,7 @@ The jar files can be downloaded manually from maven: ### Command line liquibase -After extracting the zip file of liquibase, place `liquibase-percona-4.30.0.jar` file in the sub directory `lib`. +After extracting the zip file of liquibase, place `liquibase-percona-4.31.0.jar` file in the sub directory `lib`. The shell script `liquibase` / `liquibase.bat` will automatically pick this up and the extension is available. ### Via Maven @@ -569,7 +576,7 @@ Add the following dependency to the liquibase plugin: org.liquibase.ext liquibase-percona - 4.30.0 + 4.31.0 ``` @@ -606,13 +613,13 @@ Enable the snapshot repository via Maven: See also . -And just use the latest SNAPSHOT version for liquibase-percona dependency, e.g. `4.30.1-SNAPSHOT`: +And just use the latest SNAPSHOT version for liquibase-percona dependency, e.g. `4.31.1-SNAPSHOT`: ```xml org.liquibase.ext liquibase-percona - 4.30.1-SNAPSHOT + 4.31.1-SNAPSHOT ``` diff --git a/docker/Dockerfile b/docker/Dockerfile index 13d4104..45bba24 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ -ARG LIQUIBASE_VERSION=4.30.0 -ARG LB_PERCONA_VERSION=4.30.0 +ARG LIQUIBASE_VERSION=4.31.0 +ARG LB_PERCONA_VERSION=4.31.0 ARG PERCONA_TOOLKIT_VERSION=3.7.0 FROM liquibase/liquibase:${LIQUIBASE_VERSION} diff --git a/docker/README.md b/docker/README.md index 29829ba..38fee6c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -6,7 +6,8 @@ with [Liquibase Percona Extension](https://github.com/liquibase/liquibase-percon ## Supported tags -* [4.30.0, 4.30, latest](https://github.com/liquibase/liquibase-percona/blob/main/docker/Dockerfile) (Percona Toolkit 3.6.0) +* [4.31.0, 4.31, latest](https://github.com/liquibase/liquibase-percona/blob/main/docker/Dockerfile) (Percona Toolkit 3.7.0) +* [4.30.0, 4.30](https://github.com/liquibase/liquibase-percona/blob/793e18ad5f1c715475087b72fa652bad5dfc6d49/docker/Dockerfile) (Percona Toolkit 3.6.0) * [4.29.2, 4.29](https://github.com/liquibase/liquibase-percona/blob/465cb21da46db1c9a3d15b3dc084434e17c57f24/docker/Dockerfile) (Percona Toolkit 3.6.0) * [4.28.0, 4.28](https://github.com/liquibase/liquibase-percona/blob/4924b4fe1670909d01b409e752cdc7210884ff59/docker/Dockerfile) (Percona Toolkit 3.5.7) * [4.27.0, 4.27](https://github.com/liquibase/liquibase-percona/blob/ec56085fc71f988ca2ac29fdaf51897d190a4bf0/docker/Dockerfile) (Percona Toolkit 3.5.7)