diff --git a/.changeset/pre.json b/.changeset/pre.json index c5653f0efe..9f40e9444c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -6,6 +6,7 @@ "@shopify/ui-extensions-tester": "2026.10.0-rc.0" }, "changesets": [ + "document-pos-image-border-radius", "empty-peas-hide", "hide-tertiary-button-docs", "lovely-chairs-cross", @@ -14,6 +15,8 @@ "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", "tidy-buttons-auto" ] diff --git a/packages/ui-extensions-tester/CHANGELOG.md b/packages/ui-extensions-tester/CHANGELOG.md index 605cbd67fb..b343293ccc 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.7 + +### Minor Changes + +- [#4641](https://github.com/Shopify/ui-extensions/pull/4641) [`7ef321c`](https://github.com/Shopify/ui-extensions/commit/7ef321ce027bd60f744c1243d978a791fd26bb70) Thanks [@vctrchu](https://github.com/vctrchu)! - Add types for the POS validation resolution targets (`pos.cart.validations.resolution.render`, `pos.payment.validations.resolution.render`) and the target-scoped `shopify.resolution` API. Intercept event types now match their runtime payloads: plain objects carrying `type` and the event's data, no longer extending DOM `Event`. + +### Patch Changes + +- Updated dependencies [[`5f16688`](https://github.com/Shopify/ui-extensions/commit/5f1668883bf621e0bf8154e4d9eb9a478db6570c), [`7ef321c`](https://github.com/Shopify/ui-extensions/commit/7ef321ce027bd60f744c1243d978a791fd26bb70), [`6f11a9d`](https://github.com/Shopify/ui-extensions/commit/6f11a9de30d5b55c48894ef5e57253bd763bd4a6)]: + - @shopify/ui-extensions@2026.10.0-rc.7 + ## 2026.10.0-rc.6 ### Patch Changes diff --git a/packages/ui-extensions-tester/package.json b/packages/ui-extensions-tester/package.json index 75ac0479e0..80293db3c1 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.6", + "version": "2026.10.0-rc.7", "main": "index.js", "module": "index.mjs", "esnext": "index.esnext", @@ -55,7 +55,7 @@ }, "license": "MIT", "dependencies": { - "@shopify/ui-extensions": "2026.10.0-rc.6" + "@shopify/ui-extensions": "2026.10.0-rc.7" }, "peerDependencies": { "preact": "^10.0.0" diff --git a/packages/ui-extensions/CHANGELOG.md b/packages/ui-extensions/CHANGELOG.md index 4205a805f6..61fefdf0f1 100644 --- a/packages/ui-extensions/CHANGELOG.md +++ b/packages/ui-extensions/CHANGELOG.md @@ -1,5 +1,17 @@ # @shopify/ui-extensions +## 2026.10.0-rc.7 + +### Minor Changes + +- [#4641](https://github.com/Shopify/ui-extensions/pull/4641) [`7ef321c`](https://github.com/Shopify/ui-extensions/commit/7ef321ce027bd60f744c1243d978a791fd26bb70) Thanks [@vctrchu](https://github.com/vctrchu)! - Add types for the POS validation resolution targets (`pos.cart.validations.resolution.render`, `pos.payment.validations.resolution.render`) and the target-scoped `shopify.resolution` API. Intercept event types now match their runtime payloads: plain objects carrying `type` and the event's data, no longer extending DOM `Event`. + +- [#4642](https://github.com/Shopify/ui-extensions/pull/4642) [`6f11a9d`](https://github.com/Shopify/ui-extensions/commit/6f11a9de30d5b55c48894ef5e57253bd763bd4a6) Thanks [@henryStelle](https://github.com/henryStelle)! - Make the POS `Storage.current` property required. It is always populated by the host, so marking it optional forced consumers to handle a `possibly undefined` case that can never occur. + +### Patch Changes + +- [#4639](https://github.com/Shopify/ui-extensions/pull/4639) [`5f16688`](https://github.com/Shopify/ui-extensions/commit/5f1668883bf621e0bf8154e4d9eb9a478db6570c) Thanks [@ajanth-u](https://github.com/ajanth-u)! - Document the `borderRadius` prop on the POS `s-image` component. + ## 2026.10.0-rc.6 ### Minor Changes diff --git a/packages/ui-extensions/package.json b/packages/ui-extensions/package.json index 5de5faf6d0..1b4d623f88 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.6", + "version": "2026.10.0-rc.7", "scripts": { "docs:admin": "node ./docs/surfaces/admin/build-docs.mjs", "docs:checkout": "bash ./docs/surfaces/checkout/build-docs.sh",