From e24b856416f1a14f029791ed26e20aa72daaf6ef Mon Sep 17 00:00:00 2001 From: Arunavo Ray Date: Mon, 2 Jun 2025 15:08:10 +0530 Subject: [PATCH] chore: bump version to 2.12.0 - Fixed SQLite 'no such table: mirror_jobs' error during application startup - Implemented automatic database table creation during database initialization - Resolved database schema inconsistencies between development and production environments - Enhanced database initialization process with automatic table creation and indexing - Added comprehensive error handling for database table creation - Integrated database repair functionality into application startup for better reliability --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a5f51..6f0feae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to the Gitea Mirror project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.12.0] - 2025-01-27 + +### Fixed +- Fixed SQLite "no such table: mirror_jobs" error during application startup +- Implemented automatic database table creation during database initialization +- Resolved database schema inconsistencies between development and production environments + +### Improved +- Enhanced database initialization process with automatic table creation and indexing +- Added comprehensive error handling for database table creation +- Integrated database repair functionality into application startup for better reliability + ## [2.5.3] - 2025-05-22 ### Added diff --git a/package.json b/package.json index 5ff1e1c..24d4f74 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gitea-mirror", "type": "module", - "version": "2.11.2", + "version": "2.12.0", "engines": { "bun": ">=1.2.9" },