-
Notifications
You must be signed in to change notification settings - Fork 1
guides_update_check
Guide to automatic version checking and update notifications.
- 📋 Übersicht
- ✨ Features
- 🚀 Quick Start
- 📖 Manual & Automatic Checks
- 💡 Best Practices
- 🔧 Troubleshooting
- 📚 Siehe auch
- 📝 Changelog
ThemisDB supports automatic version checking to notify administrators when new updates are available.
Stand: 22. Dezember 2025
Version: 1.3.0
Kategorie: ⚙️ Operations/Admin
- 🔄 Automatic Checks - Periodic update polling
- 📱 Version Notifications - Alert admins of new releases
- 🔒 Security Updates - Prioritized security release detection
- 🔗 Download Links - Direct links to latest releases
- 📊 Version Comparison - Track current vs latest version
- ⚙️ Configurable - Customize check frequency
ThemisDB instances can periodically check for updates by querying the version manifest hosted on GitHub. This allows you to:
- Be notified when new versions are released
- Check for security updates
- View download links for the latest version
- Compare your current version with the latest stable release
The version manifest is hosted at:
https://raw.githubusercontent.com/makr-code/ThemisDB/main/docs/VERSION.json
You can manually check the current version of your ThemisDB instance:
# Using the version endpoint
curl http://localhost:8765/version
# Response:
{
"version": "1.0.0",
"build_date": "2025-12-02",
"commit": "abc1234",
"update_available": false
}ThemisDB can be configured to automatically check for updates:
Via Environment Variable:
export THEMIS_UPDATE_CHECK_ENABLED=true
export THEMIS_UPDATE_CHECK_INTERVAL=86400 # Check once per day (in seconds)Via Configuration File (config/config.json):
{
"features": {
"update_check": {
"enabled": true,
"interval_seconds": 86400,
"notify_on_security_updates": true,
"notify_on_breaking_changes": true,
"channel": "stable"
}
}
}| Option | Default | Description |
|---|---|---|
enabled |
false |
Enable automatic update checking |
interval_seconds |
86400 |
How often to check for updates (24 hours) |
notify_on_security_updates |
true |
Log warnings for security updates |
notify_on_breaking_changes |
true |
Log warnings for breaking changes |
channel |
stable |
Update channel: stable, beta, nightly
|
check_url |
(default) | Custom URL for version manifest |
When update checking is enabled:
- On Startup: ThemisDB checks for updates when the server starts
- Periodic Checks: Checks occur at the configured interval
- Logging: Update information is logged to the server logs
- No Auto-Update: ThemisDB never automatically updates itself - it only notifies
No Update Available:
[themis] [info] Update check: Running version 1.0.0 (latest stable)
Update Available:
[themis] [warning] Update available: v1.1.0 is now available (current: 1.0.0)
[themis] [info] Download: https://github.com/makr-code/ThemisDB/releases/tag/v1.1.0
[themis] [info] Changelog: https://github.com/makr-code/ThemisDB/blob/main/CHANGELOG.md
Security Update:
[themis] [warning] SECURITY UPDATE AVAILABLE: v1.0.1 contains security fixes
[themis] [warning] Please update as soon as possible
[themis] [info] Security advisory: https://github.com/makr-code/ThemisDB/security/advisories/...
Returns the current version and update information.
Request:
curl http://localhost:8765/versionResponse:
{
"current": {
"version": "1.0.0",
"build_date": "2025-12-02",
"commit": "abc1234",
"platform": "linux-x64"
},
"latest": {
"version": "1.0.0",
"release_date": "2025-12-02",
"channel": "stable",
"update_available": false,
"breaking_changes": false,
"security_updates": [],
"announcement": "ThemisDB v1.0.0 - First stable release"
},
"downloads": {
"linux_x64_zip": {
"url": "https://github.com/makr-code/ThemisDB/releases/download/v1.0.0/themisdb-1.0.0-linux-x64.zip",
"sha256": "8B075931270487B493F9244738829CF84752D33FF7381B624044C988A00FCC80"
},
"debian_amd64": {
"url": "https://github.com/makr-code/ThemisDB/releases/download/v1.0.0/themisdb_1.0.0_amd64.deb",
"sha256": "D922D21C4D7EAAD2FF18F784E4C447BF8411925B14F582883E4BE22369D4B5C3"
}
}
}ThemisDB does not support in-place updates. To update:
# Pull latest image
docker pull themisdb/themisdb:latest
# Restart container
docker restart themisdb# Download new .deb
wget https://github.com/makr-code/ThemisDB/releases/download/v1.1.0/themisdb_1.1.0_amd64.deb
# Stop service
sudo systemctl stop themisdb
# Backup data (optional but recommended)
sudo cp -r /var/lib/themisdb/data /var/lib/themisdb/data.backup
# Install update
sudo dpkg -i themisdb_1.1.0_amd64.deb
# Start service
sudo systemctl start themisdb# Download new .rpm
wget https://github.com/makr-code/ThemisDB/releases/download/v1.1.0/themisdb-1.1.0-1.x86_64.rpm
# Stop service
sudo systemctl stop themisdb
# Backup data
sudo cp -r /var/lib/themisdb/data /var/lib/themisdb/data.backup
# Install update
sudo rpm -Uvh themisdb-1.1.0-1.x86_64.rpm
# Start service
sudo systemctl start themisdb# Download new version
wget https://github.com/makr-code/ThemisDB/releases/download/v1.1.0/themisdb-1.1.0-linux-x64.zip
unzip themisdb-1.1.0-linux-x64.zip
# Stop current instance
pkill themis_server
# Backup data
cp -r data data.backup
# Replace binary
cp themisdb-1.1.0-linux-x64/themis_server ./themis_server
# Start new version
./themis_server- Update checks are read-only and do not modify your installation
- No sensitive data is transmitted during update checks
- Only version information is requested from GitHub
- Update checks can be disabled if you prefer manual version management
If update checks fail, check:
-
Network connectivity: Can the server reach GitHub?
curl -I https://raw.githubusercontent.com/makr-code/ThemisDB/main/docs/VERSION.json
-
Firewall rules: Ensure outbound HTTPS traffic is allowed
-
Server logs: Check for error messages
sudo journalctl -u themisdb -n 100 | grep -i update
To completely disable update checking:
Environment Variable:
export THEMIS_UPDATE_CHECK_ENABLED=falseConfiguration File:
{
"features": {
"update_check": {
"enabled": false
}
}
}ThemisDB uses semantic versioning (semver) for version comparison:
- Major version (1.x.x): Breaking changes
- Minor version (x.1.x): New features, backwards compatible
- Patch version (x.x.1): Bug fixes, backwards compatible
Update priority is determined by:
- Critical: Security updates
- High: Major version updates with breaking changes
- Normal: Minor/patch updates
- Low: Beta/preview releases
Update checks send minimal information to GitHub:
- No user data or database contents
- No server identification or hostname
- Only a HTTP GET request for the VERSION.json file
The request appears as a standard HTTP request to GitHub's raw content CDN.
ThemisDB v1.3.4 | GitHub | Documentation | Discussions | License
Last synced: January 02, 2026 | Commit: 6add659
Version: 1.3.0 | Stand: Dezember 2025
- Übersicht
- Home
- Dokumentations-Index
- Quick Reference
- Sachstandsbericht 2025
- Features
- Roadmap
- Ecosystem Overview
- Strategische Übersicht
- Geo/Relational Storage
- RocksDB Storage
- MVCC Design
- Transaktionen
- Time-Series
- Memory Tuning
- Chain of Thought Storage
- Query Engine & AQL
- AQL Syntax
- Explain & Profile
- Rekursive Pfadabfragen
- Temporale Graphen
- Zeitbereichs-Abfragen
- Semantischer Cache
- Hybrid Queries (Phase 1.5)
- AQL Hybrid Queries
- Hybrid Queries README
- Hybrid Query Benchmarks
- Subquery Quick Reference
- Subquery Implementation
- Content Pipeline
- Architektur-Details
- Ingestion
- JSON Ingestion Spec
- Enterprise Ingestion Interface
- Geo-Processor Design
- Image-Processor Design
- Hybrid Search Design
- Fulltext API
- Hybrid Fusion API
- Stemming
- Performance Tuning
- Migration Guide
- Future Work
- Pagination Benchmarks
- Enterprise README
- Scalability Features
- HTTP Client Pool
- Build Guide
- Implementation Status
- Final Report
- Integration Analysis
- Enterprise Strategy
- Verschlüsselungsstrategie
- Verschlüsselungsdeployment
- Spaltenverschlüsselung
- Encryption Next Steps
- Multi-Party Encryption
- Key Rotation Strategy
- Security Encryption Gap Analysis
- Audit Logging
- Audit & Retention
- Compliance Audit
- Compliance
- Extended Compliance Features
- Governance-Strategie
- Compliance-Integration
- Governance Usage
- Security/Compliance Review
- Threat Model
- Security Hardening Guide
- Security Audit Checklist
- Security Audit Report
- Security Implementation
- Development README
- Code Quality Pipeline
- Developers Guide
- Cost Models
- Todo Liste
- Tool Todo
- Core Feature Todo
- Priorities
- Implementation Status
- Roadmap
- Future Work
- Next Steps Analysis
- AQL LET Implementation
- Development Audit
- Sprint Summary (2025-11-17)
- WAL Archiving
- Search Gap Analysis
- Source Documentation Plan
- Changefeed README
- Changefeed CMake Patch
- Changefeed OpenAPI
- Changefeed OpenAPI Auth
- Changefeed SSE Examples
- Changefeed Test Harness
- Changefeed Tests
- Dokumentations-Inventar
- Documentation Summary
- Documentation TODO
- Documentation Gap Analysis
- Documentation Consolidation
- Documentation Final Status
- Documentation Phase 3
- Documentation Cleanup Validation
- API
- Authentication
- Cache
- CDC
- Content
- Geo
- Governance
- Index
- LLM
- Query
- Security
- Server
- Storage
- Time Series
- Transaction
- Utils
Vollständige Dokumentation: https://makr-code.github.io/ThemisDB/