Skip to content

Commit

Permalink
Flyway 10
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebell90 committed Jun 5, 2024
1 parent cbe1679 commit 09d5e8f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

1.1.0
-----
* automatic modules
* flyway 10.10.
* Note this is now modularized as `flyway-core` and `flyway-database-postgresql`
* This brings in the `flyway-database-postgresql` and `jackson-dataformat-toml` as runtime optional dependencies.

Note for internal OT users: This is compatible with otj-SBT3, but not otj-SBT2.

1.0.3
----
* commons compress 1.26.0 (used by testcontainers) updated for a CVE.
Expand Down
29 changes: 26 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@
<project.build.targetJdk>11</project.build.targetJdk>
<maven.compiler.target>${project.build.targetJdk}</maven.compiler.target>
<project.build.systemJdk>${project.build.targetJdk}</project.build.systemJdk>
<dep.testcontainers.version>1.19.6</dep.testcontainers.version>
<dep.postgres-jdbc.version>42.7.2</dep.postgres-jdbc.version>
<dep.testcontainers.version>1.19.8</dep.testcontainers.version>
<dep.postgres-jdbc.version>42.7.3</dep.postgres-jdbc.version>
<dep.liquibase.version>4.23.1</dep.liquibase.version>
<dep.slf4j.version>1.7.36</dep.slf4j.version>
<dep.flyway.version>9.16.3</dep.flyway.version>
<dep.jackson.version>2.15.2</dep.jackson.version>
<dep.flyway.version>10.10.0</dep.flyway.version>
<dep.commons-lang.version>3.14.0</dep.commons-lang.version>
<dep.commons-compress.version>1.26.0</dep.commons-compress.version>
<dep.junit.version>4.13.2</dep.junit.version>
Expand Down Expand Up @@ -93,12 +94,27 @@
<scope>runtime</scope>
</dependency>



<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<optional>true</optional>
<version>${dep.flyway.version}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
<optional>true</optional>
<scope>runtime</scope>
<version>${dep.flyway.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-toml</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.liquibase</groupId>
Expand Down Expand Up @@ -158,6 +174,13 @@
<artifactId>testcontainers</artifactId>
<version>${dep.testcontainers.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${dep.jackson.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 09d5e8f

Please sign in to comment.