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
4 changes: 2 additions & 2 deletions .changeset/pos-remove-action-api-from-action-render.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
'@shopify/ui-extensions': major
'@shopify/ui-extensions-tester': major
'@shopify/ui-extensions': minor
'@shopify/ui-extensions-tester': minor
---

Remove the POS Action API (`shopify.action.presentModal()`) from action render targets (`*.action.render`).
Expand Down
4 changes: 2 additions & 2 deletions packages/ui-extensions-tester/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @shopify/ui-extensions-tester

## 2027.0.0-rc.5
## 2026.10.0-rc.5

### Major Changes

Expand All @@ -13,7 +13,7 @@
### Patch Changes

- Updated dependencies [[`d8b03c9`](https://github.com/Shopify/ui-extensions/commit/d8b03c99ac71e227d55743a5da657b94575e31b7), [`8e59844`](https://github.com/Shopify/ui-extensions/commit/8e59844f885f3df4e409964b5df370e5a58c7f21)]:
- @shopify/ui-extensions@2027.0.0-rc.5
- @shopify/ui-extensions@2026.10.0-rc.5

## 2026.10.0-rc.4

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": "2027.0.0-rc.5",
"version": "2026.10.0-rc.5",
"main": "index.js",
"module": "index.mjs",
"esnext": "index.esnext",
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"license": "MIT",
"dependencies": {
"@shopify/ui-extensions": "2027.0.0-rc.5"
"@shopify/ui-extensions": "2026.10.0-rc.5"
},
"peerDependencies": {
"preact": "^10.0.0"
Expand Down
12 changes: 12 additions & 0 deletions packages/ui-extensions-tester/src/tests/api-version.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import {API_VERSION} from '../api-version';

describe('API_VERSION', () => {
// API_VERSION derives from the npm package version (2026.10.x -> "2026-10"),
// so a semver-major changeset on this calver-keyed package rolls the year and
// produces a nonexistent API version ("2027-00"), breaking every consumer
// pinned to the branch's real version. Breaking changes here must be
// released as minor bumps within the branch's calendar version.
it('is a quarterly Shopify API version', () => {
expect(API_VERSION).toMatch(/^\d{4}-(01|04|07|10)$/);
});
});
2 changes: 1 addition & 1 deletion packages/ui-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @shopify/ui-extensions

## 2027.0.0-rc.5
## 2026.10.0-rc.5

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