Skip to content

Commit

Permalink
Bump version to flyway-9.14.1
Browse files Browse the repository at this point in the history
Please see the GH release for the release notes
  • Loading branch information
rg-buildmonkey committed Feb 1, 2023
1 parent ad0c64c commit 75c3b90
Show file tree
Hide file tree
Showing 21 changed files with 31 additions and 181 deletions.
2 changes: 1 addition & 1 deletion documentation/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

flywayVersion: 9.14.0
flywayVersion: 9.14.1
enterpriseUrl: https://download.red-gate.com/maven/release/org/flywaydb/enterprise
kramdown:
smart_quotes: ["apos", "apos", "quot", "quot"]
Expand Down
26 changes: 2 additions & 24 deletions flyway-commandline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<artifactId>flyway-commandline</artifactId>
<packaging>jar</packaging>
Expand All @@ -31,7 +31,7 @@


<flyway-gcp-bigquery.version>${project.version}</flyway-gcp-bigquery.version>
<flyway-gcp-spanner.version>9.14.0-beta</flyway-gcp-spanner.version>
<flyway-gcp-spanner.version>9.14.1-beta</flyway-gcp-spanner.version>
<flyway-sqlserver.version>${project.version}</flyway-sqlserver.version>
<flyway-mysql.version>${project.version}</flyway-mysql.version>
<flyway-firebird.version>${project.version}</flyway-firebird.version>
Expand Down Expand Up @@ -153,21 +153,6 @@



<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>applicationinsights-core</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>applicationinsights-runtime-attach</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
Expand Down Expand Up @@ -1045,13 +1030,6 @@
<type>jar</type>
<outputDirectory>${project.build.directory}/editions/community</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.flywaydb.enterprise</groupId>
<artifactId>flyway-telemetry-app-insights</artifactId>
<version>${project.version}</version>
<type>jar</type>
<outputDirectory>${project.build.directory}/editions/community</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
Expand Down
20 changes: 10 additions & 10 deletions flyway-commandline/src/main/assembly/component.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@
<include>com.fasterxml.jackson.core:jackson-core</include>
</includes>
</dependencySet>
<dependencySet>
<outputDirectory>lib/appinsights</outputDirectory>
<useTransitiveFiltering>true</useTransitiveFiltering>
<includes>
<include>com.microsoft.azure:applicationinsights-core</include>
<include>com.microsoft.azure:applicationinsights-runtime-attach</include>
<include>net.bytebuddy:byte-buddy-agent</include>
</includes>
</dependencySet>
<!-- <dependencySet>-->
<!-- <outputDirectory>lib/appinsights</outputDirectory>-->
<!-- <useTransitiveFiltering>true</useTransitiveFiltering>-->
<!-- <includes>-->
<!-- <include>com.microsoft.azure:applicationinsights-core</include>-->
<!-- <include>com.microsoft.azure:applicationinsights-runtime-attach</include>-->
<!-- <include>net.bytebuddy:byte-buddy-agent</include>-->
<!-- </includes>-->
<!-- </dependencySet>-->
<dependencySet>
<outputDirectory>lib/oracle_wallet</outputDirectory>
<useTransitiveFiltering>true</useTransitiveFiltering>
Expand Down Expand Up @@ -203,7 +203,7 @@
<include>org.flywaydb:flyway-mysql</include>
<include>org.flywaydb:flyway-firebird</include>
<include>org.flywaydb:flyway-proprietary</include>
<include>org.flywaydb:flyway-telemetry-app-insights</include>
<!-- <include>org.flywaydb:flyway-telemetry-app-insights</include>-->
</includes>
</dependencySet>

Expand Down
2 changes: 1 addition & 1 deletion flyway-commandline/src/main/assembly/flyway
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ else
if [ -z "$JAVA_HOME" ]; then JAVA_CMD=java; else JAVA_CMD=$JAVA_HOME/bin/java; fi
fi

CP="$CLASSPATH:$INSTALLDIR/lib/*:$INSTALLDIR/lib/aad/*:$INSTALLDIR/lib/appinsights/*:$INSTALLDIR/lib/oracle_wallet/*:$INSTALLDIR/lib/community/*:$INSTALLDIR/drivers/*:$INSTALLDIR/drivers/gcp/*"
CP="$CLASSPATH:$INSTALLDIR/lib/*:$INSTALLDIR/lib/aad/*:$INSTALLDIR/lib/oracle_wallet/*:$INSTALLDIR/lib/community/*:$INSTALLDIR/drivers/*:$INSTALLDIR/drivers/gcp/*"

EXTRA_ARGS=
if $linux; then
Expand Down
2 changes: 1 addition & 1 deletion flyway-commandline/src/main/assembly/flyway.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if "%JAVA_ARGS%"=="" (
set JAVA_ARGS=
)

%JAVA_CMD% -Djava.library.path="%INSTALLDIR%\native" %JAVA_ARGS% -cp "%CLASSPATH%;%INSTALLDIR%\lib\*;%INSTALLDIR%\lib\aad\*;%INSTALLDIR%\lib\appinsights\*;%INSTALLDIR%\lib\oracle_wallet\*;%INSTALLDIR%\lib\community\*;%INSTALLDIR%\drivers\*;%INSTALLDIR%\drivers\gcp\*" org.flywaydb.commandline.Main %*
%JAVA_CMD% -Djava.library.path="%INSTALLDIR%\native" %JAVA_ARGS% -cp "%CLASSPATH%;%INSTALLDIR%\lib\*;%INSTALLDIR%\lib\aad\*;%INSTALLDIR%\lib\oracle_wallet\*;%INSTALLDIR%\lib\community\*;%INSTALLDIR%\drivers\*;%INSTALLDIR%\drivers\gcp\*" org.flywaydb.commandline.Main %*

@REM Exit using the same code returned from Java
EXIT /B %ERRORLEVEL%
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import org.flywaydb.core.api.output.*;

import org.flywaydb.core.extensibility.CommandExtension;
import org.flywaydb.core.extensibility.TelemetryPlugin;
import org.flywaydb.core.internal.command.DbMigrate;
import org.flywaydb.core.internal.configuration.ConfigUtils;
import org.flywaydb.core.internal.configuration.TomlUtils;
Expand All @@ -47,7 +46,6 @@
import org.flywaydb.core.internal.logging.buffered.BufferedLog;
import org.flywaydb.core.internal.logging.multi.MultiLogCreator;
import org.flywaydb.core.internal.plugin.PluginRegister;
import org.flywaydb.core.internal.telemetry.TelemetryEventFactory;
import org.flywaydb.core.internal.util.*;

import java.io.Console;
Expand Down Expand Up @@ -134,9 +132,9 @@ public static void main(String[] args) {
try (JdbcConnectionFactory jdbcConnectionFactory = new JdbcConnectionFactory(configuration.getDataSource(), configuration, null);
Database database = jdbcConnectionFactory.getDatabaseType().createDatabase(configuration, false, jdbcConnectionFactory, null)) {

TelemetryPlugin telemetryPlugin = configuration.getPluginRegister().getHighestPriorityPlugin(TelemetryPlugin.class);
Map<String, String> properties = TelemetryEventFactory.createUpdateCheckRequest(configuration, commandLineArguments.getOperations(), database.getDatabaseType().getName(), database.getVersion().getVersion());
telemetryPlugin.trackEvent("updateCheckRequest", properties);
// [master-only]
// Telemetry to replace
// [/master-only]
}
}

Expand Down
2 changes: 1 addition & 1 deletion flyway-community-db-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion flyway-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<artifactId>flyway-core</artifactId>
<packaging>jar</packaging>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ org.flywaydb.core.internal.resource.CoreResourceTypeProvider
org.flywaydb.core.internal.database.postgresql.PostgreSQLConfigurationExtension
org.flywaydb.core.internal.command.clean.CleanModeConfigurationExtension
org.flywaydb.core.internal.configuration.resolvers.EnvironmentVariableResolver
org.flywaydb.core.internal.telemetry.NoopTelemetryClient
2 changes: 1 addition & 1 deletion flyway-firebird/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>flyway-parent</artifactId>
<groupId>org.flywaydb</groupId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions flyway-gcp-bigquery/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>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>flyway-gcp-bigquery</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<version>9.14.0</version>
<version>9.14.1</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions flyway-gcp-spanner/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>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>flyway-gcp-spanner</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<version>9.14.0-beta</version>
<version>9.14.1-beta</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion flyway-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<artifactId>flyway-gradle-plugin</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion flyway-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<artifactId>flyway-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion flyway-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>flyway-parent</artifactId>
<groupId>org.flywaydb</groupId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion flyway-singlestore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion flyway-sqlserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-parent</artifactId>
<version>9.14.0</version>
<version>9.14.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 75c3b90

Please sign in to comment.