@cryptotaxi247 / CoPilot / commits / 77e37759

610 clarify unit of measurement for customer meta index retention field (#614)

* fix: clarify unit of measurement for hot data retention field * fix: update current version to 0.1.27

taylor_socfortress committed Jan 21, 2026 at 08:30 UTC 77e3775975ce480d94d5d2e14e0692aef418f9d0
2 files changed +2 -2
backend/app/version/services/version.py
+1 -1
@@ -7,7 +7,7 @@ from loguru import logger
7 from packaging.version import Version
8
9 # Current version - update this with each release
10 -CURRENT_VERSION = "0.1.26"
10 +CURRENT_VERSION = "0.1.27"
11 VERSION_CHECK_URL = "https://api.github.com/repos/socfortress/CoPilot/releases/latest"
12
13
frontend/src/components/customers/provision/CustomerProvisionWizard.vue
+1 -1
@@ -91,7 +91,7 @@
91 <n-form-item label="Index shards" path="index_shards" class="grow">
92 <n-input-number v-model:value="form.index_shards" min="0" class="grow" />
93 </n-form-item>
94 - <n-form-item label="Hot Data Retention" path="hot_data_retention" class="grow">
94 + <n-form-item label="Hot Data Retention (days)" path="hot_data_retention" class="grow">
95 <n-input-number v-model:value="form.hot_data_retention" min="0" class="grow" />
96 </n-form-item>
97 </div>