From f16cc117a9b0611c92a5bd799f5b5a3bfe08f842 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Tue, 23 Sep 2025 09:02:24 +0900 Subject: [PATCH] Release 4.44.0 (#3842) --- CHANGELOG.md | 4 ++++ README.md | 9 +++++---- build.sbt | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3285ee090..1f491c6b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All changes to the project will be documented in this file. +## 4.44.0 - 23 Sep 2025 +- Enhanced branch protection which supports rejecting users fo push, etc. +- Improve logging for initialization errors + ## 4.43.0 - 29 Jun 2025 - Upgrade H2 database from 1.x to 2.x diff --git a/README.md b/README.md index 5f4b171d1..72ecb71d1 100644 --- a/README.md +++ b/README.md @@ -59,12 +59,13 @@ Support - If you can't find same question and report, send it to our [Gitter chat 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. -What's New in 4.43.x +What's New in 4.44.x ------------- -## 4.43.0 - 29 Jun 2025 -- Upgrade H2 database from 1.x to 2.x +## 4.44.0 - 23 Sep 2025 +- Enhanced branch protection which supports rejecting users fo push, etc. +- Improve logging for initialization errors -Note that upgrading from h2 1.x to 2.x requires data file migration: https://www.h2database.com/html/migration-to-v2.html +Note that you have to migrate h2 database file if you will upgrade GitBucket from 4.42 or before to 4.43 or later and you are using the default h2 database because h2 1.x and h2.x don't have compatibility: 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: ```bash diff --git a/build.sbt b/build.sbt index b76af4b50..6f62d6c3a 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import com.jsuereth.sbtpgp.PgpKeys._ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.43.0" +val GitBucketVersion = "4.44.0" val ScalatraVersion = "3.1.2" val JettyVersion = "10.0.26" val JgitVersion = "6.10.1.202505221210-r"