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
5 changes: 5 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,23 @@
"@shopify/ui-extensions-tester": "2026.10.0-rc.0"
},
"changesets": [
"deprecate-localization-market",
"document-pos-image-border-radius",
"empty-peas-hide",
"expose-admin-popover",
"fix-preact-entry-points",
"hide-tertiary-button-docs",
"lovely-chairs-cross",
"old-beds-cut",
"pos-cart-money-v2",
"pos-intercept-api",
"pos-intercept-payment-validations",
"pos-payment-validations-tender-confirm-docs",
"pos-remove-action-api-from-action-render",
"pos-resolution-targets",
"pos-storage-current-required",
"pos-validation-target-grammar",
"print-action-should-render-detail-targets",
"tidy-buttons-auto"
]
}
11 changes: 11 additions & 0 deletions packages/ui-extensions-tester/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @shopify/ui-extensions-tester

## 2026.10.0-rc.8

### Patch Changes

- [#4631](https://github.com/Shopify/ui-extensions/pull/4631) [`67fd45b`](https://github.com/Shopify/ui-extensions/commit/67fd45b43b9d33d37498af336ff4ffd7a98e143d) Thanks [@aaronschubert0](https://github.com/aaronschubert0)! - Add `currency` to the POS Cart API so extensions can read the cart presentment currency.

- [#4655](https://github.com/Shopify/ui-extensions/pull/4655) [`3c4ff34`](https://github.com/Shopify/ui-extensions/commit/3c4ff345efb2628661e24cfeebf20620fb2c8d92) Thanks [@melissaluu](https://github.com/melissaluu)! - Remove unsupported bulk print action `shouldRender` targets from Admin UI extension types and generated docs.

- Updated dependencies [[`e4768fe`](https://github.com/Shopify/ui-extensions/commit/e4768fef3efc4139e9a55091ce1c58813b3f8592), [`6ed2ff9`](https://github.com/Shopify/ui-extensions/commit/6ed2ff9dbce77c52a3e8e76baeccf64d525ef2e0), [`acbaf2d`](https://github.com/Shopify/ui-extensions/commit/acbaf2d819151fb0e45c419cd311eacde34641d4), [`67fd45b`](https://github.com/Shopify/ui-extensions/commit/67fd45b43b9d33d37498af336ff4ffd7a98e143d), [`3c4ff34`](https://github.com/Shopify/ui-extensions/commit/3c4ff345efb2628661e24cfeebf20620fb2c8d92)]:
- @shopify/ui-extensions@2026.10.0-rc.8

## 2026.10.0-rc.7

### 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.7",
"version": "2026.10.0-rc.8",
"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.7"
"@shopify/ui-extensions": "2026.10.0-rc.8"
},
"peerDependencies": {
"preact": "^10.0.0"
Expand Down
19 changes: 19 additions & 0 deletions packages/ui-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @shopify/ui-extensions

## 2026.10.0-rc.8

### Minor Changes

- [#4658](https://github.com/Shopify/ui-extensions/pull/4658) [`6ed2ff9`](https://github.com/Shopify/ui-extensions/commit/6ed2ff9dbce77c52a3e8e76baeccf64d525ef2e0) Thanks [@Fionoble](https://github.com/Fionoble)! - Expose the Popover component in all Admin UI extension targets.

### Patch Changes

- [#4618](https://github.com/Shopify/ui-extensions/pull/4618) [`e4768fe`](https://github.com/Shopify/ui-extensions/commit/e4768fef3efc4139e9a55091ce1c58813b3f8592) Thanks [@SyndicateGit](https://github.com/SyndicateGit)! - Deprecate `useLocalizationMarket` and `localization.market` on both checkout and customer-account surfaces. These will be removed in a future version of the API.

- [#4645](https://github.com/Shopify/ui-extensions/pull/4645) [`acbaf2d`](https://github.com/Shopify/ui-extensions/commit/acbaf2d819151fb0e45c419cd311eacde34641d4) Thanks [@henryStelle](https://github.com/henryStelle)! - Fix the preact entry points in package.json:

- Add a `typesVersions` entry for `@shopify/ui-extensions/preact` so its types resolve under TypeScript's legacy `moduleResolution: "node"` (node10), matching the existing entries for `checkout/preact` and `customer-account/preact`.
- Remove the dead `./point-of-sale/preact` entry from `exports`. Its source file was intentionally deleted right after it was introduced, but the `exports` entry was left behind, pointing at files that are never built or published — the import has never resolved in any released version. POS extensions should use the generic `@shopify/ui-extensions/preact` entry point.

- [#4631](https://github.com/Shopify/ui-extensions/pull/4631) [`67fd45b`](https://github.com/Shopify/ui-extensions/commit/67fd45b43b9d33d37498af336ff4ffd7a98e143d) Thanks [@aaronschubert0](https://github.com/aaronschubert0)! - Add `currency` to the POS Cart API so extensions can read the cart presentment currency.

- [#4655](https://github.com/Shopify/ui-extensions/pull/4655) [`3c4ff34`](https://github.com/Shopify/ui-extensions/commit/3c4ff345efb2628661e24cfeebf20620fb2c8d92) Thanks [@melissaluu](https://github.com/melissaluu)! - Remove unsupported bulk print action `shouldRender` targets from Admin UI extension types and generated docs.

## 2026.10.0-rc.7

### 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.7",
"version": "2026.10.0-rc.8",
"scripts": {
"docs:admin": "node ./docs/surfaces/admin/build-docs.mjs",
"docs:checkout": "bash ./docs/surfaces/checkout/build-docs.sh",
Expand Down
Loading