mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 20:54:11 +00:00
- Delete redundant TODO.md (consolidated into PROJECT_STATUS.md) - Simplify STAGING-DEPLOYMENT.md to quick reference format - Update PROJECT_STATUS.md with January 2026 status: - Add Community Management System section - Document Payload 3.72.0 login bug (#15243) - Update roadmap and changelog - Update framework-monitoring.md with current versions and bug warning - Add YouTube/Meta collections to CLAUDE.md: - YouTubeChannels, YouTubeContent, YtSeries, YtNotifications - MetaAccounts Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
57 lines
1.5 KiB
Markdown
57 lines
1.5 KiB
Markdown
# Framework Monitoring – Payload CMS
|
||
|
||
Dieser Leitfaden beschreibt, wie wir Payload-Updates evaluieren und wann wir Upgrades durchführen können.
|
||
|
||
**Aktueller Stand (Januar 2026):**
|
||
- Payload: **3.69.0** (stabil)
|
||
- Next.js: **15.5.9**
|
||
- React: **19.2.3**
|
||
|
||
> ⚠️ **Payload 3.72.0 Bug:** Login schlägt fehl bei Usern mit hasMany Relationships (tenants, youtubeChannels). GitHub Issue: #15243. Bei 3.69.0 bleiben bis Fix verfügbar.
|
||
|
||
---
|
||
|
||
## 1. Versions-Check
|
||
|
||
```bash
|
||
pnpm check:frameworks
|
||
```
|
||
|
||
Der Befehl führt `pnpm outdated` für Payload-Core, Plugins und Next.js aus.
|
||
|
||
---
|
||
|
||
## 2. Release Notes verfolgen
|
||
|
||
- **Payload Releases:** https://github.com/payloadcms/payload/releases
|
||
Abonniere „Watch → Releases only" für automatische Benachrichtigungen.
|
||
- **Next.js Blog:** https://nextjs.org/blog
|
||
Breaking Changes, die Payload evtl. erst später unterstützt.
|
||
|
||
---
|
||
|
||
## 3. Vorgehen bei neuem Payload-Release
|
||
|
||
1. **Changelog prüfen** auf Breaking Changes und Bug-Fixes
|
||
2. **Branch erstellen:** `feature/upgrade-payload-X.Y.Z`
|
||
3. **Lokales Upgrade:**
|
||
```bash
|
||
pnpm up @payloadcms/next @payloadcms/db-postgres @payloadcms/richtext-lexical
|
||
pnpm install
|
||
```
|
||
4. **Tests ausführen:**
|
||
```bash
|
||
pnpm lint && pnpm typecheck && pnpm test && pnpm build
|
||
```
|
||
5. **Login-Test mit User mit Relationships** (kritisch nach 3.72.0 Bug)
|
||
6. Bei Erfolg: PR in `develop`
|
||
|
||
---
|
||
|
||
## 4. Bekannte Probleme
|
||
|
||
| Version | Problem | Status |
|
||
|---------|---------|--------|
|
||
| 3.72.0 | Login-Bug bei hasMany Relationships | Offen (GitHub #15243) |
|
||
|
||
*Letzte Aktualisierung: 17.01.2026*
|