Skip to content

Commit 076b080

Browse files
shopify-github-actions-access[bot]github-actions[bot]
authored andcommitted
Version Packages (Shopify#8060)
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@10.21.0 ### Minor Changes - [Shopify#8033](Shopify#8033) [`a2eca1d4d`](Shopify@a2eca1d) Thanks [@allisonjanes-shopify](https://github.com/allisonjanes-shopify)! - Added an optional `noWrap` prop to `ButtonGroup` - [Shopify#8016](Shopify#8016) [`ca77f0bc8`](Shopify@ca77f0b) Thanks [@itwasmattgregg](https://github.com/itwasmattgregg)! - Added the ability for breadcrumbs to be passed as a singular object instead of an array to allow support for upcoming v11 changes ### Patch Changes - [Shopify#8059](Shopify#8059) [`4b470fc98`](Shopify@4b470fc) Thanks [@LauraAubin](https://github.com/LauraAubin)! - Fix vertical alignment for sortable headers with custom content on the IndexTable ## @shopify/plugin-polaris@0.0.28 ## polaris.shopify.com@0.28.5 ### Patch Changes - Updated dependencies \[[`4b470fc98`](Shopify@4b470fc), [`a2eca1d4d`](Shopify@a2eca1d), [`ca77f0bc8`](Shopify@ca77f0b)]: - @shopify/polaris@10.21.0 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2e48987 commit 076b080

File tree

11 files changed

+28
-22
lines changed

11 files changed

+28
-22
lines changed

.changeset/fresh-jobs-glow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/happy-dragons-repair.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/twelve-grapes-reply.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

polaris-cli/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @shopify/plugin-polaris
22

3+
## 0.0.28
4+
35
## 0.0.27
46

57
### Patch Changes

polaris-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/plugin-polaris",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"description": "Commands for building Shopify Apps with Polaris",
55
"license": "SEE LICENSE IN LICENSE.md",
66
"author": "Shopify <dev@shopify.com>",

polaris-migrator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@rollup/plugin-commonjs": "^22.0.2",
5353
"@rollup/plugin-json": "^4.1.0",
5454
"@rollup/plugin-node-resolve": "^13.3.0",
55-
"@shopify/polaris": "^10.20.0",
55+
"@shopify/polaris": "^10.21.0",
5656
"plop": "^3.1.1",
5757
"plop-dir": "^0.0.5",
5858
"prettier": "^2.7.1",

polaris-react/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 10.21.0
4+
5+
### Minor Changes
6+
7+
- [#8033](https://github.com/Shopify/polaris/pull/8033) [`a2eca1d4d`](https://github.com/Shopify/polaris/commit/a2eca1d4dff40de8ee9492c19fd78ed0269f35f9) Thanks [@allisonjanes-shopify](https://github.com/allisonjanes-shopify)! - Added an optional `noWrap` prop to `ButtonGroup`
8+
9+
* [#8016](https://github.com/Shopify/polaris/pull/8016) [`ca77f0bc8`](https://github.com/Shopify/polaris/commit/ca77f0bc8f55b63b269486548c6142eaef7b2b61) Thanks [@itwasmattgregg](https://github.com/itwasmattgregg)! - Added the ability for breadcrumbs to be passed as a singular object instead of an array to allow support for upcoming v11 changes
10+
11+
### Patch Changes
12+
13+
- [#8059](https://github.com/Shopify/polaris/pull/8059) [`4b470fc98`](https://github.com/Shopify/polaris/commit/4b470fc98cb07b987256f5a83784a4039ca9d9cf) Thanks [@LauraAubin](https://github.com/LauraAubin)! - Fix vertical alignment for sortable headers with custom content on the IndexTable
14+
315
## 10.20.0
416

517
### Minor Changes

polaris-react/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Otherwise include the CSS in your HTML. We suggest copying the styles file into
3333
```html
3434
<link
3535
rel="stylesheet"
36-
href="https://unpkg.com/@shopify/polaris@10.20.0/build/esm/styles.css"
36+
href="https://unpkg.com/@shopify/polaris@10.21.0/build/esm/styles.css"
3737
/>
3838
```
3939

@@ -70,7 +70,7 @@ If React doesn’t make sense for your application, you can use a CSS-only versi
7070
```html
7171
<link
7272
rel="stylesheet"
73-
href="https://unpkg.com/@shopify/polaris@10.20.0/build/esm/styles.css"
73+
href="https://unpkg.com/@shopify/polaris@10.21.0/build/esm/styles.css"
7474
/>
7575
```
7676

polaris-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@shopify/polaris",
33
"description": "Shopify’s admin product component library",
4-
"version": "10.20.0",
4+
"version": "10.21.0",
55
"private": false,
66
"license": "SEE LICENSE IN LICENSE.md",
77
"author": "Shopify <dev@shopify.com>",

polaris.shopify.com/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# polaris.shopify.com
22

3+
## 0.28.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`4b470fc98`](https://github.com/Shopify/polaris/commit/4b470fc98cb07b987256f5a83784a4039ca9d9cf), [`a2eca1d4d`](https://github.com/Shopify/polaris/commit/a2eca1d4dff40de8ee9492c19fd78ed0269f35f9), [`ca77f0bc8`](https://github.com/Shopify/polaris/commit/ca77f0bc8f55b63b269486548c6142eaef7b2b61)]:
8+
- @shopify/polaris@10.21.0
9+
310
## 0.28.4
411

512
### Patch Changes

0 commit comments

Comments
 (0)