diff --git a/CHANGELOG.md b/CHANGELOG.md index a096b24..f83457e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog All changes to the project will be documented in this file. +## 4.41.0 - 18 May 2024 +- Simplify pull request UI +- Fix layout of branch selector +- Integrate keyword search with filtering in the search box +- Make max files and lines limit in showing diff configurable +- Adjust the default branch automatically when cloning external repo +- Performance improvement for listing branches +- Upgrade internal libraries + ## 4.40.0 - 22 Oct 2023 - Configurable default branch name - Support custom fields of issues and pull requests in search condition diff --git a/README.md b/README.md index c00d8ef..29f7f2a 100644 --- a/README.md +++ b/README.md @@ -59,14 +59,15 @@ - If you can't find same question and report, send it to our [Gitter 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.40.x +What's New in 4.41.x ------------- -## 4.40.0 - 22 Oct 2023 -- Configurable default branch name -- Support custom fields of issues and pull requests in search condition -- Create pull request from default branch of forked repositories -- News feed shows activities of all visible repositories -- Drop Java 8 support -- Improve git push performance +## 4.41.0 - 18 May 2024 +- Simplify pull request UI +- Fix layout of branch selector +- Integrate keyword search with filtering in the search box +- Make max files and lines limit in showing diff configurable +- Adjust the default branch automatically when cloning external repo +- Performance improvement for listing branches +- Upgrade internal libraries -See the [change log](CHANGELOG.md) for all of the updates. +- See the [change log](CHANGELOG.md) for all of the updates. diff --git a/build.sbt b/build.sbt index ce7cf75..834b15b 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.40.0" +val GitBucketVersion = "4.41.0" val ScalatraVersion = "3.0.0" val JettyVersion = "10.0.21" val JgitVersion = "6.9.0.202403050737-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 166679d..9d0bf39 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -116,5 +116,6 @@ new Version("4.38.3"), new Version("4.38.4"), new Version("4.39.0", new LiquibaseMigration("update/gitbucket-core_4.39.xml")), - new Version("4.40.0") + new Version("4.40.0"), + new Version("4.41.0") )