diff --git a/.changeset/silent-spiders-poke.md b/.changeset/silent-spiders-poke.md deleted file mode 100644 index 6f301f0e1de..00000000000 --- a/.changeset/silent-spiders-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/polaris-migrator': minor ---- - -Add `createSassMigrator` utility to stash common logic, starting with only parsing each event once. diff --git a/.changeset/stale-dots-knock.md b/.changeset/stale-dots-knock.md deleted file mode 100644 index a484d03308c..00000000000 --- a/.changeset/stale-dots-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/polaris': patch ---- - -Fix typo in box property, remove PropsWithChildren diff --git a/.changeset/unlucky-roses-try.md b/.changeset/unlucky-roses-try.md deleted file mode 100644 index e46a269c01a..00000000000 --- a/.changeset/unlucky-roses-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/polaris-migrator': minor ---- - -Internally setup stylelint metadata for SASS migrations in preparation for switching to stylelint as our migration runner. diff --git a/polaris-cli/CHANGELOG.md b/polaris-cli/CHANGELOG.md index d1828015b1c..07f0c300864 100644 --- a/polaris-cli/CHANGELOG.md +++ b/polaris-cli/CHANGELOG.md @@ -1,5 +1,12 @@ # @shopify/plugin-polaris +## 0.0.15 + +### Patch Changes + +- Updated dependencies [[`85c0c3290`](https://github.com/Shopify/polaris/commit/85c0c329003c0d234f339164c0d2940aff4f6b26), [`141746b5b`](https://github.com/Shopify/polaris/commit/141746b5b4dc2f99b0c729883e98f4210f5a16c0)]: + - @shopify/polaris-migrator@0.7.0 + ## 0.0.14 ## 0.0.13 diff --git a/polaris-cli/package.json b/polaris-cli/package.json index 1333fb18de8..a67a602e36f 100644 --- a/polaris-cli/package.json +++ b/polaris-cli/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/plugin-polaris", - "version": "0.0.14", + "version": "0.0.15", "description": "Commands for building Shopify Apps with Polaris", "license": "SEE LICENSE IN LICENSE.md", "author": "Shopify ", @@ -24,7 +24,7 @@ }, "dependencies": { "@oclif/core": "^1.13.10", - "@shopify/polaris-migrator": "^0.6.0" + "@shopify/polaris-migrator": "^0.7.0" }, "devDependencies": { "typescript": "^4.7.4" diff --git a/polaris-for-figma/CHANGELOG.md b/polaris-for-figma/CHANGELOG.md index 7d097c21bc9..fc1c7a0499f 100644 --- a/polaris-for-figma/CHANGELOG.md +++ b/polaris-for-figma/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.0.28 + +### Patch Changes + +- Updated dependencies [[`fc78fcc48`](https://github.com/Shopify/polaris/commit/fc78fcc48d075db1240a17910ada9f61599e51fb)]: + - @shopify/polaris@10.10.1 + ## 0.0.27 ### Patch Changes diff --git a/polaris-for-figma/package.json b/polaris-for-figma/package.json index 7a4627720e1..d2f85e817bf 100644 --- a/polaris-for-figma/package.json +++ b/polaris-for-figma/package.json @@ -1,6 +1,6 @@ { "name": "polaris-for-figma", - "version": "0.0.27", + "version": "0.0.28", "private": true, "scripts": { "build": "webpack --mode=production", @@ -12,7 +12,7 @@ }, "dependencies": { "@ant-design/icons": "^4.7.0", - "@shopify/polaris": "^10.10.0", + "@shopify/polaris": "^10.10.1", "antd": "^4.20.4", "lodash": "^4.17.15", "react": "^18.2.0", diff --git a/polaris-migrator/CHANGELOG.md b/polaris-migrator/CHANGELOG.md index e24c36b7525..be6fb307b13 100644 --- a/polaris-migrator/CHANGELOG.md +++ b/polaris-migrator/CHANGELOG.md @@ -1,5 +1,13 @@ # @shopify/polaris-migrator +## 0.7.0 + +### Minor Changes + +- [#7499](https://github.com/Shopify/polaris/pull/7499) [`85c0c3290`](https://github.com/Shopify/polaris/commit/85c0c329003c0d234f339164c0d2940aff4f6b26) Thanks [@jesstelford](https://github.com/jesstelford)! - Add `createSassMigrator` utility to stash common logic, starting with only parsing each event once. + +* [#7541](https://github.com/Shopify/polaris/pull/7541) [`141746b5b`](https://github.com/Shopify/polaris/commit/141746b5b4dc2f99b0c729883e98f4210f5a16c0) Thanks [@jesstelford](https://github.com/jesstelford)! - Internally setup stylelint metadata for SASS migrations in preparation for switching to stylelint as our migration runner. + ## 0.6.0 ### Minor Changes diff --git a/polaris-migrator/package.json b/polaris-migrator/package.json index 6185c30d76d..ba45387ee61 100644 --- a/polaris-migrator/package.json +++ b/polaris-migrator/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/polaris-migrator", - "version": "0.6.0", + "version": "0.7.0", "description": "Codemod transformations to help upgrade your Polaris codebase", "license": "SEE LICENSE IN LICENSE.md", "author": "Shopify ", @@ -51,7 +51,7 @@ "@rollup/plugin-commonjs": "^22.0.2", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.3.0", - "@shopify/polaris": "^10.10.0", + "@shopify/polaris": "^10.10.1", "plop": "^3.1.1", "plop-dir": "^0.0.5", "type-fest": "^2.19.0" diff --git a/polaris-react/CHANGELOG.md b/polaris-react/CHANGELOG.md index d3fa979e6ee..855510b850b 100644 --- a/polaris-react/CHANGELOG.md +++ b/polaris-react/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 10.10.1 + +### Patch Changes + +- [#7561](https://github.com/Shopify/polaris/pull/7561) [`fc78fcc48`](https://github.com/Shopify/polaris/commit/fc78fcc48d075db1240a17910ada9f61599e51fb) Thanks [@kyledurand](https://github.com/kyledurand)! - Fix typo in box property, remove PropsWithChildren + ## 10.10.0 ### Minor Changes diff --git a/polaris-react/README.md b/polaris-react/README.md index bd4a4d346ce..06afdc51077 100644 --- a/polaris-react/README.md +++ b/polaris-react/README.md @@ -33,7 +33,7 @@ Otherwise include the CSS in your HTML. We suggest copying the styles file into ```html ``` @@ -70,7 +70,7 @@ If React doesn’t make sense for your application, you can use a CSS-only versi ```html ``` diff --git a/polaris-react/package.json b/polaris-react/package.json index c9d35c7edb5..d56d658ba23 100644 --- a/polaris-react/package.json +++ b/polaris-react/package.json @@ -1,7 +1,7 @@ { "name": "@shopify/polaris", "description": "Shopify’s admin product component library", - "version": "10.10.0", + "version": "10.10.1", "private": false, "license": "SEE LICENSE IN LICENSE.md", "author": "Shopify ", diff --git a/polaris.shopify.com/CHANGELOG.md b/polaris.shopify.com/CHANGELOG.md index b7f97c77227..47bd5dcf61f 100644 --- a/polaris.shopify.com/CHANGELOG.md +++ b/polaris.shopify.com/CHANGELOG.md @@ -1,5 +1,12 @@ # polaris.shopify.com +## 0.23.3 + +### Patch Changes + +- Updated dependencies [[`fc78fcc48`](https://github.com/Shopify/polaris/commit/fc78fcc48d075db1240a17910ada9f61599e51fb)]: + - @shopify/polaris@10.10.1 + ## 0.23.2 ### Patch Changes diff --git a/polaris.shopify.com/package.json b/polaris.shopify.com/package.json index 8fb5767d327..90a69d43028 100644 --- a/polaris.shopify.com/package.json +++ b/polaris.shopify.com/package.json @@ -1,6 +1,6 @@ { "name": "polaris.shopify.com", - "version": "0.23.2", + "version": "0.23.3", "private": true, "scripts": { "build": "yarn gen-assets && playroom build && next build", @@ -21,7 +21,7 @@ "dependencies": { "@floating-ui/react-dom-interactions": "^0.10.1", "@headlessui/react": "^1.6.5", - "@shopify/polaris": "^10.10.0", + "@shopify/polaris": "^10.10.1", "@shopify/polaris-icons": "^6.4.0", "@shopify/polaris-tokens": "^6.2.1", "codesandbox": "^2.2.3",