1.0rc6 release: Add user password and avatar change functionality

This commit is contained in:
Esa Kataja
2025-05-16 14:36:22 +03:00
parent 230eb35cf2
commit fdc3c27121
6 changed files with 11 additions and 14 deletions
+6 -9
View File
@@ -1,18 +1,15 @@
# Eurovision 25 Backend Changelog # 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) ## 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 ### Changes
- Updated dependencies to latest versions - Updated dependencies to latest versions
- Enhanced API documentation - Changed API documentation for security reasons
## 1.0rc4 (2025-05-16) ## 1.0rc4 (2025-05-16)
+1 -1
View File
@@ -1,6 +1,6 @@
# Eurovision 25 Homereview Backend # Eurovision 25 Homereview Backend
**Version: 1.0rc5** **Version: 1.0rc6**
## Description ## Description
+1 -1
View File
@@ -8,7 +8,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: eurovision-25-backend:1.0rc5 image: eurovision-25-backend:1.0rc6
ports: ports:
- "8000:8000" - "8000:8000"
volumes: volumes:
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "Eurovision-25-backend" name = "Eurovision-25-backend"
version = "1.0rc5" version = "1.0rc6"
description = "Backend for Eurovision 25" description = "Backend for Eurovision 25"
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"
+1 -1
View File
@@ -12,7 +12,7 @@ from lib.db import init_db
app = FastAPI( app = FastAPI(
title="Eurovision 25 Homereview API", title="Eurovision 25 Homereview API",
description="Backend API for Eurovision 25 Homereview application", description="Backend API for Eurovision 25 Homereview application",
version="1.0rc5", version="1.0rc6",
openapi_url="/sec_schema.json", openapi_url="/sec_schema.json",
docs_url="/docut", docs_url="/docut",
redoc_url=None, redoc_url=None,
Generated
+1 -1
View File
@@ -131,7 +131,7 @@ wheels = [
[[package]] [[package]]
name = "eurovision-25-backend" name = "eurovision-25-backend"
version = "1.0rc5" version = "1.0rc6"
source = { virtual = "." } source = { virtual = "." }
dependencies = [ dependencies = [
{ name = "aiofiles" }, { name = "aiofiles" },