Browse Source

Upgrade to Liquibase 4.33.0

Closes gh-46500
pull/45341/head
Stéphane Nicoll 5 months ago
parent
commit
e1eead2bad
  1. 2
      platform/spring-boot-dependencies/build.gradle
  2. 2
      smoke-test/spring-boot-smoke-test-liquibase/src/test/java/smoketest/liquibase/SampleLiquibaseApplicationTests.java

2
platform/spring-boot-dependencies/build.gradle

@ -1237,7 +1237,7 @@ bom { @@ -1237,7 +1237,7 @@ bom {
releaseNotes("https://github.com/lettuce-io/lettuce-core/releases/tag/{version}")
}
}
library("Liquibase", "4.32.0") {
library("Liquibase", "4.33.0") {
group("org.liquibase") {
modules = [
"liquibase-cdi",

2
smoke-test/spring-boot-smoke-test-liquibase/src/test/java/smoketest/liquibase/SampleLiquibaseApplicationTests.java

@ -56,7 +56,7 @@ class SampleLiquibaseApplicationTests { @@ -56,7 +56,7 @@ class SampleLiquibaseApplicationTests {
assumeThat(serverNotRunning(ex)).isFalse();
}
assertThat(output).contains("Successfully acquired change log lock")
.contains("Creating database history table with name: PUBLIC.DATABASECHANGELOG")
.contains("Creating database changelog table with name: PUBLIC.DATABASECHANGELOG")
.contains("Table person created")
.contains("ChangeSet db/changelog/db.changelog-master.yaml::1::" + "marceloverdijk ran successfully")
.contains("New row inserted into person")

Loading…
Cancel
Save