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

Update flyway from 5 2 4 to 8 0 5 #4312

Merged
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@ Apollo 2.0.0
* [Upgrade spring boot to 2.6.6 and spring cloud to 2021.0.1](https://github.com/apolloconfig/apollo/pull/4295)
* [Fix the apollo portal start failed issue](https://github.com/apolloconfig/apollo/pull/4298)
* [fix: javax.net.ssl.SSLHandshakeException: No appropriate protocol](https://github.com/apolloconfig/apollo/pull/4308)
* [Upgrade flyway to 8.0.5](https://github.com/apolloconfig/apollo/pull/4312)
------------------
All issues and pull requests are [here](https://github.com/ctripcorp/apollo/milestone/8?closed=1)
16 changes: 12 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>5.2.4</version>
<version>8.0.5</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
Expand All @@ -702,7 +702,11 @@
</dependency>
</dependencies>
<configuration>
<configFile>scripts/flyway/flyway-configdb.properties</configFile>
<configFiles>
<configFile>
scripts/flyway/flyway-configdb.properties
</configFile>
</configFiles>
</configuration>
<inherited>false</inherited>
</plugin>
Expand All @@ -716,7 +720,7 @@
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>5.2.4</version>
<version>8.0.5</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
Expand All @@ -725,7 +729,11 @@
</dependency>
</dependencies>
<configuration>
<configFile>scripts/flyway/flyway-portaldb.properties</configFile>
<configFiles>
<configFile>
scripts/flyway/flyway-portaldb.properties
</configFile>
</configFiles>
</configuration>
<inherited>false</inherited>
</plugin>
Expand Down