-
v3.41.0
released this
2026-01-07 12:14:46 +00:00 | 49 commits to main since this releasev3.41.0 Release Notes
What's New in v3.41.0
Features
- Systemd Integration - One-command install with
dbbackup install - Prometheus Metrics - HTTP exporter on port 9399 with
/metricsand/healthendpoints - Backup Catalog - SQLite-based tracking of all backup operations
- Automated CI/CD - Gitea Actions pipeline with automated releases
Installation
Quick Install (Recommended)
# Download for your platform curl -LO https://git.uuxo.net/UUXO/dbbackup/releases/download/v3.41.0/dbbackup-linux-amd64 # Install with systemd service chmod +x dbbackup-linux-amd64 sudo ./dbbackup-linux-amd64 install --config /path/to/config.yamlAvailable Binaries
Platform Architecture Binary Linux amd64 dbbackup-linux-amd64Linux arm64 dbbackup-linux-arm64macOS Intel dbbackup-darwin-amd64macOS Apple Silicon dbbackup-darwin-arm64FreeBSD amd64 dbbackup-freebsd-amd64Systemd Commands
dbbackup install --config config.yaml # Install service + timer dbbackup install --status # Check service status dbbackup install --uninstall # Remove servicesPrometheus Metrics
Available at
http://localhost:9399/metrics:Metric Description dbbackup_last_backup_timestampUnix timestamp of last backup dbbackup_last_backup_success1 if successful, 0 if failed dbbackup_last_backup_duration_secondsDuration of last backup dbbackup_last_backup_size_bytesSize of last backup dbbackup_backup_totalTotal number of backups dbbackup_backup_errors_totalTotal number of failed backups Security Features
- Hardened systemd service with
ProtectSystem=strict NoNewPrivileges=trueprevents privilege escalation- Dedicated
dbbackupsystem user (optional) - Credential files with restricted permissions
Documentation
- SYSTEMD.md - Complete systemd installation guide
- README.md - Full documentation
- CHANGELOG.md - Version history
Bug Fixes
- Fixed exporter status detection in
install --status - Improved error handling in restore operations
- Better JSON escaping in CI release creation
Full Changelog: https://git.uuxo.net/UUXO/dbbackup/compare/v3.40.0...v3.41.0
Downloads
- Systemd Integration - One-command install with