Reset version to 1.0.0 and add TODO/CHANGELOG

Reset all Path A script versions from 3.x to 1.0.0 following architectural
decision to treat this as a fresh stable baseline after the Path B cleanup.
Added TODO.md with prioritized audit findings and replaced the old CHANGELOG
with a clean stub.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Stephen Klein
2026-06-10 21:05:28 -04:00
parent 2ba24f2a94
commit a0e4e63d01
13 changed files with 306 additions and 262 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
# HOPS - Common Utility Functions
# Shared functions for logging, error handling, and UI
# Version: 3.2.0
# Version: 1.0.0
# Prevent multiple sourcing
if [[ -n "${HOPS_COMMON_LOADED:-}" ]]; then
@@ -101,7 +101,7 @@ show_hops_header() {
local subtitle="$2"
if [[ -z "$version" ]]; then
version="3.2.0"
version="1.0.0"
fi
clear
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Docker Service Management
# Functions for Docker service management and monitoring
# Version: 3.1.0-beta
# Version: 1.0.0
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+2 -2
View File
@@ -2,7 +2,7 @@
# HOPS - Secret Management System
# Secure encryption and management of sensitive configuration data
# Version: 3.1.0-beta
# Version: 1.0.0
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@@ -190,7 +190,7 @@ create_encrypted_environment() {
cat > "$temp_env_file" << EOF
# HOPS Environment Configuration
# Generated on: $(date)
# Version: 3.1.0-beta
# Version: 1.0.0
# Core Configuration
PUID=$puid
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Security Functions
# Password generation, validation, and security utilities
# Version: 3.2.0
# Version: 1.0.0
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - System Validation Functions
# Functions for system checks, OS detection, and requirements validation
# Version: 3.2.0
# Version: 1.0.0
# Source common functions
LIB_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Input Validation and Sanitization Functions
# Comprehensive input validation and sanitization utilities
# Version: 3.1.0-beta
# Version: 1.0.0
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"