Updates for GitBucket 4.30.0 release

This commit is contained in:
Naoki Takezoe
2018-12-09 12:14:50 +09:00
parent 7fdb5ab142
commit 9d827eaa29
4 changed files with 19 additions and 9 deletions

View File

@@ -1,6 +1,14 @@
# 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.30.0 - xx Dec 2018
- Automatic ChangeLog generation for the Releases
- A lot of GitHub compatible Web APIs
- Show checkboxes in Markdown files in Git repository
- New extension point for plugins: anonymousAccessiblePaths
- Group support in Gist plugin
- Allow to redirect to the Release from the activity timeline
## 4.29.0 - 29 Sep 2018 ## 4.29.0 - 29 Sep 2018
- Official Docker image has been available - Official Docker image has been available
- Enhance file edit and delete buttons of the repository viewer - Enhance file edit and delete buttons of the repository viewer

View File

@@ -68,13 +68,14 @@ Support
- If you can't find same question and report, send it to [gitter room](https://gitter.im/gitbucket/gitbucket) before raising an issue. - If you can't find same question and report, send it to [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.29.x What's New in 4.30.x
------------- -------------
### 4.29.0 - 29 Sep 2018 ### 4.30.0 - xx Dec 2018
- Official Docker image has been available - Automatic ChangeLog generation for the Releases
- Enhance file edit and delete buttons of the repository viewer - A lot of GitHub compatible Web APIs
- Fix Patch button to generate patches for all files in the commit - Show checkboxes in Markdown files in Git repository
- Display confirmation dialog for Transfer Ownership and Garbage collection - New extension point for plugins: anonymousAccessiblePaths
- Fix wrong url encoding in "Compare & pull request" - Group support in Gist plugin
- Allow to redirect to the Release from the activity timeline
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.typesafe.sbt.pgp.PgpKeys._
val Organization = "io.github.gitbucket" val Organization = "io.github.gitbucket"
val Name = "gitbucket" val Name = "gitbucket"
val GitBucketVersion = "4.30.0-SNAPSHOT" val GitBucketVersion = "4.30.0"
val ScalatraVersion = "2.6.3" val ScalatraVersion = "2.6.3"
val JettyVersion = "9.4.14.v20181114" val JettyVersion = "9.4.14.v20181114"
val JgitVersion = "5.1.3.201810200350-r" val JgitVersion = "5.1.3.201810200350-r"

View File

@@ -58,5 +58,6 @@ object GitBucketCoreModule
new Version("4.26.0"), new Version("4.26.0"),
new Version("4.27.0", new LiquibaseMigration("update/gitbucket-core_4.27.xml")), new Version("4.27.0", new LiquibaseMigration("update/gitbucket-core_4.27.xml")),
new Version("4.28.0"), new Version("4.28.0"),
new Version("4.29.0") new Version("4.29.0"),
new Version("4.30.0")
) )