layout | title | date | image | categories |
---|---|---|---|---|
post |
GitBucket 4.24.0 released! |
2018-04-29 17:00:00 -0700 |
/images/gitbucket-4.24.0/pull_request_comments.png |
gitbucket |
Today, we are pleased to announce the availability of new version of Scala based Git centric software development platform GitBucket 4.24.0!
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.
Now multiple mail addresses can be registered for a user.
Tags are shown with commits at the commit list.
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.
The screen layout of gitbucket-gist-plugin has been whole renewed.
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!