- Fix duplicate _legacy_version_dir check in storage.py
- Fix max_size_bytes -> max_bytes param in quota handler
- Move base64 import to module level in s3_api.py
- Add retry logic and atomic file ops to multipart upload
- Add shutdown() method to ReplicationManager
Performance:
- Add LRU eviction with OrderedDict to object cache
- Add cache version tracking for stale read detection
- Add streaming uploads for large files (>10 MiB) in replication
- Create _find_element() XML parsing helpers
Security:
- Gate SigV4 debug logging behind DEBUG_SIGV4 config
10 lines
218 B
Python
10 lines
218 B
Python
"""Central location for the application version string."""
|
|
from __future__ import annotations
|
|
|
|
APP_VERSION = "0.1.9"
|
|
|
|
|
|
def get_version() -> str:
|
|
"""Return the current application version."""
|
|
return APP_VERSION
|