Release GitBucket 4.42.1 (#3699)

This commit is contained in:
Naoki Takezoe
2025-01-20 10:16:31 +09:00
committed by GitHub
parent 5eaf59eebb
commit d3268265cf
4 changed files with 9 additions and 2 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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"

View File

@@ -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)
}