-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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
…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
size-limit report 📦
|
…8211) Co-Authored-By: Ben Scott <227292+BPScott@users.noreply.github.com>
laurkim
approved these changes
May 24, 2023
laurkim
approved these changes
May 24, 2023
sam-b-rose
approved these changes
May 24, 2023
/snapit |
🫰✨ Thanks @chloerice! Your snapshots have been published to npm. Test the snapshots by updating your 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 |
Merged
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@shopify/polaris v11.0.0
Dependencies
NodeJS
TypeScript
Components
OptionList
role types #7962Text
component from beta to stable #8187@shopify/polaris-tokens v7.0.0
Tokens
border-radius
token values and implementation #4826@shopify/stylelint-polaris v7.0.0
stylelint-polaris
#7622stylelint-polaris
#8419Post @shopify/polaris v11 shipping
stylelint-polaris
#8420Low priority or not ready breaking changes