chore: release v1.4.0

🔖 Version 1.4.0

###  Features
- Enable drag-and-drop reordering in ModerationGroupImagesPage
- Error handling system and animated error pages

### ♻️ Refactoring
- Extract ConsentFilter and StatsDisplay components from ModerationGroupsPage
- Consolidate error pages into single ErrorPage component
- Centralized styling with CSS and global MUI overrides

### 🔧 Chores
- Improve release script with tag-based commit detection
This commit is contained in:
Matthias Lotz 2025-11-29 16:54:58 +01:00
parent 40aa546498
commit 29e911b15d
8 changed files with 29173 additions and 7 deletions

View File

@ -1,5 +1,20 @@
# Changelog
## [1.4.0] - 2025-11-29
### ✨ Features
- Enable drag-and-drop reordering in ModerationGroupImagesPage
- Error handling system and animated error pages
### ♻️ Refactoring
- Extract ConsentFilter and StatsDisplay components from ModerationGroupsPage
- Consolidate error pages into single ErrorPage component
- Centralized styling with CSS and global MUI overrides
### 🔧 Chores
- Improve release script with tag-based commit detection
## [Unreleased] - Branch: feature/public-internal-hosts
### 🌐 Public/Internal Host Separation (November 25, 2025)

View File

@ -2,7 +2,7 @@
"openapi": "3.0.0",
"info": {
"title": "Project Image Uploader API",
"version": "1.2.0",
"version": "1.4.0",
"description": "Auto-generated OpenAPI spec with correct mount prefixes"
},
"servers": [

View File

@ -1,6 +1,6 @@
{
"name": "backend",
"version": "1.2.0",
"version": "1.4.0",
"description": "",
"main": "src/index.js",
"scripts": {

View File

@ -16,7 +16,7 @@ const endpointsFiles = routerMappings.map(r => path.join(routesDir, r.file));
const doc = {
info: {
title: 'Project Image Uploader API',
version: '1.2.0',
version: '1.4.0',
description: 'Auto-generated OpenAPI spec with correct mount prefixes'
},
host: 'localhost:5001',

View File

@ -1,12 +1,12 @@
{
"name": "frontend",
"version": "1.1.0",
"version": "1.4.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "frontend",
"version": "1.1.0",
"version": "1.4.0",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.2.0",
"version": "1.4.0",
"private": true,
"dependencies": {
"@dnd-kit/core": "^6.3.1",

29151
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -49,7 +49,7 @@ if [ -z "$LAST_TAG" ]; then
COMMITS=$(git log --oneline --no-merges)
else
echo "📋 Commits seit Tag $LAST_TAG werden verwendet"
COMMITS=$(git log ${LAST_TAG}..HEAD --online --no-merges)
COMMITS=$(git log ${LAST_TAG}..HEAD --oneline --no-merges)
fi
# 5. Gruppiere Commits nach Typ