Release 4.45.0 (#3916)

This commit is contained in:
Naoki Takezoe
2026-01-10 11:55:30 +09:00
committed by GitHub
parent 2dd2c4f568
commit fcfd4008b6
5 changed files with 14 additions and 9 deletions

View File

@@ -1,6 +1,11 @@
# Changelog
All changes to the project will be documented in this file.
## 4.45.0 - 11 Jan 2026
- Add new option to show full username on UI
- Support render plugin in issues, pull requests, wiki and commit comments
- Support link to other pages from Wiki page using Wiki link syntax
## 4.44.0 - 23 Sep 2025
- Enhanced branch protection which supports the following settings:
- Prevent pushes from non-allowed users

View File

@@ -59,13 +59,12 @@ Support
- If you can't find same question and report, send it to our [Gitter chat room](https://gitter.im/gitbucket/gitbucket) before raising an issue.
- The highest priority of GitBucket is the ease of installation and API compatibility with GitHub, so your feature request might be rejected if they go against those principles.
What's New in 4.44.x
What's New in 4.45.x
-------------
## 4.44.0 - 23 Sep 2025
- Enhanced branch protection which supports the following settings:
- Prevent pushes from non-allowed users
- Whether to apply restrictions to administrator users as well
- Improve logging for initialization errors
## 4.45.0 - 11 Jan 2026
- Add new option to show full username on UI
- Support render plugin in issues, pull requests, wiki and commit comments
- Support link to other pages from Wiki page using Wiki link syntax
Note that you have to migrate h2 database file if you will upgrade GitBucket from 4.42 or before to 4.43 or later and you are using the default h2 database because h2 1.x and h2.x don't have compatibility: https://www.h2database.com/html/migration-to-v2.html

View File

@@ -2,7 +2,7 @@ import com.jsuereth.sbtpgp.PgpKeys._
val Organization = "io.github.gitbucket"
val Name = "gitbucket"
val GitBucketVersion = "4.44.0"
val GitBucketVersion = "4.45.0"
val ScalatraVersion = "3.1.2"
val JettyVersion = "10.0.26"
val JgitVersion = "6.10.1.202505221210-r"

View File

@@ -1,4 +1,4 @@
notifications:1.11.0
gist:4.23.0
gist:4.24.0
emoji:4.6.0
pages:1.10.0

View File

@@ -121,7 +121,8 @@ object GitBucketCoreModule
new Version("4.42.0", new LiquibaseMigration("update/gitbucket-core_4.42.xml")),
new Version("4.42.1"),
new Version("4.43.0"),
new Version("4.44.0", new LiquibaseMigration("update/gitbucket-core_4.44.xml"))
new Version("4.44.0", new LiquibaseMigration("update/gitbucket-core_4.44.xml")),
new Version("4.45.0")
) {
java.util.logging.Logger.getLogger("liquibase").setLevel(Level.SEVERE)
}