diff --git a/CHANGELOG.md b/CHANGELOG.md index 641f40198..c8f149181 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 752ee0178..0513aeec4 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.sbt b/build.sbt index 621b34021..9528aeb79 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.44.0" +val GitBucketVersion = "4.45.0" val ScalatraVersion = "3.1.2" val JettyVersion = "10.0.26" val JgitVersion = "6.10.1.202505221210-r" diff --git a/src/main/resources/bundle-plugins.txt b/src/main/resources/bundle-plugins.txt index 8b17eeac5..4943c8242 100644 --- a/src/main/resources/bundle-plugins.txt +++ b/src/main/resources/bundle-plugins.txt @@ -1,4 +1,4 @@ notifications:1.11.0 -gist:4.23.0 +gist:4.24.0 emoji:4.6.0 pages:1.10.0 diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 128c1a83d..8e3fc8127 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -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) }