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 Polaris 1.1.

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 below override that default to pin Polaris 1.1, the release this reference documents.

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. Set the release you want 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.js"
>
<Outlet />
</AppProvider>
// app/shopify.server.ts
const shopify = shopifyApp({
// ...
polarisUrl: 'https://cdn.shopify.com/shopifycloud/polaris-1.1.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.js, install @shopify/polaris-types@^1.1.0. If you load polaris-1.1.js, install @shopify/polaris-types@~1.1.0, so the package stays on 1.1 like the script tag.

For reproducible installs, pin the exact version instead. Update the script tag and the package together when you move to a new release.


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.1Advances each time a new 1.x release goes stable
polaris-1.1.jsPolaris 1.1Frozen as released
polaris-1.0.jsPolaris 1.0Frozen as released
polaris.jsThe legacy unversioned entry point, currently 1.1Advances with each new stable 1.x release

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 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?