1.0rc6 release: Add user password and avatar change functionality
This commit is contained in:
+6
-9
@@ -1,18 +1,15 @@
|
||||
# Eurovision 25 Backend Changelog
|
||||
|
||||
## 1.0rc6 (2025-05-16)
|
||||
|
||||
### Features
|
||||
- Added ability for users to change their password and avatar image
|
||||
|
||||
## 1.0rc5 (2025-05-16)
|
||||
|
||||
### Features
|
||||
- Added vote weighting system for jury scores
|
||||
- Improved performance for results calculation
|
||||
|
||||
### Fixes
|
||||
- Fixed inconsistent sorting in results view
|
||||
- Fixed avatar upload size validation
|
||||
|
||||
### Changes
|
||||
- Updated dependencies to latest versions
|
||||
- Enhanced API documentation
|
||||
- Changed API documentation for security reasons
|
||||
|
||||
## 1.0rc4 (2025-05-16)
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Eurovision 25 Homereview Backend
|
||||
|
||||
**Version: 1.0rc5**
|
||||
**Version: 1.0rc6**
|
||||
|
||||
## Description
|
||||
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ services:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
image: eurovision-25-backend:1.0rc5
|
||||
image: eurovision-25-backend:1.0rc6
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "Eurovision-25-backend"
|
||||
version = "1.0rc5"
|
||||
version = "1.0rc6"
|
||||
description = "Backend for Eurovision 25"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ from lib.db import init_db
|
||||
app = FastAPI(
|
||||
title="Eurovision 25 Homereview API",
|
||||
description="Backend API for Eurovision 25 Homereview application",
|
||||
version="1.0rc5",
|
||||
version="1.0rc6",
|
||||
openapi_url="/sec_schema.json",
|
||||
docs_url="/docut",
|
||||
redoc_url=None,
|
||||
|
||||
Reference in New Issue
Block a user