cms.c2sgmbh/docs/anleitungen/framework-monitoring.md
Martin Porwoll a849359c20 docs: consolidate and update documentation for Payload 3.76.1 / Next.js 16
Update all version references from Payload 3.69.0 → 3.76.1 and Next.js
15.5.9 → 16.2.0-canary.41. Replace .env.example (MongoDB → PostgreSQL)
and README.md (generic template → project-specific). Remove obsolete
BUG_REPORT_CUSTOM_VIEWS.md. Add YouTube Analytics Dashboard to URLs and
February 2026 changelog entry.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 21:29:50 +00:00

55 lines
1.4 KiB
Markdown
Raw Permalink 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 (Februar 2026):**
- Payload: **3.76.1** (stabil)
- Next.js: **16.2.0-canary.41**
- React: **19.2.3**
---
## 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**
6. Bei Erfolg: PR in `develop`
---
## 4. Bekannte Probleme
| Version | Problem | Status |
|---------|---------|--------|
| 3.72.0 | Login-Bug bei hasMany Relationships | Behoben in 3.76.1 |
*Letzte Aktualisierung: 13.02.2026*