From baf560d53291224a15c0225a2abf8765622299df Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sat, 18 Apr 2026 11:09:43 +0900 Subject: [PATCH] Release GitBucket 4.46.1 (#4008) --- CHANGELOG.md | 6 +++++- README.md | 6 +++++- build.sbt | 2 +- src/main/scala/gitbucket/core/GitBucketCoreModule.scala | 3 ++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bee1e4447..7b107e1a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All changes to the project will be documented in this file. +## 4.46.1 - 18 Apr 2026 +- Fix NullPointerException that could happen in the commits page +- Add options to improve pull request compare performance + ## 4.46.0 - 7 Mar 2026 - Add support for reverting pull request - Add markdown toolbar @@ -90,7 +94,7 @@ db { ## 4.38.1 - 10 Sep 2022 - Fix comment diff in Chrome 105 - Fix Markdown table CSS -- Fix HTML rendering of multiple asignees +- Fix HTML rendering of multiple assignees ## 4.38.0 - 3 Sep 2022 - Support multiple assignees for Issues and Pull requests diff --git a/README.md b/README.md index 8686b4071..8541b0f04 100644 --- a/README.md +++ b/README.md @@ -59,8 +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.45.x +What's New in 4.46.x ------------- +## 4.46.1 - 18 Apr 2026 +- Fix NullPointerException that could happen in the commits page +- Add options to improve pull request compare performance + ## 4.46.0 - 7 Mar 2026 - Add support for reverting pull request - Add markdown toolbar diff --git a/build.sbt b/build.sbt index e5ced96ca..8bf69e3bf 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.46.0" +val GitBucketVersion = "4.46.1" val ScalatraVersion = "3.1.2" val JettyVersion = "10.0.26" val JgitVersion = "6.10.1.202505221210-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 4b1638c22..ff4b726d1 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -123,7 +123,8 @@ object GitBucketCoreModule new Version("4.43.0"), new Version("4.44.0", new LiquibaseMigration("update/gitbucket-core_4.44.xml")), new Version("4.45.0"), - new Version("4.46.0", new LiquibaseMigration("update/gitbucket-core_4.46.xml")) + new Version("4.46.0", new LiquibaseMigration("update/gitbucket-core_4.46.xml")), + new Version("4.46.1") ) { java.util.logging.Logger.getLogger("liquibase").setLevel(Level.SEVERE) }