From 49bb57f4cc5c416f6d59d90565ab4e02b47b3ec5 Mon Sep 17 00:00:00 2001 From: James Date: Sun, 10 Mar 2024 18:02:47 -0400 Subject: [PATCH] chore: adds changelog --- CHANGELOG.md | 7 +++++++ README.md | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..28e6ef9 --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index b7e5d1c..758866c 100644 --- a/README.md +++ b/README.md @@ -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**