Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Flyway Version to 10.18.1 #61

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading