-
Notifications
You must be signed in to change notification settings - Fork 58
DEVDOCS-6653 - Catalyst 1.3.5 Release Notes #1177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4e5c999
Catalyst 1.4 Release Notes
chris-nowicki d1b0fd9
added getting started section
chris-nowicki 557172f
fix formatting
chris-nowicki c35839b
udpate intro parapgraph
chris-nowicki 3210941
updated migration changes from changeset
chris-nowicki c696665
updates based on new changes
chris-nowicki 4095812
Update dependencies references in 1.3.5 release note
chris-nowicki cb6ec42
updates per comments on live call
chris-nowicki 5b07b5a
update intro sentence
chris-nowicki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,114 @@ | ||
| # Catalyst version 1.3.5 Release Notes | ||
|
|
||
| This Catalyst v1.3.5 release addresses a **critical security vulnerability ([CVE-2025-55182](https://react.dev/blog/2025/12/03/critical-security-vulnerability-in-react-server-components))** that affects React Server Components. | ||
|
|
||
| ## Key Changes | ||
|
|
||
| - **Next.js 15.5.7**: Upgraded from Next.js 15.5.1-canary.4 to 15.5.7 (no more canary) | ||
| - **React 19**: Upgraded to React 19.1.2 and React DOM 19.1.2 | ||
| - **Partial Prerendering (PPR) Removed**: Removed partial prerendering as it's unsupported in non-canary versions of Next.js 15. | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| ## Next.js 15.5.7 Upgrade | ||
|
|
||
| Catalyst has been upgraded to Next.js 15.5.7. This upgrade moves from the canary release to the stable release and requires [migration steps](#migration-guide) for existing stores to fix a security vulnerability. | ||
|
|
||
| ## Critical Security Update | ||
|
|
||
| **This upgrade addresses a critical security vulnerability ([CVE-2025-55182](https://react.dev/blog/2025/12/03/critical-security-vulnerability-in-react-server-components))** that affects React Server Components. The vulnerability allowed unauthenticated remote code execution on servers running React Server Components. This upgrade includes: | ||
|
|
||
| - Next.js 15.5.7 with the security patch | ||
| - React 19.1.2 and React DOM 19.1.2 with the security patch | ||
|
|
||
| <Callout type='warning'> | ||
| All users are strongly encouraged to upgrade immediately. | ||
| </Callout> | ||
|
|
||
| ## Partial Prerendering (PPR) Removed | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| <Callout type='warning'> | ||
| **Important**: PPR (Partial Prerendering) has been **removed** in this | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| release. PPR was only available in the Next.js 15.5.1-canary.4 release and is | ||
| not supported in the stable 15.5.7 release. | ||
| </Callout> | ||
|
|
||
| - The `ppr` experimental flag has been removed from `next.config.ts` | ||
| - This may result in different performance characteristics compared to the Next.js 15.5.1-canary.4 + PPR setup | ||
|
|
||
| ## Migration Guide | ||
|
|
||
| ### Step 1: Update Dependencies | ||
|
|
||
| If you're maintaining a custom Catalyst store, update your `package.json`: | ||
|
|
||
| ```json | ||
| { | ||
| "dependencies": { | ||
| "next": "15.5.7", | ||
| "react": "^19.1.2", | ||
| "react-dom": "^19.1.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@next/bundle-analyzer": "15.5.7", | ||
| "eslint-config-next": "15.5.7" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| Then run: | ||
|
|
||
| ```bash | ||
| pnpm install | ||
| ``` | ||
|
|
||
| <Callout type='info'> | ||
| **Note**: `next` will automatically update your `tsconfig.json` file. | ||
| </Callout> | ||
|
|
||
| ### Step 2: Update next.config.ts | ||
|
|
||
| Remove or comment out PPR configuration: | ||
|
|
||
| ```typescript | ||
| // Remove or disable: | ||
| // experimental: { | ||
| // ppr: 'incremental', | ||
| // } | ||
| ``` | ||
|
|
||
| Remove or comment out eslint config | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| ```typescript | ||
| // eslint: { | ||
| // ignoreDuringBuilds: !!process.env.CI, | ||
| // dirs: [ | ||
| // 'app', | ||
| // 'auth', | ||
| // 'build-config', | ||
| // 'client', | ||
| // 'components', | ||
| // 'data-transformers', | ||
| // 'i18n', | ||
| // 'lib', | ||
| // 'middlewares', | ||
| // 'scripts', | ||
| // 'tests', | ||
| // 'vibes', | ||
| // ], | ||
| // }, | ||
| ``` | ||
|
|
||
| ### Step 3: Remove `experimental_ppr` flag | ||
|
|
||
| Remove all `export const experimental_ppr` declarations from your codebase, regardless of whether they are set to `true` or `false`. | ||
|
|
||
| ## Getting Started | ||
|
|
||
| We have published new tags for the Core and Makeswift versions of Catalyst. Target these tags to pull the latest code: | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - [**@bigcommerce/catalyst-core@1.3.5**](https://github.com/bigcommerce/catalyst/releases/tag/%40bigcommerce%2Fcatalyst-core%401.3.5) | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - [**@bigcommerce/catalyst-makeswift@1.3.6**](https://github.com/bigcommerce/catalyst/releases/tag/%40bigcommerce%2Fcatalyst-makeswift%401.3.6) | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| And as always, you can pull the latest stable release with these tags: | ||
|
|
||
| - [**@bigcommerce/catalyst-core@latest**](https://github.com/bigcommerce/catalyst/releases/tag/%40bigcommerce%2Fcatalyst-core%40latest) | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - [**@bigcommerce/catalyst-makeswift@latest**](https://github.com/bigcommerce/catalyst/releases/tag/%40bigcommerce%2Fcatalyst-makeswift%40latest) | ||
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
chris-nowicki marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.