Skip to main content

Versioning for web components

The Polaris web component library is versioned. Choose the release your app loads and control when your app moves to a new version. This reference documents the 1.1 release candidate.

For production, we recommend the stable channel, polaris-1.js. It always serves the newest stable release in Polaris 1, so bug fixes, accessibility improvements, and new components reach your app without a script-tag change.


Anchor to Adding Polaris to your appAdding Polaris to your app

You can pin any app to a particular version of the Polaris web component library, but the method you use depends on how you built it.

When you scaffold your app using Shopify CLI, Polaris is added to your app automatically, set up with polaris-1.js to follow the newest stable release of Polaris version 1. The snippets on this page load polaris-1.1-rc.js instead, because this reference documents the 1.1 release candidate.

Apps scaffolded by Shopify CLI don't have a script tag to directly edit. Instead, the AppProvider component from @shopify/shopify-app-react-router renders the App Bridge and Polaris script tags for you, and your app's document responses carry a Link header that preloads the Polaris script. To build a React Router app against the release candidate this reference documents, set it in both places, and keep them the same: if they disagree, the browser downloads a file your app never runs.

// app/routes/app.tsx
<AppProvider
apiKey={apiKey}
polarisUrl="https://cdn.shopify.com/shopifycloud/polaris-1.1-rc.js"
>
<Outlet />
</AppProvider>
// app/shopify.server.ts
const shopify = shopifyApp({
// ...
polarisUrl: 'https://cdn.shopify.com/shopifycloud/polaris-1.1-rc.js',
});

Both options are optional, and both default to the unversioned polaris.js entry point, so an app that sets neither behaves exactly as it does today. They require @shopify/shopify-app-react-router 2.1.0 or later.


For TypeScript users, Shopify publishes the @shopify/polaris-types package. Match the package version to the release your app loads, so that your types describe the components your app actually renders.

If you load polaris-1.1-rc.js, install @shopify/polaris-types@^1.1.0-rc.0. A plain ^1.1 range resolves to nothing while 1.1 is still a release candidate, because npm ranges exclude prereleases. That range tracks the release candidate as it accumulates changes, but it also accepts 1.1 and later 1.x stable releases once they publish, while polaris-1.1-rc.js keeps serving the release candidate. Pin the exact version to keep your types on the release candidate or to get reproducible installs, and update the script tag and the package together when you move to a stable release. If you follow polaris-1.js, keep the package on the newest 1.x build.


The following table shows the different options for configuring your script tag and the version of the library that is served. For production, we recommend the stable channel, polaris-1.js.

Script tagServesNotes
polaris-1.jsThe newest stable release in Polaris 1, currently 1.0Advances each time a new 1.x release goes stable
polaris-1.1-rc.jsThe 1.1 release candidateAccumulates compatible changes and bug fixes until 1.1 goes stable
polaris-1.0.jsPolaris 1.0, released in 2025Frozen as released
polaris.jsThe legacy unversioned entry point, currently 1.0Advances to 1.1 when 1.1 goes stable, then tracks 1.x

Anchor to Stable releases and release candidatesStable releases and release candidates

Each stable release is also published at its own URL, like polaris-1.0.js and, once 1.1 is promoted, polaris-1.1.js. Published stable versions are immutable except for critical security fixes, ensuring that your app continues using the version of the library you tested against. If you need to control exactly when your app moves, name a specific version instead of the channel.

Promotion doesn't update the release candidate URL in place. The stable release publishes at its own URL instead, so moving to it is a change you make in your app's code: update the script tag to polaris-1.1.js for that release, or to polaris-1.js to follow the channel.


Was this page helpful?