Skip to content

Commit ceb2a3b

Browse files
Merge branch 'main' into fetch-notifications-in-background
2 parents 98e144d + 17f19d1 commit ceb2a3b

File tree

753 files changed

+3293
-1151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

753 files changed

+3293
-1151
lines changed

.changeset/good-plums-fail.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@shopify/theme': patch
3+
'@shopify/app': patch
4+
---
5+
6+
Bump Shopify/theme-tools packages

.changeset/nervous-terms-invite.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@shopify/theme': minor
3+
'@shopify/cli': minor
4+
---
5+
6+
Developers can now use the `shopify theme metafields pull` command to download metafields, which can then be used for more refined code completion.

.changeset/quick-eggs-end.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/cli-kit': patch
3+
---
4+
5+
Introduce method to fetch metafield definitions by ownerType from Admin API

.changeset/red-tips-mix.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@shopify/cli-kit': patch
3+
'@shopify/theme': patch
4+
---
5+
6+
Ensure git directory is clean when running `theme pull`
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/cli': patch
3+
---
4+
5+
Bump cli-hydrogen package to 9.0.3

.changeset/silver-mice-thank.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@shopify/cli-kit': patch
3+
'@shopify/app': patch
4+
---
5+
6+
Remove all template lockfiles, except the one used to install dependencies

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Theme team and CLI owners should review theme changes
55
packages/cli-kit/src/private/themes/* @shopify/advanced-edits @shopify/app-inner-loop
6-
packages/cli-kit/src/public/themes/* @shopify/advanced-edits @shopify/app-inner-loop
6+
packages/cli-kit/src/public/**/themes/* @shopify/advanced-edits @shopify/app-inner-loop
77
packages/theme/** @shopify/advanced-edits @shopify/app-inner-loop
88

99
# These are metafiles that can be reviewed by anyone

RELEASE_NOTES/3.71.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Themes
2+
* Fix password validation to handle capitalized store names on `shopify theme dev`
3+
* Update `shopify theme dev` to no longer display redundant URLs
4+
* Add shortcut keys to `theme dev`
5+
* Add `--strict` flag to `theme push` to enforce theme check before pushing
6+
* Handle localized URLs in storefront password validation
7+
* Improve storefront password detection for password-protected shops with redirects
8+
9+
# Apps
10+
* Improve commands startup performance, all app commands run faster now
11+
* Add support to import admin-link extensions
12+
* Add client-id and reset as global flags to all app commands
13+
14+
# CLI
15+
* Display link as plaintext if link label is nonexistent or just the link itself
16+
* Skip notifications check on CI and tests
17+
* Skip notifications when using --json

RELEASE_NOTES/3.72.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Themes
2+
* Allow empty theme files to be uploaded #5015
3+
* Add support for block liquid files in theme partitioning #5042
4+
5+
# Apps
6+
* Fix dest already exists error when running functions #5009
7+
* Fix dev for Ruby apps #4522
8+
* Fix an issue with functions in dev #5028

bin/get-graphql-schemas.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ const schemas = [
4444
pathToFile: 'areas/core/shopify/db/graphql/webhooks_schema_unstable_public.graphql',
4545
localPath: './packages/app/src/cli/api/graphql/webhooks/webhooks_schema.graphql',
4646
branch: 'dd',
47-
}
47+
},
48+
{
49+
repo: 'shopify',
50+
pathToFile: 'areas/core/shopify/db/graphql/functions_cli_api_schema_unstable_public.graphql',
51+
localPath: './packages/app/src/cli/api/graphql/functions/functions_cli_schema.graphql',
52+
branch: 'dd',
53+
},
4854
]
4955

5056
function runCommand(command, args) {

0 commit comments

Comments
 (0)