Upgrade JSS 22.6 Next.js apps to version 22.7
This guide covers most of the changes you must make to your existing Next.js JSS 22.6 applications to take advantage of the improvements in version 22.7. However, because this process also involves updating React to version 19 and Next.js to version 15, you'll need to refer to the relevant guides for each framework to complete the upgrade process for your apps.
An important change introduced in version 22.7 for Next.js is the removal of automatic code generation for GraphQL. The previous third-party package used for this (graphql-let) is no longer being maintained and causes potential security vulnerabilities. This upgrade guide explains how to disable graphql-let, and we strongly recommend you do so, especially if you have no need for automatic code generation.
You can still manually implement code generation logic if you want it. This documentation includes a guide to doing so using graphql-codegen as an alternative package.
Because of the nature of JavaScript and Next.js application development, this guide doesn't account for all the customization you might have in your existing application.
While upgrading, consider the JSS templates and add-ons you used when creating your Next.js application. You can find them in your package.json file. For example, a JSS 22.6 application included in the XM Cloud starter foundation uses the following templates and add-ons:
-
nextjs -
nextjs-xmcloud -
nextjs-sxa -
nextjs-multisiteÂ
Some code examples, images, and UI labels may still use XM Cloud while engineering assets are being updated.
-
If you haven't already done so, upgrade your app to JSS 22.6.
-
We recommend you read the official release notes for React 19 and Next.js 15 to understand what has changed in these new versions.
-
Familiarize yourself with the changelog. If your application is heavily customized, the changelog can provide guidance on what additional changes you need that are not covered in this topic.
This topic describes how to:
Update application dependencies in your existing app
For your upgraded application to work correctly, you will need to update dependencies.
To update your dependencies:
-
In your existing application's
package.jsonfile:-
Update every
@sitecore-jsspackage to version~22.7.0. -
Update every
@sitecore-cloudsdkpackage to version^0.5.1. -
Update the following dependencies to the specified versions:
-
-
Install the dependencies with the following command:
Create a JSS 22.7 Next.js application
To simplify the upgrade process as much as possible, create a JSS 22.7 Next.js application with the XM Cloud add-on. You can then copy some files from this app into your existing app.
To create a JSS 22.7 Next.js application with the XM Cloud add-on included:
-
In a console, run the following command:
-
If prompted to install the
[email protected]package, answer y. -
Enter the folder path for the JSS 22.7 Next.js app. For example, enter
./jss227, to create the app folder in your current working directory. -
Follow the remaining prompts, selecting the same options for data fetching (
GraphQLorREST) and prerendering (SSGorSSR) as in your existing application. -
When asked if you are building for Sitecore XM Cloud, answer y to install the XM Cloud add-on.
-
Select other add-ons used by your existing application and press Enter.
The script then installs the application dependencies.
Some code examples, images, and UI labels may still use XM Cloud while engineering assets are being updated.
Update the Next.js template files in your existing app
This explains how to synchronize files in your existing application with corresponding files from your new JSS 22.7 app.
To update the Next.js template files:
-
For every component that uses the
JSXnamespace (for example, if aJSX.Elementtype is present), add aJSXimport fromreact.-
In the
src/Bootstrap.tsxfile, the existingreactimport might look like this: -
In which case, add
JSXto create the following:
TipIf you haven't previously customized these files, you can replace them with the versions from your template app.
-
-
Because Next.js 15 removes the
geoandipproperties fromNextRequest, if your solution is hosted by Vercel you need to update yoursrc/lib/middleware/plugins/personalize.tsplugin to explicitly provide geo data to thePersonalizeMiddleware, via thePersonalizeOptionsparameter of the personalize middleware handler.If you have not customized the
src/lib/middleware/plugins/personalize.tsfile, replace it with the version in your template app. Otherwise, modify it as shown in the following example:
Update the SXA add-on
To update the SXA add-on:
-
If you have not customized the
src/assets/sass/components/_component-column-splitter.scssfile, replace it with the version in your template app. Otherwise, do the following:-
Locate the following padding rules:
-
Replace those rules with the following:
-
-
If you have not customized the
/src/assets/sass/components/promo/_promo-shadow.scssfile, replace it with the version in your template app. Otherwise, reposition the CSS statements above the@include respond-to(all-mobile)block, as shown in the following example:-
CSS statements previously:
-
CSS statements afterwards:
-
-
If you have not customized the
src/lib/next-config/plugins/sass.jsfile, replace it with the version in your template app. Otherwise, add the following extra properties to yoursassOptionsconfiguration:NoteThis change is a temporary fix to suppress
sassdeprecation warnings from Bootstrap. When new versions ofbootstrapandfont-awesomeare released and the warnings stop, these two properties can be removed.
Disable automatic GraphQL code generation
This section explains how to remove your app's default, automatic code generation logic based on the no-longer-maintained graphql-let package. We strongly recommended that you do this unless you have a specific need to continue using graphql-let. If you would prefer to manually implement code generation using graphql-codegen, follow the guide to learn how.
As with all upgrade steps, before you make any of the changes in this section, be aware of how they might affect customizations made to your own app. These instructions include removal of graphql-codegen dependencies, which you might decide to keep if you plan to implement manual code generation.
To disable automatic GraphQL code generation:
-
In your existing application's
package.jsonfile:-
Delete the following dependencies:
-
If you don't plan to use
graphql-codegento manually implement code generation, also delete the following dependencies: -
Unless you want to use the following script for fetching of GraphQL introspection data, for example as part of a manual implementation of GraphQL code generation, delete it:
-
If your
bootstrapscript referencesgraphql-let, remove that reference. The following example shows a validbootstrapscript with thegraphql-letcall removed:
NoteAfter making these changes, re-run
npm installto update your app's dependencies. -
-
Delete the following files associated with
graphql-let:-
.graphql-let.yml -
/scripts/fetch-graphql-introspection-data.ts -
/src/temp/GraphQLIntrospectionResult.json
-
-
If you have not customized the
tsconfig.jsonfile, replace it with the version in your template app. Otherwise, delete the following item fromcompilerOptions.paths:
Next steps
To finalize the upgrade process, make sure you resolve any errors and warnings you encounter. Enable debug logging for JSS specific issues to assist you if necessary.