All Versions
114
Latest Version
Avg Release Cycle
84 days
Latest Release
57 days ago

Changelog History
Page 1

  • v4.46.1

    April 18, 2026
  • v4.46.0

    March 07, 2026
  • v4.45.0

    January 10, 2026
  • v4.44.0 Changes

    September 23, 2025
    • โœจ Enhanced branch protection which supports the following settings:

      • Prevent pushes from non-allowed users
      • Whether to apply restrictions to administrator users as well
    • ๐Ÿ‘Œ Improve logging for initialization errors

  • v4.43.0 Changes

    June 29, 2025
    • โฌ†๏ธ Upgrade H2 database from 1.x to 2.x

    โฌ†๏ธ Note that upgrading from h2 1.x to 2.x requires data file migration: https://www.h2database.com/html/migration-to-v2.html

    It can't be done automatically using GitBucket's auto migration mechanism because it relies on database itself. So, users who use h2 will have to dump and recreate their database manually with the following steps:

    # Export database using the current version of H2$ curl -O https://repo1.maven.org/maven2/com/h2database/h2/1.4.199/h2-1.4.199.jar
    $ java -cp h2-1.4.199.jar org.h2.tools.Script -url"jdbc:h2:~/.gitbucket/data"-user sa -password sa -script dump.sql# Recreate database using the new version of H2$ curl -O https://repo1.maven.org/maven2/com/h2database/h2/2.3.232/h2-2.3.232.jar
    $ java -cp h2-2.3.232.jar org.h2.tools.RunScript -url"jdbc:h2:~/.gitbucket/data"-user sa -password sa -script dump.sql
    

    ๐Ÿ”ง In addition, if ~/.gitbucket/database.conf has the following configuration, remove ;MVCC=true from url.

    db {
      url = "jdbc:h2:${DatabaseHome};MVCC=true" // => "jdbc:h2:${DatabaseHome}"
      ...
    }
    
  • v4.42.1 Changes

    January 20, 2025
    • ๐Ÿ›  Fix LDAP issue with SSL
  • v4.42.0 Changes

    December 29, 2024
    • Increase max branch name length 100 -> 255
    • ๐Ÿ›  Fix some GitHub incompatible Web APIs
    • ๐Ÿ”Œ Apply user-defined CSS after all plugins
    • ๐Ÿ‘Œ Improve performance of listing commit logs
    • โฌ‡๏ธ Drop Java 11 support. Java 17 is now required
  • v4.41.0 Changes

    May 18, 2024
    • ๐Ÿ’ป Simplify pull request UI
    • Keyword search for issues and pull requests
    • ๐Ÿ†• New settings for max files and lines limit in showing diff
    • 0๏ธโƒฃ Adjust the default branch automatically when cloning external repository
    • ๐Ÿ›  Fix layout of branch selector
    • ๐ŸŽ Performance improvement for listing branches
    • โฌ†๏ธ Upgrade internal libraries
  • v4.40.0 Changes

    October 22, 2023
    • ๐Ÿ”ง Configurable default branch name
    • ๐Ÿ‘Œ Support custom fields of issues and pull requests in search condition
    • 0๏ธโƒฃ Create pull request from default branch of forked repositories
    • ๐Ÿ†• News feed shows activities of all visible repositories
    • โฌ‡๏ธ Drop Java 8 support
    • ๐Ÿ‘Œ Improve git push performance
  • v4.39.0 Changes

    April 28, 2023
    • ๐Ÿ‘Œ Support enum type in custom fields of Issues and Pull requests
    • 0๏ธโƒฃ Hide large diffs by default
    • โž• Add new options to make it possible to run GitBucket using multiple machines
    • ๐Ÿ›  Fix many API issues