Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
88db7d5
Move camera API to platform APIs
andy-chhuon Jan 29, 2026
aae1998
Merge pull request #3772 from Shopify/move-camera-api-platform
andy-chhuon Jan 29, 2026
382fa77
Fix /snapit trigger in deploy workflow (#3782)
billfienberg Jan 30, 2026
21a83fa
Expose picker and resource picker APIs for all rendering extensions (…
billfienberg Jan 30, 2026
958ccbd
chore: update shopify-dev asset path
majd-shopify Feb 2, 2026
b607db2
chore: update shopify-dev asset path for pos, checkout, customer acco…
majd-shopify Feb 2, 2026
1900daf
[Target APIs]: Description improvements for version 2026-01 (#3770)
mcvinci Feb 3, 2026
96d0dfe
Merge pull request #3790 from Shopify/chore/update-shopify-dev-asset-…
majd-shopify Feb 3, 2026
a8b9485
[2026-01] Add deprecation warning to checkout metafield API
avocadomayo Feb 2, 2026
9a18e8a
Merge pull request #3788 from Shopify/avocadomayo/2026-01-update-meta…
avocadomayo Feb 3, 2026
68a91b9
Version Packages
github-actions[bot] Feb 3, 2026
ea64789
Merge pull request #3784 from Shopify/changeset-release/2026-01
avocadomayo Feb 3, 2026
e80b976
chore: update all paths in build-docs scripts
majd-shopify Feb 6, 2026
81d5fa9
Merge pull request #3851 from Shopify/chore/update-all-paths-in-build…
majd-shopify Feb 6, 2026
97fd9b1
Copying from 2025-10 branch
SteveSill Feb 6, 2026
2e1d100
Merge pull request #3804 from Shopify/admin-ui-examples-2026-01
SteveSill Feb 6, 2026
95d0bdf
target docs
johndcollett Jan 22, 2026
f3a992a
proper output folder for target generated docs information
johndcollett Jan 23, 2026
ab91ae5
fix: exclude @private targets and components from targets.json
laurelthorburn Jan 28, 2026
79fb42e
fix: include RunnableExtension targets in targets.json
laurelthorburn Jan 29, 2026
87de58a
remove test
laurelthorburn Feb 2, 2026
6d17a0b
script clean up and actiontargetapi
laurelthorburn Feb 6, 2026
c055e41
[2026-01] Add deprecation warning to checkout metafield read API
avocadomayo Feb 6, 2026
24cc179
Add changeset
avocadomayo Feb 6, 2026
e1eca83
chore: update all script paths to new shopify-dev monorepo structure
majd-shopify Feb 9, 2026
54221f5
Merge pull request #3886 from Shopify/chore/update-script-paths-for-s…
majd-shopify Feb 9, 2026
54848ea
Merge pull request #3865 from Shopify/2026-01-rc-target-docs
laurelthorburn Feb 9, 2026
9df9873
[2026-01] Make API headings consistent in POS UI and Admin UI (#3831)
mcvinci Feb 9, 2026
afd938c
Remove component name code styling (#3907)
mcvinci Feb 17, 2026
a1f2c25
Merge pull request #3864 from Shopify/avocadomayo/2026-01-deprecate-c…
avocadomayo Feb 17, 2026
5f3bd4d
Version Packages
github-actions[bot] Feb 17, 2026
a99e6e8
Merge pull request #3916 from Shopify/changeset-release/2026-01
avocadomayo Feb 17, 2026
f6a1a84
Transition component names from Pascal case to sentence case (#3918)
mcvinci Feb 18, 2026
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
7 changes: 7 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,12 @@ module.exports = {
'promise/catch-or-return': 'off',
},
},
{
files: ['packages/ui-extensions/src/surfaces/checkout/preact/*.ts'],
rules: {
// Support use of deprecated hooks until removal
'import/no-deprecated': 'off',
},
},
],
};
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ on:
- 20[0-9][0-9]-[01][1470]
# RC version branches
- 20[0-9][0-9]-[01][1470]-rc
# Snapit trigger - runs when /snapit comment is made on a PR
issue_comment:
types:
- created

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down
14 changes: 14 additions & 0 deletions packages/ui-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @shopify/ui-extensions

## 2026.1.2

### Patch Changes

- [#3864](https://github.com/Shopify/ui-extensions/pull/3864) [`24cc179`](https://github.com/Shopify/ui-extensions/commit/24cc17924ef9965c9c1bc5ebcb3a0bfb8742b794) Thanks [@avocadomayo](https://github.com/avocadomayo)! - Add deprecation warning to checkout metafield read API in Checkout UI Extensions

## 2026.1.1

### Patch Changes

- [#3781](https://github.com/Shopify/ui-extensions/pull/3781) [`21a83fa`](https://github.com/Shopify/ui-extensions/commit/21a83fad55126b256cc0a3fe830803e0ea49d9cf) Thanks [@billfienberg](https://github.com/billfienberg)! - Admin: Expose picker and resource picker APIs for all rendering extensions

- [#3788](https://github.com/Shopify/ui-extensions/pull/3788) [`a8b9485`](https://github.com/Shopify/ui-extensions/commit/a8b9485a19d7f0fdb4413636a3c667695d7c178d) Thanks [@avocadomayo](https://github.com/avocadomayo)! - Add deprecation warning to checkout metafield write APIs in Checkout UI Extension API

## 2026.1.0

### Minor Changes
Expand Down
Loading