[stable] Release app execute, app bulk execute, and related commands#6819
Open
jordanverasamy wants to merge 6 commits intostable/3.90from
Open
[stable] Release app execute, app bulk execute, and related commands#6819jordanverasamy wants to merge 6 commits intostable/3.90from
app execute, app bulk execute, and related commands#6819jordanverasamy wants to merge 6 commits intostable/3.90from
Conversation
app execute, app bulk execute, and related commands
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
98c8b92 to
fab497a
Compare
Contributor
Coverage report
Test suite run success3689 tests passing in 1431 suites. Report generated by 🧪jest coverage report action from fab497a |
Contributor
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/private/node/constants.d.ts@@ -6,6 +6,7 @@ export declare const environmentVariables: {
enableCliRedirect: string;
env: string;
firstPartyDev: string;
+ skipLocalDevConsole: string;
noAnalytics: string;
partnersToken: string;
runAsUser: string;
packages/cli-kit/dist/public/common/string.d.ts@@ -60,13 +60,6 @@ export declare function escapeRegExp(str: string): string;
* @returns The escaped string.
*/
export declare function camelize(input: string): string;
-/**
- * Transform a string to capitalCase.
- *
- * @param input - String to transform.
- * @returns The transformed string.
- */
-export declare function capitalizeWords(input: string): string;
/**
* Transform a string to param-case.
*
packages/cli-kit/dist/public/node/context/local.d.ts@@ -70,6 +70,13 @@ export declare function alwaysLogMetrics(env?: NodeJS.ProcessEnv): boolean;
* @returns True if SHOPIFY_CLI_1P is truthy.
*/
export declare function firstPartyDev(env?: NodeJS.ProcessEnv): boolean;
+/**
+ * Returns true if the local dev console should be skipped.
+ *
+ * @param env - The environment variables from the environment of the current process.
+ * @returns True if SHOPIFY_SKIP_LOCAL_DEV_CONSOLE is truthy.
+ */
+export declare function skipLocalDevConsole(env?: NodeJS.ProcessEnv): boolean;
/**
* Return gitpodURL if we are running in gitpod.
* Https://www.gitpod.io/docs/environment-variables#default-environment-variables.
packages/cli-kit/dist/public/node/themes/types.d.ts@@ -27,9 +27,8 @@ export interface ThemeFileSystemOptions {
ignore?: string[];
only?: string[];
};
- listing?: string;
- noDelete?: boolean;
notify?: string;
+ noDelete?: boolean;
}
/**
* Represents a theme on the file system.
|
gonzaloriestra
approved these changes
Feb 5, 2026
ericlee878
approved these changes
Feb 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Merges bulk operations CLI commands and related improvements to
stable/3.90.Cherry-picks the following from
main:b867383f42- UI feedback improvements (@ericlee878) (from Immediate UI feedback forshopify app executeandshopify app bulk execute#6793)a7e47aa023- Removereverse: trueinlistBulkOperations(@jordanverasamy) (from removereverse: trueinlistBulkOperations#6813)534aadcbe8- Releaseapp executeandapp bulk executecommands (@jordanverasamy) (from Release bulk operations CLI commands #6699)3c61d9747f- Releaseapp bulk cancelcommand (@jordanverasamy) (from Releaseapp bulk cancelcommand #6811)9d9884ccac- Adjust bulk cancel failure copy text (@jordanverasamy) (from Releaseapp bulk cancelcommand #6811)After those cherry-picked commits, adds a changeset entry describing the release.