Skip to content

Commit

Permalink
Merge pull request #236 from dependabot/maven/main/org.liquibase-liqu…
Browse files Browse the repository at this point in the history
…ibase-core-4.15.0

Bump liquibase-core from 4.14.0 to 4.15.0 #236
  • Loading branch information
adangel committed Aug 23, 2022
2 parents 59d7de7 + 02269d7 commit 0df813d
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -66,7 +66,7 @@ changes provided by liquibase-core.
* Liquibase 3.5.5, 3.6.3, 3.7.0, 3.8.9, 3.9.0, and 3.10.3 (liquibase-percona 1.7.1). Percona Toolkit 3.3.0.
* Liquibase 4.0.0, 4.1.1, 4.2.2 (liquibase-percona 2.0.0). Percona Toolkit 3.3.0.
* Liquibase 4.0.0, 4.1.1, 4.2.2, 4.3.5, 4.4.3, 4.5.0, 4.6.2, 4.7.1, 4.8.0, 4.9.1, 4.10.0, 4.11.0, 4.12.0 (liquibase-percona 4.12.0). Percona Toolkit 3.3.1.
* Liquibase 4.0.0, 4.1.1, 4.2.2, 4.3.5, 4.4.3, 4.5.0, 4.6.2, 4.7.1, 4.8.0, 4.9.1, 4.10.0, 4.11.0, 4.12.0, 4.13.0, 4.14.0 (liquibase-percona 4.14.0). Percona Toolkit 3.4.0.
* Liquibase 4.0.0, 4.1.1, 4.2.2, 4.3.5, 4.4.3, 4.5.0, 4.6.2, 4.7.1, 4.8.0, 4.9.1, 4.10.0, 4.11.0, 4.12.0, 4.13.0, 4.14.0, 4.15.0 (liquibase-percona 4.15.0). Percona Toolkit 3.4.0.

## Supported Changes and examples

Expand Down Expand Up @@ -448,7 +448,7 @@ The jar files can be downloaded manually from maven:

### Command line liquibase

After extracting the zip file of liquibase, place `liquibase-percona-4.14.0.jar` file in the sub directory `lib`.
After extracting the zip file of liquibase, place `liquibase-percona-4.15.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 @@ -459,7 +459,7 @@ Add the following dependency to the liquibase plugin:
<dependency>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-percona</artifactId>
<version>4.14.0</version>
<version>4.15.0</version>
</dependency>
```

Expand Down Expand Up @@ -496,13 +496,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.14.1-SNAPSHOT`:
And just use the latest SNAPSHOT version for liquibase-percona dependency, e.g. `4.15.1-SNAPSHOT`:

```xml
<dependency>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-percona</artifactId>
<version>4.14.1-SNAPSHOT</version>
<version>4.15.1-SNAPSHOT</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -43,7 +43,7 @@
<project.build.outputTimestamp>2022-07-26T16:30:51+00:00</project.build.outputTimestamp>

<java.version>1.8</java.version>
<liquibase.version>4.14.0</liquibase.version>
<liquibase.version>4.15.0</liquibase.version>
<mysql.version>8.0.30</mysql.version>
<mariadb.connector.version>3.0.7</mariadb.connector.version>
<percona.toolkit.version>3.4.0</percona.toolkit.version>
Expand Down
63 changes: 63 additions & 0 deletions src/it/allChangesLiquibase4140/pom.xml
@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file
distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under
the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may
obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to
in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under
the License. -->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>@project.groupId@.it</groupId>
<artifactId>liquibase-percona-it-allChangesLiquibase4140</artifactId>
<version>1.0-SNAPSHOT</version>
<name>my-app</name>

<build>
<plugins>
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>4.14.0</version>
<dependencies>
<dependency>
<groupId>@project.groupId@</groupId>
<artifactId>@project.artifactId@</artifactId>
<version>@project.version@</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>@mysql.version@</version>
</dependency>
</dependencies>
<configuration>
<changeLogFile>test-changelog.xml</changeLogFile>
<driver>com.mysql.jdbc.Driver</driver>
<url>jdbc:mysql://@config_host@:@config_port@/@config_dbname@?useSSL=false&amp;allowPublicKeyRetrieval=true</url>
<username>@config_user@</username>
<password>@config_password@</password>
</configuration>
<executions>
<execution>
<id>updateSQL</id>
<phase>pre-integration-test</phase>
<goals>
<goal>updateSQL</goal>
</goals>
</execution>
<execution>
<id>update</id>
<phase>pre-integration-test</phase>
<goals>
<goal>update</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
21 changes: 21 additions & 0 deletions src/it/allChangesLiquibase4140/verify.groovy
@@ -0,0 +1,21 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

File sharedVerifyScript = new File( basedir, '../sharedScripts/allChanges/verify.groovy' )
evaluate( sharedVerifyScript )

0 comments on commit 0df813d

Please sign in to comment.