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-core to 10.11.0 #296

Closed
wants to merge 2 commits into from
Closed
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
7 changes: 3 additions & 4 deletions core/src/test/scala/fly4s/data/Samples.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package fly4s.data

import org.flywaydb.core.api.ErrorCode
import org.flywaydb.core.api.ErrorCode.VALIDATE_ERROR
import org.flywaydb.core.api.CoreErrorCode

import java.util
import java.util.Collections
Expand All @@ -25,7 +24,7 @@ object Samples {

def anErrorDetails: ErrorDetails =
new ErrorDetails(
VALIDATE_ERROR,
CoreErrorCode.VALIDATE_ERROR,
"ERROR_MESSAGE"
)

Expand All @@ -35,7 +34,7 @@ object Samples {
"DESCRIPTION",
"FILE_PATH",
new ErrorDetails(
ErrorCode.VALIDATE_ERROR,
CoreErrorCode.VALIDATE_ERROR,
"ERROR_MESSAGE"
)
)
Expand Down
2 changes: 1 addition & 1 deletion project/ProjectDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object ProjectDependencies {
lazy val common: Seq[ModuleID] = Seq(
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.4",
"org.flywaydb" % "flyway-core" % "10.10.0",
"org.flywaydb" % "flyway-core" % "10.11.0",
// test
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test,
Expand Down
Loading