Skip to content

Commit

Permalink
Merge pull request #61 from flyway/use-flyway-version-10.18.1
Browse files Browse the repository at this point in the history
Bump Flyway Version to 10.18.1
  • Loading branch information
WilliamL-RG authored Sep 24, 2024
2 parents b8a8004 + cd48007 commit 6c378ab
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion flyway-community-db-support-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support-archetype</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
<packaging>maven-archetype</packaging>

<name>Archetype - flyway-community-db-support-archetype</name>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-clickhouse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-clickhouse</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-databricks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-databricks</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-db2zos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-db2zos</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
int statementPos, int statementLine, int statementCol,
int nonCommentPartPos, int nonCommentPartLine, int nonCommentPartCol,
StatementType statementType, boolean canExecuteInTransaction,
Delimiter delimiter, String sql, boolean batchable) throws IOException {
Delimiter delimiter, String sql, List<Token> tokens, boolean batchable) throws IOException {
LOG.debug(sql);
if (statementType == DB2Z_CALL_STATEMENT) {
Matcher callMatcher = DB2Z_CALL_WITH_PARMS_REGEX.matcher(sql);
Expand Down Expand Up @@ -108,7 +108,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
LOG.debug("createStatement: DB2Z CALL no parms " + statementType + " " + sql);
return super.createStatement(reader, recorder, statementPos, statementLine, statementCol,
nonCommentPartPos, nonCommentPartLine, nonCommentPartCol,
statementType, canExecuteInTransaction, delimiter, sql, batchable
statementType, canExecuteInTransaction, delimiter, sql, tokens, batchable
);
}

Expand Down
3 changes: 2 additions & 1 deletion flyway-database-ignite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-ignite</artifactId>
Expand All @@ -33,6 +33,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>flyway-core</artifactId>
<version>10.17.0</version>
</dependency>
<dependency>
<groupId>org.apache.ignite</groupId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-oceanbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-oceanbase</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-tidb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-tidb</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion flyway-database-yugabytedb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-community-db-support</artifactId>
<version>10.16.1</version>
<version>10.16.2</version>
</parent>

<artifactId>flyway-database-yugabytedb</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>10.17.0</version>
<version>10.18.1</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>flyway-community-db-support</artifactId>
<packaging>pom</packaging>
<version>10.16.1</version>
<version>10.16.2</version>
<name>${project.artifactId}</name>

<modules>
Expand All @@ -43,7 +43,7 @@
</modules>

<properties>
<version.flyway>10.17.0</version.flyway>
<version.flyway>10.18.1</version.flyway>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 6c378ab

Please sign in to comment.