GitBucket 4.14 released!
We’ve already released 4.14.1 because 4.14 had a possibility bug to fail to fork repository. Please use it instead. https://github.com/gitbucket/gitbucket/releases/tag/4.14.1
Today, we are pleased to announce the availability of new version of Scala based Git centric software development platform GitBucket 4.14!
Issue priorities
The priority field is available in issues and pull requests. You can filter and sort issues and pull requests by the priority.
Collapsed sidebar
Show icons when the sidebar is collapsed.
Web hook enhancement
This release includes following enhancement for web hook:
- Support gollum events (gollum events are events caused by Wiki operation)
- Support account (user / group) level web hook
Add –max_file_size option
Added --max_file_size
option to configure a max file size (bytes) in file uploading in standalone mode as:
java -jar gitbucket.war --max_file_size=10485760
Also it can be configured by a system property gitbucket.maxFileSize
. If you are deployong GitBucket on the servlet container, you can configure this way.
Configuration by system property or environment variable
All settings in gitbucket.conf
and database.conf
are configurable by system property or environment variable.
For example, GitBucket resolves ldap.mail_attribute
as following order:
- System property
gitbucket.ldap.mail_attribute
- Environment variable
GITBUCKET_LDAP_MAIL_ATTRIBUTE
ldap.mail_attribute
property ingitbucket.conf
This would make easily to configure GitBucket instance in Docker or similar environments.
New extension points for plug-in
Added new extension points for plug-in to hook issue and pull request events:
- accountHooks
- issueHooks
- pullRequestHooks
- issueSidebars
In addition, this release contains some improvements and bug fix. See all closed issues in this release to know details.
Enjoy GitBucket!