diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b1472..4630b0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,41 @@ This file is updated occasionally after a release and might be out of date. Replace: ([#$1](https:/github.com/liquibase/liquibase-percona/pull/$1)) --> +## [v4.28.0](https://github.com/liquibase/liquibase-percona/tree/v4.28.0) (2024-05-24) + +Support for Liquibase 4.28.0. + +### 📗 Notable Changes + +- ([#468](https://github.com/liquibase/liquibase-percona/issues/468)) Bump org.liquibase:liquibase-core from 4.27.0 to 4.28.0 @adangel + +### Changes + +- ([#460](https:/github.com/liquibase/liquibase-percona/pull/460)) DAT-17572 Modify CI/CD Configurations for Nexus Integration @jandroav + +### 🧰 Maintenance + +- ([#466](https:/github.com/liquibase/liquibase-percona/pull/466)) build: run automerge only after integration tests @adangel +- ([#465](https:/github.com/liquibase/liquibase-percona/pull/465)) chore: Use java 21 instead of 18 for building @adangel +- ([#464](https:/github.com/liquibase/liquibase-percona/pull/464)) chore: Update CHANGELOG.md and docker image after v4.27.0 release @adangel +- ([#467](https:/github.com/liquibase/liquibase-percona/pull/467)) build: Run integration tests against mysql 8.0 and 8.2 @adangel +- ([#463](https:/github.com/liquibase/liquibase-percona/pull/463)) chore: Fix unit tests after mysql update @adangel + +### 🤖 Security Driver and Other Updates + +
+6 changes + +- ([#462](https:/github.com/liquibase/liquibase-percona/pull/462)) chore(deps): bump org.codehaus.mojo:exec-maven-plugin from 3.2.0 to 3.3.0 @dependabot +- ([#461](https:/github.com/liquibase/liquibase-percona/pull/461)) chore(deps-dev): bump org.apache.tomcat:tomcat-jdbc from 10.1.23 to 10.1.24 @dependabot +- ([#459](https:/github.com/liquibase/liquibase-percona/pull/459)) chore(deps): bump liquibase/build-logic from 0.7.5 to 0.7.7 @dependabot +- ([#457](https:/github.com/liquibase/liquibase-percona/pull/457)) chore(deps-dev): bump com.mysql:mysql-connector-j from 8.3.0 to 8.4.0 @dependabot +- ([#456](https:/github.com/liquibase/liquibase-percona/pull/456)) chore(deps): bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2 @dependabot +- ([#455](https:/github.com/liquibase/liquibase-percona/pull/455)) chore(deps): bump liquibase/build-logic from 0.7.4 to 0.7.5 @dependabot +
+ +**Full Changelog**: https://github.com/liquibase/liquibase-percona/compare/v4.27.0...v4.28.0 + ## [v4.27.0](https://github.com/liquibase/liquibase-percona/tree/v4.27.0) (2024-04-25) Support for Liquibase 4.27.0. diff --git a/README.md b/README.md index 4edbade..868e3dc 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,7 @@ This liquibase extension supports the following changeset formats: * Liquibase 4.25.0 (liquibase-percona 4.25.0). Percona Toolkit 3.5.5. * Liquibase 4.26.0 (liquibase-percona 4.26.0). Percona Toolkit 3.5.5. * Liquibase 4.27.0 (liquibase-percona 4.27.0). Percona Toolkit 3.5.7. +* Liquibase 4.28.0 (liquibase-percona 4.28.0). Percona Toolkit 3.5.7. ## Supported Changes and examples @@ -555,7 +556,7 @@ The jar files can be downloaded manually from maven: ### Command line liquibase -After extracting the zip file of liquibase, place `liquibase-percona-4.26.0.jar` file in the sub directory `lib`. +After extracting the zip file of liquibase, place `liquibase-percona-4.28.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 @@ -566,7 +567,7 @@ Add the following dependency to the liquibase plugin: org.liquibase.ext liquibase-percona - 4.26.0 + 4.28.0 ``` @@ -603,13 +604,13 @@ Enable the snapshot repository via Maven: See also . -And just use the latest SNAPSHOT version for liquibase-percona dependency, e.g. `4.25.1-SNAPSHOT`: +And just use the latest SNAPSHOT version for liquibase-percona dependency, e.g. `4.28.1-SNAPSHOT`: ```xml org.liquibase.ext liquibase-percona - 4.25.1-SNAPSHOT + 4.28.1-SNAPSHOT ``` diff --git a/docker/Dockerfile b/docker/Dockerfile index 5271afe..1105427 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ -ARG LIQUIBASE_VERSION=4.27.0 -ARG LB_PERCONA_VERSION=4.27.0 +ARG LIQUIBASE_VERSION=4.28.0 +ARG LB_PERCONA_VERSION=4.28.0 ARG PERCONA_TOOLKIT_VERSION=3.5.7 FROM liquibase/liquibase:${LIQUIBASE_VERSION} diff --git a/docker/README.md b/docker/README.md index 453519d..ae6d0d9 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.27.0, 4.27, latest](https://github.com/liquibase/liquibase-percona/blob/main/docker/Dockerfile) (Percona Toolkit 3.5.7) +* [4.28.0, 4.28, latest](https://github.com/liquibase/liquibase-percona/blob/main/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) * [4.26.0, 4.26](https://github.com/liquibase/liquibase-percona/blob/4d5938c8f82578de5e710c363040837229b5e8d1/docker/Dockerfile) (Percona Toolkit 3.5.5) * [4.25.0, 4.25](https://github.com/liquibase/liquibase-percona/blob/9248833e77cab5925ac0ae3872e3aba7b2cd0bc3/docker/Dockerfile) (Percona Toolkit 3.5.5) * [4.24.0, 4.24](https://github.com/liquibase/liquibase-percona/blob/2a3b1eedd9cda15ebc7319c3d21959ccaeab8f17/docker/Dockerfile) (Percona Toolkit 3.5.5) diff --git a/pom.xml b/pom.xml index 00d64b4..deea60d 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ 2024-03-28T07:01:34Z 1.8 - 4.27.0 + 4.28.0 8.4.0 3.3.3 3.5.7