---
title: Polaris CDN 1.1 is now stable - Shopify developer changelog
description: >-
  Shopify’s developer changelog documents all changes to Shopify’s platform.
  Find the latest news and learn about new platform opportunities.
source_url:
  html: 'https://shopify.dev/changelog/polaris-cdn-1-1-is-now-stable'
  md: 'https://shopify.dev/changelog/polaris-cdn-1-1-is-now-stable.md'
metadata:
  effectiveApiVersion: ''
  affectedApi: []
  primaryTag:
    displayName: Polaris
    handle: polaris
  secondaryTag:
    displayName: New
    handle: new
  indicatesActionRequired: false
  createdAt: '2026-09-21T13:23:49-04:00'
  postedAt: '2026-09-22T13:30:00-04:00'
  updatedAt: '2026-09-22T13:21:42-04:00'
  effectiveAt: '2026-09-22T12:00:00-04:00'
---

September 22, 2026

# Polaris CDN 1.1 is now stable

DateSeptember 22, 2026

FlagsNew

SurfacesPolaris

Polaris Web Components 1.1 is now available on the stable Polaris CDN channels. This is the first minor release under the CDN's new [semantic versioning model](https://shopify.dev/changelog/the-polaris-cdn-is-adopting-semantic-versioning).

The following URLs now serve Polaris 1.1

```
<script src="https://cdn.shopify.com/shopifycloud/polaris.js"></script>
<script src="https://cdn.shopify.com/shopifycloud/polaris-1.js"></script>
```

Apps using `polaris.js` or `polaris-1.js` receive the update automatically. No action is required.

If you need to remain on this version, you can pin your app to Polaris 1.1:

```
<script src="https://cdn.shopify.com/shopifycloud/polaris-1.1.js"></script>
```

## What's new in Polaris 1.1

### New components

* [`EmptyState`](https://shopify.dev/docs/api/app-home/v1.1/web-components/feedback-and-status-indicators/empty-state). For empty lists, tables, and pages. Inside a `TableBody` it renders as a full-width message beneath the table headers.
* [`Number`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/number). Inline numeric text with tabular figures, so columns of numbers line up.
* [`Progress`](https://shopify.dev/docs/api/app-home/v1.1/web-components/feedback-and-status-indicators/progress). Show how far a measurable task or goal has advanced.

### New properties

* **`fontSize` on [`Heading`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/heading), [`Paragraph`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/paragraph), and [`Text`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/text)**: Sets the text size directly.
* **`visibleMonths` on [`DatePicker`](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/date-picker)**: Show one month, two months, or let the picker decide. Accepts `auto`, `1`, or `2`.
* **`supplementalStart` on [`Page`](https://shopify.dev/docs/api/app-home/v1.1/web-components/layout-and-structure/page)**: Content placed before the main page content.

### Bug fixes

* **Overlays.** The `show`, `hide`, `aftershow`, `afterhide`, and `aftertoggle` events no longer bubble, matching `toggle`. Listen on the overlay itself, or use the matching `on*` properties. Also fixed overlays closing when a drag ends outside them.
* [**`Page`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/layout-and-structure/page). Fixed header alignment and spacing, long heading truncation, print layout, and horizontal overflow on narrow screens.
* [**`Modal`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/overlays/modal). Fixed unintended dismissal when a click or drag crosses the modal edge, focus return, heading overflow, and behavior after a modal is moved in the page. Buttons now take their `variant` from the slot they sit in, and any `variant` you set yourself still wins.
* [**`Popover`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/overlays/popover) and [`Menu`](https://shopify.dev/docs/api/app-home/v1.1/web-components/actions/menu). Fixed overflow scrolling, positioning, resizing after open, delayed hiding in Safari, and Escape closing an enclosing modal.
* [**`Tooltip`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/tooltip). Fixed positioning, off-center first render, inherited text color, and an error in browsers with partial Popover API support.
* [**`DatePicker`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/date-picker). Fixed weekday headings and screen reader announcements across locales. Setting the same `value` back onto the picker, which controlled React components do after a selection, no longer fires a second `input` and `change` event, so `onChange` runs once instead of twice. The picker expands to fill the available width by default.
* [**`Select`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/select). Fixed an empty value showing before the options parse.
* [**`NumberField`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/number-field). Fixed the default `max`. Now accepts scientific notation.
* [**`TextArea`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/text-area). Fixed label alignment and keyboard shortcuts.
* [**`DateField`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/date-field). Fixed calendar dismissal in Safari. Now sizes like every other field.
* [**`ColorPicker`**](https://shopify.dev/docs/api/app-home/v1.1/web-components/forms/color-picker). Fixed single-click selection.
* **All fields.** Fields with `autocomplete="off"` now also tell password managers to skip them.

### Deprecated

* **`fontVariantNumeric` on [`Text`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/text) and [`Paragraph`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/paragraph)** still works, however we recommend using the new [`Number`](https://shopify.dev/docs/api/app-home/v1.1/web-components/typography-and-content/number) component instead.

## Related docs

* [App Home documentation](https://shopify.dev/docs/api/app-home)
* [Polaris CDN is adopting semantic versioning](https://shopify.dev/changelog/the-polaris-cdn-is-adopting-semantic-versioning)
