GitBucket 4.24.0 released!
Today, we are pleased to announce the availability of new version of Scala based Git centric software development platform GitBucket 4.24.0!
Diff for each review comment on pull requests
In the conversation tab of pull requests, review comments for a specific line of code are grouped and diff of the location is shown with these comments. In addition, outdated comments are foldable.
Extra mail addresses support
Now multiple mail addresses can be registered for a user.
Show tags at the commit list
Tags are shown with commits at the commit list.
Keep wrap mode of the online editor
When you changed wrap mode (no wrap or soft wrap) on the online editor, this setting is kept using the local storage of your browser. This setting is shared with the gist plugin as well.
Renew layout of gitbucket-gist-plugin
The screen layout of gitbucket-gist-plugin has been whole renewed.
Web API of gitbucket-ci-plugin
gitbucket-ci-plugin (note that it’s a still unofficial plugin) now offers Web API to trigger build and retreive build information. These APIs have compatibiulity with CircleCI API v1.1. Currently, following APIs are supported:
- User (
GET /api/circleci/v1.1/me
) - Recent Builds For a Single Project (
GET /api/circleci/v1.1/project/gitbucket/:owner/:repository
) - Recent Builds For a Project Branch (
GET /api/circleci/v1.1/project/gitbucket/:owner/:repository/tree/:branch
) - Single Build (
GET /api/circleci/v1.1/project/gitbucket/:owner/:repository/:buildNum
) - Retry a Build (
POST /api/circleci/v1.1/project/gitbucket/:owner/:repository/:buildNum/retry
) - Cancel a Build (
POST /api/circleci/v1.1/project/gitbucket/:owner/:repository/:buildNum/cancel
) - Trigger a new Build (
POST /api/circleci/v1.1/project/gitbucket/:owner/:repository
) - Trigger a new Build with a Branch (
POST /api/circleci/v1.1/project/gitbucket/:owner/:repository/tree/:branch
)
In addition, this release contains some improvements and bug fixes. See all closed issues in this release to know details.
Enjoy GitBucket!