Release GitBucket 4.40.0 (#3396)

This commit is contained in:
Naoki Takezoe
2023-10-22 02:26:54 +09:00
committed by GitHub
parent bcd78b3e5b
commit 070f74e7dc
4 changed files with 16 additions and 7 deletions

View File

@@ -1,6 +1,13 @@
# Changelog # Changelog
All changes to the project will be documented in this file. All changes to the project will be documented in this file.
## 4.40.0 - 22 Oct 2023
- Drop Java 8 support
- Improve git push performance
- Show activities of all visible repositories as news feed
- Support custom fields of issues and pull requests in search condition
- Configurable default branch name
## 4.39.0 - 29 Apr 2023 ## 4.39.0 - 29 Apr 2023
- Support enum type in custom fields of Issues and Pull requests - Support enum type in custom fields of Issues and Pull requests
- Hide large diffs by default - Hide large diffs by default

View File

@@ -59,12 +59,13 @@ Support
- If you can't find same question and report, send it to our [Gitter room](https://gitter.im/gitbucket/gitbucket) before raising an issue. - 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. - 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.39.x What's New in 4.40.x
------------- -------------
## 4.39.0 - 29 Apr 2023 ## 4.40.0 - 22 Oct 2023
- Support enum type in custom fields of Issues and Pull requests - Drop Java 8 support
- Hide large diffs by default - Improve git push performance
- Add new options to make it possible to run GitBucket using multiple machines - Show activities of all visible repositories as news feed
- Fix many API issues - Support custom fields of issues and pull requests in search condition
- Configurable default branch name
See the [change log](CHANGELOG.md) for all of the updates. See the [change log](CHANGELOG.md) for all of the updates.

View File

@@ -3,7 +3,7 @@ import com.jsuereth.sbtpgp.PgpKeys._
val Organization = "io.github.gitbucket" val Organization = "io.github.gitbucket"
val Name = "gitbucket" val Name = "gitbucket"
val GitBucketVersion = "4.40.0-SNAPSHOT" val GitBucketVersion = "4.40.0"
val ScalatraVersion = "3.0.0" val ScalatraVersion = "3.0.0"
val JettyVersion = "10.0.17" val JettyVersion = "10.0.17"
val JgitVersion = "6.7.0.202309050840-r" val JgitVersion = "6.7.0.202309050840-r"

View File

@@ -117,4 +117,5 @@ object GitBucketCoreModule
new Version("4.38.3"), new Version("4.38.3"),
new Version("4.38.4"), new Version("4.38.4"),
new Version("4.39.0", new LiquibaseMigration("update/gitbucket-core_4.39.xml")), new Version("4.39.0", new LiquibaseMigration("update/gitbucket-core_4.39.xml")),
new Version("4.40.0")
) )