Skip to content

Commit

Permalink
merge next
Browse files Browse the repository at this point in the history
  • Loading branch information
manjencic committed Jan 20, 2025
2 parents e736a74 + abfe079 commit 2aa76a1
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .ddev/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ CORS=http://localhost:8082,http://localhost:8080,http://localhost:8090,https://l
IP_BLACKLIST=

# Debug Configuration
PHP_IDE_CONFIG="serverName=localhost"
PHP_IDE_CONFIG="serverName=zms.ddev.site"
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## Release Muc-19 (17.01.2025)

<h2> Bug
</h2>
<ul>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-2871'>ZMS-2871</a>] - [Orthographie] Standort löschen: Löschtext hat ein Bindestrich
</li>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-2874'>ZMS-2874</a>] - [Orthographie] Mail-Popup Warteschlange: Button-Beschriftungen klein- statt großgeschrieben
</li>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-3399'>ZMS-3399</a>] - Bug Deadlock Daily Cronjob Prod writeCanceledByTime
</li>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-3463'>ZMS-3463</a>] - Alte Betreff-Texte in den Mail-Templates
</li>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-3500'>ZMS-3500</a>] - Die ausgewählte Dienstleistung wird nach Tagänderung nicht mehr angezeigt - NEUBUCHUNG
</li>
</ul>
<h2> Story
</h2>
<ul>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-2375'>ZMS-2375</a>] - Webseiten Titel (Tab) von Admin/Statistik anpassen
</li>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-3268'>ZMS-3268</a>] - Visuelles Unterscheidungsmerkmal einer ZMS-Admin-Umgebung
</li>
<li>[<a href='https://jira.muenchen.de/browse/ZMS-3434'>ZMS-3434</a>] - Ausdruck aus dem Kiosk ist pro Standort anpassbar
</li>
</ul>

## Release Muc-18 (13.12.2024)

<h2> Bug
Expand Down
52 changes: 52 additions & 0 deletions zmscitizenapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -699,3 +699,55 @@ graph TB
class CacheDir,Files storage
```

## Logger Service
```mermaid
flowchart TD
subgraph Log Types
A[LoggerService] --> B[Error Logs]
A --> C[Warning Logs]
A --> D[Info Logs]
A --> E[Request Logs]
end
subgraph Error Logs
B --> B1[Exception Details]
B1 --> B2[Stack Trace]
B2 --> B3[File & Line]
B3 --> B4[Request Context]
end
subgraph Warning & Info Logs
C & D --> CD1[Message]
CD1 --> CD2[Context Array]
CD2 --> CD3[Timestamp]
end
subgraph Request Logs
E --> E1[HTTP Method]
E1 --> E2[Path & Query]
E2 --> E3[Status Code]
E3 --> E4[Headers]
E4 --> E5[Response Body]
E5 --> E6[Client IP]
end
subgraph Processing
F[Rate Limiting]
G[Size Check]
H[Sensitive Data Filter]
I[JSON Encoding]
J[Write to Syslog]
end
B4 & CD3 & E6 --> F
F --> G
G --> H
H --> I
I --> J
```

The diagram shows:
1. Four main log types (Error, Warning, Info, Request)
2. Data included in each log type
3. Common processing steps for all logs
4. Special handling for sensitive data and size limits

0 comments on commit 2aa76a1

Please sign in to comment.