diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a876b7f..d21309338 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All changes to the project will be documented in this file. +## 4.42.1 - 20 Jan 2025 +- Fix LDAP issue with SSL + ## 4.42.0 - 30 Dec 2024 - Increase max branch name length 100 -> 255 - Fix some GitHub incompatible Web APIs diff --git a/README.md b/README.md index 3c869a6f7..382ad9206 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,9 @@ Support What's New in 4.42.x ------------- +## 4.42.1 - 20 Jan 2025 +- Fix LDAP issue with SSL + ## 4.42.0 - 30 Dec 2024 - Increase max branch name length 100 -> 255 - Fix some GitHub incompatible Web APIs diff --git a/build.sbt b/build.sbt index eef125beb..fbea09d1e 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import com.jsuereth.sbtpgp.PgpKeys._ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.42.0" +val GitBucketVersion = "4.42.1" val ScalatraVersion = "3.1.1" val JettyVersion = "10.0.24" val JgitVersion = "6.10.0.202406032230-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 8539a0d19..26f409126 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -118,7 +118,8 @@ object GitBucketCoreModule new Version("4.39.0", new LiquibaseMigration("update/gitbucket-core_4.39.xml")), new Version("4.40.0"), new Version("4.41.0"), - new Version("4.42.0", new LiquibaseMigration("update/gitbucket-core_4.42.xml")) + new Version("4.42.0", new LiquibaseMigration("update/gitbucket-core_4.42.xml")), + new Version("4.42.1") ) { java.util.logging.Logger.getLogger("liquibase").setLevel(Level.SEVERE) }