diff --git a/.changeset/pre.json b/.changeset/pre.json index 9f40e9444c..ff5a807aaf 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -6,11 +6,15 @@ "@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", @@ -18,6 +22,7 @@ "pos-resolution-targets", "pos-storage-current-required", "pos-validation-target-grammar", + "print-action-should-render-detail-targets", "tidy-buttons-auto" ] } diff --git a/packages/ui-extensions-tester/CHANGELOG.md b/packages/ui-extensions-tester/CHANGELOG.md index b343293ccc..16e8a8b299 100644 --- a/packages/ui-extensions-tester/CHANGELOG.md +++ b/packages/ui-extensions-tester/CHANGELOG.md @@ -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 diff --git a/packages/ui-extensions-tester/package.json b/packages/ui-extensions-tester/package.json index 80293db3c1..6de0f193e2 100644 --- a/packages/ui-extensions-tester/package.json +++ b/packages/ui-extensions-tester/package.json @@ -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", @@ -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" diff --git a/packages/ui-extensions/CHANGELOG.md b/packages/ui-extensions/CHANGELOG.md index 61fefdf0f1..83e7b62578 100644 --- a/packages/ui-extensions/CHANGELOG.md +++ b/packages/ui-extensions/CHANGELOG.md @@ -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 diff --git a/packages/ui-extensions/package.json b/packages/ui-extensions/package.json index c82f02f620..e743b33cfc 100644 --- a/packages/ui-extensions/package.json +++ b/packages/ui-extensions/package.json @@ -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",