Skip to content

Commit fe1f6b7

Browse files
authored
Merge pull request #4650 from Shopify/changeset-release/2026-10-rc
Version Packages (2026-10-rc) (rc)
2 parents 9270ab6 + 2104229 commit fe1f6b7

5 files changed

Lines changed: 38 additions & 3 deletions

File tree

.changeset/pre.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,23 @@
66
"@shopify/ui-extensions-tester": "2026.10.0-rc.0"
77
},
88
"changesets": [
9+
"deprecate-localization-market",
910
"document-pos-image-border-radius",
1011
"empty-peas-hide",
12+
"expose-admin-popover",
13+
"fix-preact-entry-points",
1114
"hide-tertiary-button-docs",
1215
"lovely-chairs-cross",
1316
"old-beds-cut",
17+
"pos-cart-money-v2",
1418
"pos-intercept-api",
1519
"pos-intercept-payment-validations",
1620
"pos-payment-validations-tender-confirm-docs",
1721
"pos-remove-action-api-from-action-render",
1822
"pos-resolution-targets",
1923
"pos-storage-current-required",
2024
"pos-validation-target-grammar",
25+
"print-action-should-render-detail-targets",
2126
"tidy-buttons-auto"
2227
]
2328
}

packages/ui-extensions-tester/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @shopify/ui-extensions-tester
22

3+
## 2026.10.0-rc.8
4+
5+
### Patch Changes
6+
7+
- [#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.
8+
9+
- [#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.
10+
11+
- 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)]:
12+
- @shopify/ui-extensions@2026.10.0-rc.8
13+
314
## 2026.10.0-rc.7
415

516
### Minor Changes

packages/ui-extensions-tester/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/ui-extensions-tester",
3-
"version": "2026.10.0-rc.7",
3+
"version": "2026.10.0-rc.8",
44
"main": "index.js",
55
"module": "index.mjs",
66
"esnext": "index.esnext",
@@ -55,7 +55,7 @@
5555
},
5656
"license": "MIT",
5757
"dependencies": {
58-
"@shopify/ui-extensions": "2026.10.0-rc.7"
58+
"@shopify/ui-extensions": "2026.10.0-rc.8"
5959
},
6060
"peerDependencies": {
6161
"preact": "^10.0.0"

packages/ui-extensions/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @shopify/ui-extensions
22

3+
## 2026.10.0-rc.8
4+
5+
### Minor Changes
6+
7+
- [#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.
8+
9+
### Patch Changes
10+
11+
- [#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.
12+
13+
- [#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:
14+
15+
- 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`.
16+
- 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.
17+
18+
- [#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.
19+
20+
- [#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.
21+
322
## 2026.10.0-rc.7
423

524
### Minor Changes

packages/ui-extensions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/ui-extensions",
3-
"version": "2026.10.0-rc.7",
3+
"version": "2026.10.0-rc.8",
44
"scripts": {
55
"docs:admin": "node ./docs/surfaces/admin/build-docs.mjs",
66
"docs:checkout": "bash ./docs/surfaces/checkout/build-docs.sh",

0 commit comments

Comments
 (0)