Skip to content

Commit cf0d19b

Browse files
Merge branch 'main' into dependabot-npm_and_yarn-vite-6.4.1
2 parents 0e51723 + 1b12e01 commit cf0d19b

Some content is hidden

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

53 files changed

+1374
-372
lines changed

.changeset/clean-dodos-double.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+
Fix: Validate directory before `git clone` attempts

.changeset/hungry-ravens-sip.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/app': minor
3+
---
4+
5+
Added a `function info` command to display function information.

.changeset/polite-fans-wink.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/app': minor
3+
---
4+
5+
Removed support for "--api-key" and "SHOPIFY_API_KEY". Use "--client-id" or "SHOPIFY_FLAG_CLIENT_ID" instead

RELEASE_NOTES/3.86.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## App
2+
- Add support for Windows on ARM cpus for Functions binaries
3+
- Fix automatic token refresh to avoid 401 errors
4+
- Add support to `app dev` for dev stores with custom domains
5+
6+
## Theme
7+
- Add --allow-live flag to theme dev to allow development on live themes without confirmation
8+
9+
## CLI
10+
- Preserve session alias on token refresh

dev.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: cli
33
up:
44
- node:
55
version: 24.1.0
6-
pnpm: 10.11.1
76
package_manager: [email protected]
87
packages: []
98
- packages:

docs-shopify.dev/commands/app-config-link.doc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
33

44
const data: ReferenceEntityTemplateSchema = {
55
name: 'app config link',
6-
description: `Pulls app configuration from the Partner Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.
6+
description: `Pulls app configuration from the Developer Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.
77
88
For more information on the format of the created TOML configuration file, refer to the [App configuration](/docs/apps/tools/cli/configuration) page.
99
`,
10-
overviewPreviewDescription: `Fetch your app configuration from the Partner Dashboard.`,
10+
overviewPreviewDescription: `Fetch your app configuration from the Developer Dashboard.`,
1111
type: 'command',
1212
isVisualComponent: false,
1313
defaultExample: {

docs-shopify.dev/commands/app-deploy.doc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const data: ReferenceEntityTemplateSchema = {
55
name: 'app deploy',
66
description: `[Builds the app](/docs/api/shopify-cli/app/app-build), then deploys your app configuration and extensions.
77
8-
This command creates an app version, which is a snapshot of your app configuration and all extensions, including the app extensions that you manage in the Partner Dashboard. This version is then released to users.
8+
This command creates an app version, which is a snapshot of your app configuration and all extensions. This version is then released to users.
99
1010
This command doesn't deploy your [web app](/docs/apps/tools/cli/structure#web-components). You need to [deploy your web app](/docs/apps/deployment/web) to your own hosting solution.
1111
`,

docs-shopify.dev/commands/app-dev.doc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
33

44
const data: ReferenceEntityTemplateSchema = {
55
name: 'app dev',
6-
description: `Builds and previews your app on a development store, and watches for changes. [Read more about testing apps locally](/docs/apps/build/cli-for-apps/test-apps-locally).`,
6+
description: `Builds and previews your app on a dev store, and watches for changes. [Read more about testing apps locally](/docs/apps/build/cli-for-apps/test-apps-locally).`,
77
overviewPreviewDescription: `Run the app.`,
88
type: 'command',
99
isVisualComponent: false,
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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 function info',
6+
description: `The information returned includes the following:
7+
8+
- The function handle
9+
- The function name
10+
- The function API version
11+
- The targeting configuration
12+
- The schema path
13+
- The WASM path
14+
- The function runner path`,
15+
overviewPreviewDescription: `Print basic information about your function.`,
16+
type: 'command',
17+
isVisualComponent: false,
18+
defaultExample: {
19+
codeblock: {
20+
tabs: [
21+
{
22+
title: 'app function info',
23+
code: './examples/app-function-info.example.sh',
24+
language: 'bash',
25+
},
26+
],
27+
title: 'app function info',
28+
},
29+
},
30+
definitions: [
31+
{
32+
title: 'Flags',
33+
description: 'The following flags are available for the `app function info` command:',
34+
type: 'appfunctioninfo',
35+
},
36+
],
37+
category: 'app',
38+
related: [
39+
],
40+
}
41+
42+
export default data

docs-shopify.dev/commands/app-info.doc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const data: ReferenceEntityTemplateSchema = {
55
name: 'app info',
66
description: `The information returned includes the following:
77
8-
- The app and development store or Plus sandbox store that's used when you run the [dev](/docs/api/shopify-cli/app/app-dev) command. You can reset these configurations using [\`dev --reset\`](/docs/api/shopify-cli/app/app-dev#flags-propertydetail-reset).
8+
- The app and dev store that's used when you run the [dev](/docs/api/shopify-cli/app/app-dev) command. You can reset these configurations using [\`dev --reset\`](/docs/api/shopify-cli/app/app-dev#flags-propertydetail-reset).
99
- The [structure](/docs/apps/tools/cli/structure) of your app project.
1010
- The [access scopes](/docs/api/usage) your app has requested.
1111
- System information, including the package manager and version of Shopify CLI used in the project.`,

0 commit comments

Comments
 (0)