57 lines
1.1 KiB
Markdown
57 lines
1.1 KiB
Markdown
|
|
# Release Notes - v1.3.5
|
||
|
|
|
||
|
|
**Release Date:** 22. december 2025
|
||
|
|
|
||
|
|
## 🐛 Bug Fixes
|
||
|
|
|
||
|
|
### E-conomic Sync
|
||
|
|
- **Fixed typo** i e-conomic sync endpoint: `verifiot_matched_count` → `verified_count`
|
||
|
|
- **Tilføjet `not_matched`** til return value for bedre feedback
|
||
|
|
|
||
|
|
## Deployment Instructions
|
||
|
|
|
||
|
|
### Production Server Update
|
||
|
|
|
||
|
|
1. **SSH til serveren:**
|
||
|
|
```bash
|
||
|
|
ssh bmcadmin@172.16.31.183
|
||
|
|
```
|
||
|
|
|
||
|
|
2. **Naviger til projekt directory:**
|
||
|
|
```bash
|
||
|
|
cd /path/to/bmc_hub # Skal opdateres til korrekt sti
|
||
|
|
```
|
||
|
|
|
||
|
|
3. **Pull ny version:**
|
||
|
|
```bash
|
||
|
|
git pull origin main
|
||
|
|
git checkout v1.3.5
|
||
|
|
```
|
||
|
|
|
||
|
|
4. **Genstart containers:**
|
||
|
|
```bash
|
||
|
|
docker-compose down
|
||
|
|
docker-compose up -d --build
|
||
|
|
```
|
||
|
|
|
||
|
|
5. **Verificer:**
|
||
|
|
```bash
|
||
|
|
docker ps
|
||
|
|
curl http://localhost:8001/health
|
||
|
|
curl http://localhost:8001/settings
|
||
|
|
```
|
||
|
|
|
||
|
|
## Technical Details
|
||
|
|
|
||
|
|
- **Git Tag:** v1.3.5
|
||
|
|
- **Commit:** c5ce819
|
||
|
|
- **Changed Files:** `app/system/backend/sync_router.py`
|
||
|
|
|
||
|
|
## Breaking Changes
|
||
|
|
|
||
|
|
Ingen breaking changes i denne release.
|
||
|
|
|
||
|
|
## Notes
|
||
|
|
|
||
|
|
Settings siden er verificeret at virke både lokalt og skal virke efter deployment på production.
|