diff --git a/CHANGELOG.md b/CHANGELOG.md index ae0341ea0..3285ee090 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,14 @@ $ curl -O https://repo1.maven.org/maven2/com/h2database/h2/2.3.232/h2-2.3.232.ja $ java -cp h2-2.3.232.jar org.h2.tools.RunScript -url "jdbc:h2:~/.gitbucket/data" -user sa -password sa -script dump.sql ``` +In addition, if `~/.gitbucket/database.conf` has the following configuration, remove `;MVCC=true` from `url`. +``` +db { + url = "jdbc:h2:${DatabaseHome};MVCC=true" // => "jdbc:h2:${DatabaseHome}" + ... +} +``` + ## 4.42.1 - 20 Jan 2025 - Fix LDAP issue with SSL diff --git a/README.md b/README.md index 0962b26b1..e3ebb9002 100644 --- a/README.md +++ b/README.md @@ -77,4 +77,12 @@ $ curl -O https://repo1.maven.org/maven2/com/h2database/h2/2.3.232/h2-2.3.232.ja $ java -cp h2-2.3.232.jar org.h2.tools.RunScript -url "jdbc:h2:~/.gitbucket/data" -user sa -password sa -script dump.sql ``` +In addition, if `~/.gitbucket/database.conf` has the following configuration, remove `;MVCC=true` from `url`. +``` +db { + url = "jdbc:h2:${DatabaseHome};MVCC=true" // => "jdbc:h2:${DatabaseHome}" + ... +} +``` + See the [change log](CHANGELOG.md) for all the past updates.