# 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*