Skip to content

Commit 4cc1a10

Browse files
Merge branch 'main' into dependabot-npm_and_yarn-esbuild-122fa75296
2 parents b949518 + b4bdf68 commit 4cc1a10

31 files changed

+1485
-158
lines changed

.changeset/quiet-toys-admire.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/theme': patch
3+
---
4+
5+
Ignore API collect endpoint in `shopify theme dev` and `shopify app dev` commands

RELEASE_NOTES/3.90.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## App
2+
3+
- Added CLI support for extensions.supported_features in toml [#6765](https://github.com/Shopify/cli/pull/6765)
4+
- Enable custom headers in CLI GraphiQL. Users can now set custom headers like Shopify-Search-Query-Debug=1 in the GraphiQL interface to pass debugging headers to the Admin API [#6703](https://github.com/Shopify/cli/pull/6703)
5+
6+
## Theme
7+
8+
- Fix shopify theme dev --theme-editor-sync to avoid deleting files during race conditions, especially when multiple changes come from an external process (e.g., AI coding tools) [#6784](https://github.com/Shopify/cli/pull/6784)
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// This is an autogenerated file. Don't edit this file manually.
2+
import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
3+
4+
const data: ReferenceEntityTemplateSchema = {
5+
name: 'app bulk cancel',
6+
description: `Cancels a running bulk operation by ID.`,
7+
overviewPreviewDescription: `Cancel a bulk operation.`,
8+
type: 'command',
9+
isVisualComponent: false,
10+
defaultExample: {
11+
codeblock: {
12+
tabs: [
13+
{
14+
title: 'app bulk cancel',
15+
code: './examples/app-bulk-cancel.example.sh',
16+
language: 'bash',
17+
},
18+
],
19+
title: 'app bulk cancel',
20+
},
21+
},
22+
definitions: [
23+
{
24+
title: 'Flags',
25+
description: 'The following flags are available for the `app bulk cancel` command:',
26+
type: 'appbulkcancel',
27+
},
28+
],
29+
category: 'app',
30+
related: [
31+
],
32+
}
33+
34+
export default data
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// This is an autogenerated file. Don't edit this file manually.
2+
import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
3+
4+
const data: ReferenceEntityTemplateSchema = {
5+
name: 'app bulk execute',
6+
description: `Executes an Admin API GraphQL query or mutation on the specified store, as a bulk operation. Mutations are only allowed on dev stores.
7+
8+
Bulk operations allow you to process large amounts of data asynchronously. Learn more about [bulk query operations](/docs/api/usage/bulk-operations/queries) and [bulk mutation operations](/docs/api/usage/bulk-operations/imports).
9+
10+
Use [\`bulk status\`](/docs/api/shopify-cli/app/app-bulk-status) to check the status of your bulk operations.`,
11+
overviewPreviewDescription: `Execute bulk operations.`,
12+
type: 'command',
13+
isVisualComponent: false,
14+
defaultExample: {
15+
codeblock: {
16+
tabs: [
17+
{
18+
title: 'app bulk execute',
19+
code: './examples/app-bulk-execute.example.sh',
20+
language: 'bash',
21+
},
22+
],
23+
title: 'app bulk execute',
24+
},
25+
},
26+
definitions: [
27+
{
28+
title: 'Flags',
29+
description: 'The following flags are available for the `app bulk execute` command:',
30+
type: 'appbulkexecute',
31+
},
32+
],
33+
category: 'app',
34+
related: [
35+
],
36+
}
37+
38+
export default data
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// This is an autogenerated file. Don't edit this file manually.
2+
import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
3+
4+
const data: ReferenceEntityTemplateSchema = {
5+
name: 'app bulk status',
6+
description: `Check the status of a specific bulk operation by ID, or list all bulk operations belonging to this app on this store in the last 7 days.
7+
8+
Bulk operations allow you to process large amounts of data asynchronously. Learn more about [bulk query operations](/docs/api/usage/bulk-operations/queries) and [bulk mutation operations](/docs/api/usage/bulk-operations/imports).
9+
10+
Use [\`bulk execute\`](/docs/api/shopify-cli/app/app-bulk-execute) to start a new bulk operation.`,
11+
overviewPreviewDescription: `Check the status of bulk operations.`,
12+
type: 'command',
13+
isVisualComponent: false,
14+
defaultExample: {
15+
codeblock: {
16+
tabs: [
17+
{
18+
title: 'app bulk status',
19+
code: './examples/app-bulk-status.example.sh',
20+
language: 'bash',
21+
},
22+
],
23+
title: 'app bulk status',
24+
},
25+
},
26+
definitions: [
27+
{
28+
title: 'Flags',
29+
description: 'The following flags are available for the `app bulk status` command:',
30+
type: 'appbulkstatus',
31+
},
32+
],
33+
category: 'app',
34+
related: [
35+
],
36+
}
37+
38+
export default data
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// This is an autogenerated file. Don't edit this file manually.
2+
import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
3+
4+
const data: ReferenceEntityTemplateSchema = {
5+
name: 'app execute',
6+
description: `Executes an Admin API GraphQL query or mutation on the specified store. Mutations are only allowed on dev stores.
7+
8+
For operations that process large amounts of data, use [\`bulk execute\`](/docs/api/shopify-cli/app/app-bulk-execute) instead.`,
9+
overviewPreviewDescription: `Execute GraphQL queries and mutations.`,
10+
type: 'command',
11+
isVisualComponent: false,
12+
defaultExample: {
13+
codeblock: {
14+
tabs: [
15+
{
16+
title: 'app execute',
17+
code: './examples/app-execute.example.sh',
18+
language: 'bash',
19+
},
20+
],
21+
title: 'app execute',
22+
},
23+
},
24+
definitions: [
25+
{
26+
title: 'Flags',
27+
description: 'The following flags are available for the `app execute` command:',
28+
type: 'appexecute',
29+
},
30+
],
31+
category: 'app',
32+
related: [
33+
],
34+
}
35+
36+
export default data
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shopify app bulk cancel [flags]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shopify app bulk execute [flags]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shopify app bulk status [flags]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shopify app execute [flags]

0 commit comments

Comments
 (0)