cms.c2sgmbh/docs/anleitungen/framework-monitoring.md
Martin Porwoll a923d3ecb4 docs: cleanup and update documentation for January 2026
- 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>
2026-01-17 15:29:34 +00:00

57 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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