Skip to content
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

@shopify/polaris v11.0.0 major release #7597

Merged
merged 139 commits into from May 26, 2023
Merged

@shopify/polaris v11.0.0 major release #7597

merged 139 commits into from May 26, 2023

Conversation

lgriffee
Copy link
Member

@lgriffee lgriffee commented Nov 1, 2022

@shopify/polaris v11.0.0

Dependencies

NodeJS

TypeScript

Components

@shopify/polaris-tokens v7.0.0

Tokens

@shopify/stylelint-polaris v7.0.0

Post @shopify/polaris v11 shipping

Low priority or not ready breaking changes

  • Remove deprecated layout components
  • Release Layout primitive components

tmlayton and others added 6 commits October 5, 2022 14:14
### WHY are these changes introduced?

Removes a deprecated argument on the Collapsible component with the
major version bump.

### WHAT is this pull request doing?

Removes the prop as a breaking change.

### How to 🎩

🖥 [Local development
instructions](https://github.com/Shopify/polaris/blob/main/README.md#local-development)
🗒 [General tophatting
guidelines](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md)
📄 [Changelog
guidelines](https://github.com/Shopify/polaris/blob/main/.github/CONTRIBUTING.md#changelog)

N/A tophatting instructions as Polaris does not use this prop
internally.

### 🎩 checklist

- [ ] Tested on
[mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing)
- [ ] Tested on [multiple
browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers)
- [ ] Tested for
[accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md)
- [ ] Updated the component's `README.md` with documentation changes
- [ ] [Tophatted
documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md)
changes in the style guide
aveline and others added 14 commits December 21, 2022 09:42
…7990)

### WHY are these changes introduced?

Breadcrumbs has only been using a single breadcrumb for a while now.
Instead of allowing consumers to pass an array without knowing why only
a single link is being used, we should remove the ability to pass an
array and make the component easier to understand implicitly.

### WHAT is this pull request doing?

UI will not change. The Breadcrumbs component was already only using the
last breadcrumb link in the array.

This PR changes the props for breadcrumbs and also the implementation on
the Page component.

### Migration path

Since this PR removes the `breadcrumbs[]` prop in favor of `breadcrumb`
all uses of Page, and Breadcrumbs will need to be migrated.

It will look something like this:

```ts
//before
const breadcrumbs = [
      {
        content: 'Products',
        url: 'http://test.com',
      },
];
<Page {...mockProps} breadcrumbs={breadcrumbs} />

//after
const breadcrumb = {
  content: 'Products',
  url: 'http://test.com',
};
<Page {...mockProps} breadcrumb={breadcrumb} />
```

### How to 🎩

Check the Breadcrumbs and Page components in storybook

### 🎩 checklist

- [ ] Tested on
[mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing)
- [ ] Tested on [multiple
browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers)
- [ ] Tested for
[accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md)
- [ ] Updated the component's `README.md` with documentation changes
- [ ] [Tophatted
documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md)
changes in the style guide
### WHY are these changes introduced?

Now that the admin has been migrated to use Text, we can mark `Text` as
stable in v11.

### WHAT is this pull request doing?

Removes beta status and message banner from `Text` component page.
<details>
      <summary>Update Text component page</summary>
<img
src="https://user-images.githubusercontent.com/26749317/215123915-0ed9fef9-d4f7-413a-a31e-73d4e80fec28.png"
alt="Update Text component page">
    </details>

<!-- ℹ️ Delete the following for small / trivial changes -->

### How to 🎩

🖥 [Local development
instructions](https://github.com/Shopify/polaris/blob/main/README.md#local-development)
🗒 [General tophatting
guidelines](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md)
📄 [Changelog
guidelines](https://github.com/Shopify/polaris/blob/main/.github/CONTRIBUTING.md#changelog)

### 🎩 checklist

- [ ] Tested on
[mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing)
- [ ] Tested on [multiple
browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers)
- [ ] Tested for
[accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md)
- [ ] Updated the component's `README.md` with documentation changes
- [x] [Tophatted
documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md)
changes in the style guide
### WHY are these changes introduced?

Resolves #6511.

Now that `Shopify/web` has been migrated to use the `Text` component, we
can safely remove the 6 deprecated typography components.

Note: The 3 chromatic changes are related to other changes in the v11
branch and not this PR.

### WHAT is this pull request doing?

Removes `DisplayText`, `Heading`, `Subheading`, `Caption`, `TextStyle`,
and `VisuallyHidden`.

<!-- ℹ️ Delete the following for small / trivial changes -->

### How to 🎩

🖥 [Local development
instructions](https://github.com/Shopify/polaris/blob/main/README.md#local-development)
🗒 [General tophatting
guidelines](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md)
📄 [Changelog
guidelines](https://github.com/Shopify/polaris/blob/main/.github/CONTRIBUTING.md#changelog)

<!--
  Give as much information as needed to experiment with the component
  in the playground.
-->

<details>
<summary>Copy-paste this code in
<code>playground/Playground.tsx</code>:</summary>

```jsx
import React from 'react';
import {Page} from '../src';

export function Playground() {
  return (
    <Page title="Playground">
      {/* Add the code you want to test in here */}
    </Page>
  );
}
```

</details>

### 🎩 checklist

- [ ] Tested on
[mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing)
- [ ] Tested on [multiple
browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers)
- [ ] Tested for
[accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md)
- [ ] Updated the component's `README.md` with documentation changes
- [x] [Tophatted
documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md)
changes in the style guide
### WHY are these changes introduced?

Rollup and Babel are blocking our migration to minimum NodeJS version
16.

This PR updated all Rollup and Babel dependencies. These NPM package
upgrades are not compatible with NodeJS 14.17 (main branch version).
This change unblocks a larger change to our NodeJS versions.

### WHAT is this pull request doing?

- [x] Moves duplicate dependencies to root
- [x] Upgrades all rollup and babel dependencies
- [x] Fixes any required breaking changes or warnings
- [x] Compared diff of previous packages and new ones and it doesn't
have a regression

### How to 🎩

1. Run a build on `main` save the built files on desktop
1. Run a build on this `bump-build-deps` save the built files on desktop
1. Run a diff over the built files
1. Make sure no regressions
1. CI, tests should pass and website should render all pages.

**@alex-page's output from Diff:**
[diff.zip](https://github.com/Shopify/polaris/files/10531068/diff.zip)
```
diff -bur polaris-tokens/dist-main polaris-tokens/dist-v11 > icons.diff
diff -bur polaris-tokens/dist-main polaris-tokens/dist-v11 > tokens.diff
diff -bur polaris-migrator/dist-main polaris-migrator/dist-v11 > migrator.diff
diff -bur polaris-react/build-main polaris-react/build-v11 > react.diff
```

### 🎩 checklist

- [x] Tested on
[mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing)
- [x] Tested on [multiple
browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers)
- [x] Tested for
[accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md)
- [x] Updated the component's `README.md` with documentation changes
- [x] [Tophatted
documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md)
changes in the style guide
### WHY are these changes introduced?

NodeJS 14 is EOL and we are removing support in v11.

We currently set `engines` on the root `package.json`. The problem with
this is that consumers of the library do not get this information and
they can use the libraries without any warning of what version of NodeJS
it supports.

### WHAT is this pull request doing?

- [x] Increasing the supported versions of NodeJS
- [x] Add the engines field for NodeJS to package.json files

I would like to get NodeJS to version 16.19 before we launch version 11.
However there is an issue with babel/rollup/browserslist not finding the
latest version of NodeJS:
```
(plugin babel) BrowserslistError: Unknown version 16.19 of Node.js
``` 

### How to 🎩

- CI completes successfully
@Shopify Shopify deleted a comment from github-actions bot Jan 30, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Jan 30, 2023

size-limit report 📦

Path Size
polaris-react-cjs 215.79 KB (-2.5% 🔽)
polaris-react-esm 138.72 KB (-1.46% 🔽)
polaris-react-esnext 193.74 KB (-1.87% 🔽)
polaris-react-css 41.95 KB (-2.48% 🔽)

@alex-page alex-page changed the title v11 @shopify/polaris v11.0.0 major release Jan 30, 2023
@laurkim laurkim marked this pull request as ready for review May 24, 2023 12:25
@chloerice
Copy link
Member

/snapit

@github-actions
Copy link
Contributor

🫰✨ Thanks @chloerice! Your snapshots have been published to npm.

Test the snapshots by updating your package.json with the newly published versions:

yarn add @shopify/polaris-cli@0.0.0-snapshot-release-20230525194344
yarn add @shopify/polaris-codemods@0.0.0-snapshot-release-20230525194344
yarn add @shopify/polaris-icons@0.0.0-snapshot-release-20230525194344
yarn add @shopify/polaris-migrator@0.0.0-snapshot-release-20230525194344
yarn add @shopify/polaris@0.0.0-snapshot-release-20230525194344
yarn add @shopify/polaris-tokens@0.0.0-snapshot-release-20230525194344
yarn add @shopify/stylelint-polaris@0.0.0-snapshot-release-20230525194344

@sam-b-rose sam-b-rose merged commit 9e1350e into main May 26, 2023
12 of 13 checks passed
@sam-b-rose sam-b-rose deleted the v11-major branch May 26, 2023 19:33
sam-b-rose pushed a commit that referenced this pull request May 26, 2023
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @shopify/polaris-icons@7.0.0

### Major Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

## @shopify/polaris@11.0.0

### Major Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Changed `breadcrumbs`
from an array to a single `backAction` since only one is supported.
    Removed deprecated `breadcrumbs` prop from `Page` and `Breadcrumbs`.


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
multiple versions of TypeScript with `downlevel-dts`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - No longer transpile
optional chaining, nullish coalescing or numeric separators, as our
target browser environments all have native support for these syntaxes.
This removes support for apps using webpack4, which unable to parse
these syntaxes.


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
React version 16 and 17 in favor of version 18 as the minimum supported
version


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Tabs` with
`AlphaTabs` and replaced `Filters` with `AlphaFilters` component code


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Stack` with
`AlphaStack`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed
`Polaris.VERSION` from the global window object


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`breadcrumbs` prop from `SkeletonPage`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`DisplayText`, `Heading`, `Subheading`, `Caption`, `TextStyle`, and
`VisuallyHidden` components


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Card` with
`AlphaCard`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed `KonamiCode`
component


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`preventMeasuringOnChildUpdate` prop on `Collapsible`

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](9e1350e)]:
    -   @shopify/polaris-icons@7.0.0
    -   @shopify/polaris-tokens@7.0.0

## @shopify/polaris-tokens@7.0.0

### Major Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

## @shopify/stylelint-polaris@13.0.0

### Major Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](9e1350e)]:
    -   @shopify/polaris-tokens@7.0.0

## @shopify/polaris-cli@0.2.0

### Minor Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
multiple versions of TypeScript with `downlevel-dts`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](9e1350e)]:
    -   @shopify/polaris-migrator@0.19.0

## @shopify/polaris-migrator@0.19.0

### Minor Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](9e1350e)]:
    -   @shopify/polaris-tokens@7.0.0
    -   @shopify/stylelint-polaris@13.0.0

## @shopify/polaris-codemods@0.1.3

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](9e1350e)]:
    -   @shopify/polaris-tokens@7.0.0
    -   @shopify/stylelint-polaris@13.0.0

## polaris-for-vscode@0.7.0

### Minor Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

## polaris.shopify.com@0.54.0

### Minor Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
multiple versions of TypeScript with `downlevel-dts`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Tabs` with
`AlphaTabs` and replaced `Filters` with `AlphaFilters` component code


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Stack` with
`AlphaStack`


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`DisplayText`, `Heading`, `Subheading`, `Caption`, `TextStyle`, and
`VisuallyHidden` components


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Added "What's new"
color page and updated design/colors for the new color tokens


- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Card` with
`AlphaCard`

### Patch Changes

- [#7597](#7597)
[`9e1350e22`](9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Updated `Text`
component status from beta to stable

- Updated dependencies
\[[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e),
[`9e1350e22`](9e1350e)]:
    -   @shopify/polaris@11.0.0
    -   @shopify/polaris-icons@7.0.0
    -   @shopify/polaris-tokens@7.0.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
juzser pushed a commit to juzser/polaris that referenced this pull request Jul 27, 2023
## @shopify/polaris v11.0.0

### Dependencies

- [x] Shopify#8200

### NodeJS

- [x] Shopify#8201

### TypeScript

- [x] Shopify#8203

### Components

- [x] Shopify#7349
- [x] Shopify#7397
- [x] Shopify#7962
- [x] Shopify#8187
- [x] Shopify#8184
- [x] Shopify#8206
- [x] Shopify#7990
- [x] Shopify#8468
- [x] Shopify#8577
- [x] Shopify#8631
- [x] Shopify#8962

## @shopify/polaris-tokens v7.0.0

### Tokens
- [x] Shopify#6920
- [x] Shopify#8245
- [x] Shopify#4826
- [x] Shopify#8405

## @shopify/stylelint-polaris v7.0.0
- [x] Shopify#7622
- [x] Shopify#8419

# Post @shopify/polaris v11 shipping
- [ ] Shopify#8420

## Low priority or not ready breaking changes
- [x] Remove deprecated layout components
- [x] Release Layout primitive components

---------

Co-authored-by: Tim Layton <tmlayton@users.noreply.github.com>
Co-authored-by: Ryan Musgrave <ryan.musgrave@shopify.com>
Co-authored-by: Ryan Musgrave <ryanm128@gmail.com>
Co-authored-by: aveline <aveline@users.noreply.github.com>
Co-authored-by: Kyle Durand <kyledurand@users.noreply.github.com>
Co-authored-by: Matt Gregg <matt.gregg@shopify.com>
Co-authored-by: Alex Page <hi@alexpage.dev>
Co-authored-by: Lo Kim <lo.kim@shopify.com>
Co-authored-by: Ben Scott <227292+BPScott@users.noreply.github.com>
Co-authored-by: Aaron Casanova <32409546+aaronccasanova@users.noreply.github.com>
Co-authored-by: Sam Rose <11774595+samrose3@users.noreply.github.com>
Co-authored-by: Sam Rose <sam.rose@shopify.com>
Co-authored-by: Marc Thomas <marc.thomas@shopify.com>
Co-authored-by: Alex Page <19199063+alex-page@users.noreply.github.com>
Co-authored-by: Chloe Rice <18447883+chloerice@users.noreply.github.com>
Co-authored-by: Chloe Rice <chloerice@users.noreply.github.com>
Co-authored-by: Joe Thomas <joe.thomas@shopify.com>
Co-authored-by: Yuraima Estevez <yuraima.estevez@shopify.com>
Co-authored-by: shopify-github-actions-access[bot] <109624739+shopify-github-actions-access[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
juzser pushed a commit to juzser/polaris that referenced this pull request Jul 27, 2023
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @shopify/polaris-icons@7.0.0

### Major Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

## @shopify/polaris@11.0.0

### Major Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Changed `breadcrumbs`
from an array to a single `backAction` since only one is supported.
    Removed deprecated `breadcrumbs` prop from `Page` and `Breadcrumbs`.


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
multiple versions of TypeScript with `downlevel-dts`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - No longer transpile
optional chaining, nullish coalescing or numeric separators, as our
target browser environments all have native support for these syntaxes.
This removes support for apps using webpack4, which unable to parse
these syntaxes.


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
React version 16 and 17 in favor of version 18 as the minimum supported
version


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Tabs` with
`AlphaTabs` and replaced `Filters` with `AlphaFilters` component code


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Stack` with
`AlphaStack`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed
`Polaris.VERSION` from the global window object


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`breadcrumbs` prop from `SkeletonPage`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`DisplayText`, `Heading`, `Subheading`, `Caption`, `TextStyle`, and
`VisuallyHidden` components


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Card` with
`AlphaCard`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed `KonamiCode`
component


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`preventMeasuringOnChildUpdate` prop on `Collapsible`

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](Shopify@9e1350e)]:
    -   @shopify/polaris-icons@7.0.0
    -   @shopify/polaris-tokens@7.0.0

## @shopify/polaris-tokens@7.0.0

### Major Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

## @shopify/stylelint-polaris@13.0.0

### Major Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](Shopify@9e1350e)]:
    -   @shopify/polaris-tokens@7.0.0

## @shopify/polaris-cli@0.2.0

### Minor Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
multiple versions of TypeScript with `downlevel-dts`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](Shopify@9e1350e)]:
    -   @shopify/polaris-migrator@0.19.0

## @shopify/polaris-migrator@0.19.0

### Minor Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](Shopify@9e1350e)]:
    -   @shopify/polaris-tokens@7.0.0
    -   @shopify/stylelint-polaris@13.0.0

## @shopify/polaris-codemods@0.1.3

### Patch Changes

- Updated dependencies
\[[`9e1350e22`](Shopify@9e1350e)]:
    -   @shopify/polaris-tokens@7.0.0
    -   @shopify/stylelint-polaris@13.0.0

## polaris-for-vscode@0.7.0

### Minor Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version

## polaris.shopify.com@0.54.0

### Minor Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
multiple versions of TypeScript with `downlevel-dts`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Tabs` with
`AlphaTabs` and replaced `Filters` with `AlphaFilters` component code


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Stack` with
`AlphaStack`


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed support for
NodeJS version 14 and set version 16 as minimum supported version


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Removed deprecated
`DisplayText`, `Heading`, `Subheading`, `Caption`, `TextStyle`, and
`VisuallyHidden` components


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Added "What's new"
color page and updated design/colors for the new color tokens


- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Replaced `Card` with
`AlphaCard`

### Patch Changes

- [Shopify#7597](Shopify#7597)
[`9e1350e22`](Shopify@9e1350e)
Thanks [@lgriffee](https://github.com/lgriffee)! - Updated `Text`
component status from beta to stable

- Updated dependencies
\[[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e),
[`9e1350e22`](Shopify@9e1350e)]:
    -   @shopify/polaris@11.0.0
    -   @shopify/polaris-icons@7.0.0
    -   @shopify/polaris-tokens@7.0.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AnnaCheba pushed a commit to AnnaCheba/polaris that referenced this pull request Apr 22, 2024
## @shopify/polaris v11.0.0

### Dependencies

- [x] Shopify#8200

### NodeJS

- [x] Shopify#8201

### TypeScript

- [x] Shopify#8203

### Components

- [x] Shopify#7349
- [x] Shopify#7397
- [x] Shopify#7962
- [x] Shopify#8187
- [x] Shopify#8184
- [x] Shopify#8206
- [x] Shopify#7990
- [x] Shopify#8468
- [x] Shopify#8577
- [x] Shopify#8631
- [x] Shopify#8962

## @shopify/polaris-tokens v7.0.0

### Tokens
- [x] Shopify#6920
- [x] Shopify#8245
- [x] Shopify#4826
- [x] Shopify#8405

## @shopify/stylelint-polaris v7.0.0
- [x] Shopify#7622
- [x] Shopify#8419

# Post @shopify/polaris v11 shipping
- [ ] Shopify#8420

## Low priority or not ready breaking changes
- [x] Remove deprecated layout components
- [x] Release Layout primitive components

---------

Co-authored-by: Tim Layton <tmlayton@users.noreply.github.com>
Co-authored-by: Ryan Musgrave <ryan.musgrave@shopify.com>
Co-authored-by: Ryan Musgrave <ryanm128@gmail.com>
Co-authored-by: aveline <aveline@users.noreply.github.com>
Co-authored-by: Kyle Durand <kyledurand@users.noreply.github.com>
Co-authored-by: Matt Gregg <matt.gregg@shopify.com>
Co-authored-by: Alex Page <hi@alexpage.dev>
Co-authored-by: Lo Kim <lo.kim@shopify.com>
Co-authored-by: Ben Scott <227292+BPScott@users.noreply.github.com>
Co-authored-by: Aaron Casanova <32409546+aaronccasanova@users.noreply.github.com>
Co-authored-by: Sam Rose <11774595+samrose3@users.noreply.github.com>
Co-authored-by: Sam Rose <sam.rose@shopify.com>
Co-authored-by: Marc Thomas <marc.thomas@shopify.com>
Co-authored-by: Alex Page <19199063+alex-page@users.noreply.github.com>
Co-authored-by: Chloe Rice <18447883+chloerice@users.noreply.github.com>
Co-authored-by: Chloe Rice <chloerice@users.noreply.github.com>
Co-authored-by: Joe Thomas <joe.thomas@shopify.com>
Co-authored-by: Yuraima Estevez <yuraima.estevez@shopify.com>
Co-authored-by: shopify-github-actions-access[bot] <109624739+shopify-github-actions-access[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-needed Added by a bot. Contributor needs to sign the CLA Agreement. Roadmap 🤖Skip Comment Check Skip the migrator comment CI check 🤖Skip Major Check
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet