Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"add-box-private-positioning-types",
"admin-component-type-drift",
"admin-number-empty-state-types",
"admin-progress-component-definitions",
"admin-regenerate-full-component-definitions",
"admin-section-header-slots",
"bright-comets-rise",
"deprecate-localization-market",
Expand All @@ -31,6 +33,7 @@
"pos-storage-current-required",
"pos-validation-target-grammar",
"print-action-should-render-detail-targets",
"remove-pos-session-staff-member-id",
"tidy-buttons-auto"
]
}
13 changes: 13 additions & 0 deletions packages/ui-extensions-tester/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @shopify/ui-extensions-tester

## 2026.10.0-rc.11

### Minor Changes

- [#4686](https://github.com/Shopify/ui-extensions/pull/4686) [`9c1c670`](https://github.com/Shopify/ui-extensions/commit/9c1c670b052a39518083c41a4e8bca36c8182722) Thanks [@IHu04](https://github.com/IHu04)! - Remove the deprecated `session.currentSession.staffMemberId` property from POS UI extensions in API version 2026-10. Use the reactive `session.staffMember` signal to access the staff member who is currently pinned in to POS.

This is a versioned breaking change. API versions 2026-07 and earlier retain their published types. The separate receipt event `session.staffMemberId` field is unchanged.

### Patch Changes

- Updated dependencies [[`eb63a47`](https://github.com/Shopify/ui-extensions/commit/eb63a47ef412cee1068db8679059f2d507453f40), [`e54c7cc`](https://github.com/Shopify/ui-extensions/commit/e54c7cce9d67e64909103f857415e127da9bb080), [`9c1c670`](https://github.com/Shopify/ui-extensions/commit/9c1c670b052a39518083c41a4e8bca36c8182722)]:
- @shopify/ui-extensions@2026.10.0-rc.11

## 2026.10.0-rc.10

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ui-extensions-tester/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/ui-extensions-tester",
"version": "2026.10.0-rc.10",
"version": "2026.10.0-rc.11",
"main": "index.js",
"module": "index.mjs",
"esnext": "index.esnext",
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"license": "MIT",
"dependencies": {
"@shopify/ui-extensions": "2026.10.0-rc.10"
"@shopify/ui-extensions": "2026.10.0-rc.11"
},
"peerDependencies": {
"preact": "^10.0.0"
Expand Down
12 changes: 12 additions & 0 deletions packages/ui-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @shopify/ui-extensions

## 2026.10.0-rc.11

### Minor Changes

- [#4687](https://github.com/Shopify/ui-extensions/pull/4687) [`eb63a47`](https://github.com/Shopify/ui-extensions/commit/eb63a47ef412cee1068db8679059f2d507453f40) Thanks [@davejcameron](https://github.com/davejcameron)! - Added `s-progress` to the Admin component definitions, so the `Progress` component now has a generated docs entity alongside the other Admin components.

- [#4689](https://github.com/Shopify/ui-extensions/pull/4689) [`e54c7cc`](https://github.com/Shopify/ui-extensions/commit/e54c7cce9d67e64909103f857415e127da9bb080) Thanks [@davejcameron](https://github.com/davejcameron)! - Fix the Admin `Progress` component types by declaring `ProgressProps` in shared definitions. `Section` now documents an `Icon` in its `graphic` slot and a `Tooltip` among its accessories. Regenerates the Admin docs payload from Polaris 2.26.0.

- [#4686](https://github.com/Shopify/ui-extensions/pull/4686) [`9c1c670`](https://github.com/Shopify/ui-extensions/commit/9c1c670b052a39518083c41a4e8bca36c8182722) Thanks [@IHu04](https://github.com/IHu04)! - Remove the deprecated `session.currentSession.staffMemberId` property from POS UI extensions in API version 2026-10. Use the reactive `session.staffMember` signal to access the staff member who is currently pinned in to POS.

This is a versioned breaking change. API versions 2026-07 and earlier retain their published types. The separate receipt event `session.staffMemberId` field is unchanged.

## 2026.10.0-rc.10

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/ui-extensions",
"version": "2026.10.0-rc.10",
"version": "2026.10.0-rc.11",
"scripts": {
"docs:admin": "node ./docs/surfaces/admin/build-docs.mjs",
"docs:checkout": "bash ./docs/surfaces/checkout/build-docs.sh",
Expand Down
Loading