Skip to content

Commit

Permalink
Bump org.liquibase:liquibase-core from 4.27.0 to 4.28.0 (#468)
Browse files Browse the repository at this point in the history
Bumps [org.liquibase:liquibase-core](https://github.com/liquibase/liquibase) from 4.27.0 to 4.28.0.
- [Release notes](https://github.com/liquibase/liquibase/releases)
- [Changelog](https://github.com/liquibase/liquibase/blob/v4.28.0/changelog.txt)
- [Commits](liquibase/liquibase@v4.27.0...v4.28.0)
  • Loading branch information
adangel committed May 24, 2024
1 parent fc5c575 commit 4924b4f
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 8 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<details>
<summary>6 changes</summary>

- ([#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
</details>

**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.
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -566,7 +567,7 @@ Add the following dependency to the liquibase plugin:
<dependency>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-percona</artifactId>
<version>4.26.0</version>
<version>4.28.0</version>
</dependency>
```

Expand Down Expand Up @@ -603,13 +604,13 @@ Enable the snapshot repository via Maven:

See also <https://maven.apache.org/guides/development/guide-testing-development-plugins.html>.

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
<dependency>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-percona</artifactId>
<version>4.25.1-SNAPSHOT</version>
<version>4.28.1-SNAPSHOT</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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}
Expand Down
3 changes: 2 additions & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<project.build.outputTimestamp>2024-03-28T07:01:34Z</project.build.outputTimestamp>

<java.version>1.8</java.version>
<liquibase.version>4.27.0</liquibase.version>
<liquibase.version>4.28.0</liquibase.version>
<mysql.connector.version>8.4.0</mysql.connector.version>
<mariadb.connector.version>3.3.3</mariadb.connector.version>
<percona.toolkit.version>3.5.7</percona.toolkit.version>
Expand Down

0 comments on commit 4924b4f

Please sign in to comment.