chore: adds changelog

This commit is contained in:
James 2024-03-10 18:02:47 -04:00
parent 0dafd3bc45
commit 49bb57f4cc
2 changed files with 13 additions and 0 deletions

7
CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
# alpha.42
We are beginning to optimize the compilation and dev startup performance of Payload 3.0, and the first thing we've done is pre-compiled all SCSS that is required by the Payload admin UI.
If you started before `alpha.42` and update to this version, you'll see that no styles are loaded. To fix this, take a look at the `/src/app/(payload)/layout.tsx` file within this repo, and note that this file has a new CSS import within it to load all CSS required by the Payload admin panel.
Simply add this import to your `(payload)/layout.tsx` file, and you'll be back in business.

View File

@ -53,6 +53,12 @@ To try out this repo yourself, follow the steps below:
1. Fire it up (`yarn dev`, `npm run dev`, `pnpm dev`, etc.)
1. Visit https://localhost:3000 and log in with the user created within the config's `onInit` method
### Follow along with breaking changes
There is a possibility that we will make breaking changes before releasing the beta, and then the full stable version of Payload 3.0.
**To follow along with breaking changes in advance of the full, stable release,** you can keep an eye on the [CHANGELOG.md](https://github.com/payloadcms/payload-3.0-alpha-demo/blob/main/CHANGELOG.md).
### Technical details
**The app folder**