diff --git a/.changeset/gentle-experts-remember.md b/.changeset/gentle-experts-remember.md deleted file mode 100644 index 792f87bca..000000000 --- a/.changeset/gentle-experts-remember.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bigcommerce/catalyst-core": minor ---- - -Converts the change password messages over to using a toast. This should provide a better DX and UX. diff --git a/.changeset/silly-balloons-stare.md b/.changeset/silly-balloons-stare.md deleted file mode 100644 index 7e5d325e6..000000000 --- a/.changeset/silly-balloons-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bigcommerce/catalyst-core": minor ---- - -After login, redirect to orders page instead of an account overview page. This also removes the account overview page. diff --git a/.changeset/yellow-cougars-allow.md b/.changeset/yellow-cougars-allow.md deleted file mode 100644 index b7e09178a..000000000 --- a/.changeset/yellow-cougars-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@bigcommerce/catalyst-core": minor ---- - -If a customer is already logged in, we want to redirect them back to their account pages if they are trying to hit one of the non-logged-in customer auth routes. The prevents any side effects that may occur trying to re-auth the client. This is done by providing a root layout.tsx page under the (auth) route group. diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 9b80a6272..c0eb1d174 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.24.0 + +### Minor Changes + +- [#1746](https://github.com/bigcommerce/catalyst/pull/1746) [`0e34915`](https://github.com/bigcommerce/catalyst/commit/0e34915171da18ed141ecfacc6fa4c2a8f5e4c23) Thanks [@chanceaclark](https://github.com/chanceaclark)! - Converts the change password messages over to using a toast. This should provide a better DX and UX. + +- [#1743](https://github.com/bigcommerce/catalyst/pull/1743) [`7c03428`](https://github.com/bigcommerce/catalyst/commit/7c03428bf815bf2cc7b8aa35ff331379f7615094) Thanks [@chanceaclark](https://github.com/chanceaclark)! - After login, redirect to orders page instead of an account overview page. This also removes the account overview page. + +- [#1741](https://github.com/bigcommerce/catalyst/pull/1741) [`5136fac`](https://github.com/bigcommerce/catalyst/commit/5136fac6e05c6eb1ebce9707abcf1f180712358e) Thanks [@chanceaclark](https://github.com/chanceaclark)! - If a customer is already logged in, we want to redirect them back to their account pages if they are trying to hit one of the non-logged-in customer auth routes. The prevents any side effects that may occur trying to re-auth the client. This is done by providing a root layout.tsx page under the (auth) route group. + ## 0.23.0 ### Minor Changes diff --git a/core/package.json b/core/package.json index 6bb673700..81ad95f2e 100644 --- a/core/package.json +++ b/core/package.json @@ -1,7 +1,7 @@ { "name": "@bigcommerce/catalyst-core", "description": "BigCommerce Catalyst is a Next.js starter kit for building headless BigCommerce storefronts.", - "version": "0.23.0", + "version": "0.24.0", "private": true, "scripts": { "dev": "npm run generate && next dev",