Skip to content

Commit cc26418

Browse files
committed
Release v1.4.0
1 parent 977912c commit cc26418

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to ShipNode will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.0] - 2026-05-10
9+
10+
### Added
11+
12+
#### Database Backups
13+
- **`shipnode backup setup`**: Install/update a remote database backup script and systemd timer
14+
- **`shipnode backup run`**: Run a PostgreSQL, MySQL/MariaDB, or SQLite backup immediately
15+
- **`shipnode backup status`**: Show backup timer status, recent logs, and local backup files
16+
- **`shipnode backup list`**: List uploaded backups in S3
17+
- S3-compatible upload support with optional custom endpoint
18+
- Backup configuration in `shipnode.conf` and generated init configs
19+
820
## [1.3.1] - 2026-04-08
921

1022
### Added

build-dist.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GREEN='\033[0;32m'
77
BLUE='\033[0;34m'
88
NC='\033[0m'
99

10-
VERSION="1.3.5"
10+
VERSION="1.4.0"
1111
DIST_DIR="dist"
1212
ARCHIVE_NAME="shipnode-payload.tar.gz"
1313
INSTALLER_NAME="shipnode-installer.sh"
@@ -90,7 +90,7 @@ YELLOW='\033[1;33m'
9090
BLUE='\033[0;34m'
9191
NC='\033[0m'
9292
93-
VERSION="1.3.5"
93+
VERSION="1.4.0"
9494
INSTALL_DIR="$HOME/.shipnode"
9595
9696
# Parse flags

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ BLUE='\033[0;34m'
1010
NC='\033[0m'
1111

1212
echo -e "${BLUE}╔════════════════════════════════════╗${NC}"
13-
echo -e "${BLUE}║ ShipNode Installer v1.3.1${NC}"
13+
echo -e "${BLUE}║ ShipNode Installer v1.4.0${NC}"
1414
echo -e "${BLUE}╚════════════════════════════════════╝${NC}"
1515
echo
1616

lib/core.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ BLUE='\033[0;34m'
1010
NC='\033[0m' # No Color
1111

1212
# ShipNode version
13-
VERSION="1.3.5"
13+
VERSION="1.4.0"
1414

1515
# SSH multiplexing for connection reuse
1616
SSH_CONTROL_PATH="/tmp/shipnode-ssh-%r@%h:%p"

0 commit comments

Comments
 (0)