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:
parent
40aa546498
commit
29e911b15d
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -1,5 +1,20 @@
|
||||||
# Changelog
|
# 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
|
## [Unreleased] - Branch: feature/public-internal-hosts
|
||||||
|
|
||||||
### 🌐 Public/Internal Host Separation (November 25, 2025)
|
### 🌐 Public/Internal Host Separation (November 25, 2025)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"openapi": "3.0.0",
|
"openapi": "3.0.0",
|
||||||
"info": {
|
"info": {
|
||||||
"title": "Project Image Uploader API",
|
"title": "Project Image Uploader API",
|
||||||
"version": "1.2.0",
|
"version": "1.4.0",
|
||||||
"description": "Auto-generated OpenAPI spec with correct mount prefixes"
|
"description": "Auto-generated OpenAPI spec with correct mount prefixes"
|
||||||
},
|
},
|
||||||
"servers": [
|
"servers": [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "backend",
|
"name": "backend",
|
||||||
"version": "1.2.0",
|
"version": "1.4.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ const endpointsFiles = routerMappings.map(r => path.join(routesDir, r.file));
|
||||||
const doc = {
|
const doc = {
|
||||||
info: {
|
info: {
|
||||||
title: 'Project Image Uploader API',
|
title: 'Project Image Uploader API',
|
||||||
version: '1.2.0',
|
version: '1.4.0',
|
||||||
description: 'Auto-generated OpenAPI spec with correct mount prefixes'
|
description: 'Auto-generated OpenAPI spec with correct mount prefixes'
|
||||||
},
|
},
|
||||||
host: 'localhost:5001',
|
host: 'localhost:5001',
|
||||||
|
|
|
||||||
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "1.1.0",
|
"version": "1.4.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "1.1.0",
|
"version": "1.4.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@dnd-kit/core": "^6.3.1",
|
"@dnd-kit/core": "^6.3.1",
|
||||||
"@dnd-kit/sortable": "^10.0.0",
|
"@dnd-kit/sortable": "^10.0.0",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "1.2.0",
|
"version": "1.4.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@dnd-kit/core": "^6.3.1",
|
"@dnd-kit/core": "^6.3.1",
|
||||||
|
|
|
||||||
29151
package-lock.json
generated
Normal file
29151
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
|
@ -49,7 +49,7 @@ if [ -z "$LAST_TAG" ]; then
|
||||||
COMMITS=$(git log --oneline --no-merges)
|
COMMITS=$(git log --oneline --no-merges)
|
||||||
else
|
else
|
||||||
echo "📋 Commits seit Tag $LAST_TAG werden verwendet"
|
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
|
fi
|
||||||
|
|
||||||
# 5. Gruppiere Commits nach Typ
|
# 5. Gruppiere Commits nach Typ
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user