From 6e14278961655fbd46ee98980ef227e285e2d56c Mon Sep 17 00:00:00 2001 From: Robin de Silva Jayasinghe Date: Thu, 12 Mar 2026 10:19:30 +0100 Subject: [PATCH 1/2] add tip regarding liquibase license change --- guides/databases/postgres.md | 4 ++++ guides/databases/schema-evolution.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/guides/databases/postgres.md b/guides/databases/postgres.md index 93f1973b9b..76e2bdf284 100644 --- a/guides/databases/postgres.md +++ b/guides/databases/postgres.md @@ -529,6 +529,10 @@ Add a Maven dependency to Liquibase in `srv/pom.xml`: ``` +::: tip Liquibase license change +Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) since the 5.0 release. You need to check if this is compatible with your application. +::: + Once `liquibase-core` is on the classpath, [Spring runs database migrations](https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto.data-initialization.migration-tool.liquibase) automatically on application startup and before your tests run. ### ① Initial Schema Version diff --git a/guides/databases/schema-evolution.md b/guides/databases/schema-evolution.md index 01b80d96b2..7bc176e9c0 100644 --- a/guides/databases/schema-evolution.md +++ b/guides/databases/schema-evolution.md @@ -194,4 +194,8 @@ Learn more about that in the [SAP HANA](hana.md) guide, section [HDI Schema Evol For Java-based CAP projects, you can also use [Liquibase](https://www.liquibase.org/) to control when, where, and how you deploy database changes. +::: tip Liquibase license change +Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) since the 5.0 release. You need to check if this is compatible with your application. +::: + Learn more about that in the [PostgreSQL](postgres.md) guide, section [Using Liquibase (Java)](postgres#using-liquibase-java). From ff9ce7ecfac3cc8e063419349f3f6e82a701d451 Mon Sep 17 00:00:00 2001 From: Robin de Silva Jayasinghe Date: Thu, 12 Mar 2026 11:26:17 +0100 Subject: [PATCH 2/2] changes after code review --- guides/databases/postgres.md | 2 +- guides/databases/schema-evolution.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/databases/postgres.md b/guides/databases/postgres.md index 76e2bdf284..4754ce0007 100644 --- a/guides/databases/postgres.md +++ b/guides/databases/postgres.md @@ -530,7 +530,7 @@ Add a Maven dependency to Liquibase in `srv/pom.xml`: ``` ::: tip Liquibase license change -Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) since the 5.0 release. You need to check if this is compatible with your application. +Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) with release 5.0. You need to check if this license is compatible with your application. ::: Once `liquibase-core` is on the classpath, [Spring runs database migrations](https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto.data-initialization.migration-tool.liquibase) automatically on application startup and before your tests run. diff --git a/guides/databases/schema-evolution.md b/guides/databases/schema-evolution.md index 7bc176e9c0..2092079a5a 100644 --- a/guides/databases/schema-evolution.md +++ b/guides/databases/schema-evolution.md @@ -195,7 +195,7 @@ Learn more about that in the [SAP HANA](hana.md) guide, section [HDI Schema Evol For Java-based CAP projects, you can also use [Liquibase](https://www.liquibase.org/) to control when, where, and how you deploy database changes. ::: tip Liquibase license change -Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) since the 5.0 release. You need to check if this is compatible with your application. +Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) with release 5.0. You need to check if this license is compatible with your application. ::: Learn more about that in the [PostgreSQL](postgres.md) guide, section [Using Liquibase (Java)](postgres#using-liquibase-java).