mirror of
https://github.com/gitbucket/gitbucket.git
synced 2026-05-06 08:07:50 +02:00
Release GitBucket 4.46.1 (#4008)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user