Skip to content

Commit 6c378ab

Browse files
authored
Merge pull request #61 from flyway/use-flyway-version-10.18.1
Bump Flyway Version to 10.18.1
2 parents b8a8004 + cd48007 commit 6c378ab

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

flyway-community-db-support-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.flywaydb</groupId>
77
<artifactId>flyway-community-db-support-archetype</artifactId>
8-
<version>10.16.1</version>
8+
<version>10.16.2</version>
99
<packaging>maven-archetype</packaging>
1010

1111
<name>Archetype - flyway-community-db-support-archetype</name>

flyway-database-clickhouse/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-clickhouse</artifactId>

flyway-database-databricks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-databricks</artifactId>

flyway-database-db2zos/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-db2zos</artifactId>

flyway-database-db2zos/src/main/java/org/flywaydb/community/database/db2z/DB2ZParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
7777
int statementPos, int statementLine, int statementCol,
7878
int nonCommentPartPos, int nonCommentPartLine, int nonCommentPartCol,
7979
StatementType statementType, boolean canExecuteInTransaction,
80-
Delimiter delimiter, String sql, boolean batchable) throws IOException {
80+
Delimiter delimiter, String sql, List<Token> tokens, boolean batchable) throws IOException {
8181
LOG.debug(sql);
8282
if (statementType == DB2Z_CALL_STATEMENT) {
8383
Matcher callMatcher = DB2Z_CALL_WITH_PARMS_REGEX.matcher(sql);
@@ -108,7 +108,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
108108
LOG.debug("createStatement: DB2Z CALL no parms " + statementType + " " + sql);
109109
return super.createStatement(reader, recorder, statementPos, statementLine, statementCol,
110110
nonCommentPartPos, nonCommentPartLine, nonCommentPartCol,
111-
statementType, canExecuteInTransaction, delimiter, sql, batchable
111+
statementType, canExecuteInTransaction, delimiter, sql, tokens, batchable
112112
);
113113
}
114114

flyway-database-ignite/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-ignite</artifactId>
@@ -33,6 +33,7 @@
3333
<dependency>
3434
<groupId>${project.groupId}</groupId>
3535
<artifactId>flyway-core</artifactId>
36+
<version>10.17.0</version>
3637
</dependency>
3738
<dependency>
3839
<groupId>org.apache.ignite</groupId>

flyway-database-oceanbase/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-oceanbase</artifactId>

flyway-database-tidb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-tidb</artifactId>

flyway-database-yugabytedb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.flywaydb</groupId>
2525
<artifactId>flyway-community-db-support</artifactId>
26-
<version>10.16.1</version>
26+
<version>10.16.2</version>
2727
</parent>
2828

2929
<artifactId>flyway-database-yugabytedb</artifactId>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>org.flywaydb</groupId>
2323
<artifactId>flyway-parent</artifactId>
24-
<version>10.17.0</version>
24+
<version>10.18.1</version>
2525
<relativePath/>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

2929
<artifactId>flyway-community-db-support</artifactId>
3030
<packaging>pom</packaging>
31-
<version>10.16.1</version>
31+
<version>10.16.2</version>
3232
<name>${project.artifactId}</name>
3333

3434
<modules>
@@ -43,7 +43,7 @@
4343
</modules>
4444

4545
<properties>
46-
<version.flyway>10.17.0</version.flyway>
46+
<version.flyway>10.18.1</version.flyway>
4747
</properties>
4848

4949
<dependencyManagement>

0 commit comments

Comments
 (0)