Release 4.38.0 (#3123)

This commit is contained in:
Naoki Takezoe
2022-09-04 00:36:03 +09:00
committed by GitHub
parent 8160c93c15
commit 88e59405c5
3 changed files with 23 additions and 17 deletions

View File

@@ -1,6 +1,17 @@
# 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.38.0 - 3 Sep 2022
- Support multiple assignees for Issues and Pull requests
- Custom fields for issues and pull requests
- Reset password by users
- Allow to configure Jetty idle timeout in standalone mode
- Horizontal scroll for too wide tables in Markdown
- Hide header content on signin and register page
- Fix the default charset of the online editor in the repository viewer
- Fix the milestone count
- Some improvements and bugfixes for WebAPI and WebHook
## 4.37.2 - 16 Jan 2022 ## 4.37.2 - 16 Jan 2022
- Fixed a security issue reported by [Positive Technologies](https://www.ptsecurity.com/ww-en/). Great thanks for their detailed report and close support! - Fixed a security issue reported by [Positive Technologies](https://www.ptsecurity.com/ww-en/). Great thanks for their detailed report and close support!

View File

@@ -59,22 +59,17 @@ 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.37.x What's New in 4.38.x
------------- -------------
### 4.37.2 - 16 Jan 2022 ## 4.38.0 - 3 Sep 2022
- Fixed a security issue reported by [Positive Technologies](https://www.ptsecurity.com/ww-en/). Great thanks for their detailed report and close support! - Support multiple assignees for Issues and Pull requests
- Custom fields for issues and pull requests
### 4.37.1 - 14 Dec 2021 - Reset password by users
- Update gist-plugin and notification-plugin - Allow to configure Jetty idle timeout in standalone mode
- Fix SSHCommand extension point for apache-sshd 2.x - Horizontal scroll for too wide tables in Markdown
- Hide header content on signin and register page
### 4.37.0 - 11 Dec 2021 - Fix the default charset of the online editor in the repository viewer
- Enhance Git Reference APIs - Fix the milestone count
- Add milestone data to issue list API - Some improvements and bugfixes for WebAPI and WebHook
- Support "all" in issue list API
- Support EDDSA in signed commit verification
- Support custom SSH url
- Relax max passward length limitation
- Relax max webhook url length limitation
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.37.2" val GitBucketVersion = "4.38.0"
val ScalatraVersion = "2.8.2" val ScalatraVersion = "2.8.2"
val JettyVersion = "9.4.48.v20220622" val JettyVersion = "9.4.48.v20220622"
val JgitVersion = "5.13.1.202206130422-r" val JgitVersion = "5.13.1.202206130422-r"