Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 0 additions & 5 deletions .changeset/bright-orgs-list.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-papers-hunt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/every-years-study.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/few-buses-greet.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-org-not-found-error.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-mirrors-exist.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/nice-clowns-bathe.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/puny-plants-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-clouds-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thirty-news-smell.md

This file was deleted.

22 changes: 20 additions & 2 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @shopify/app

## 3.93.0

### Minor Changes

- f7c2de7: Add `shopify organization list` command to list Shopify organizations you have access to. Supports `--json` flag for structured output.

### Patch Changes

- 0bef4a6: Fix crash when organization is not found in app-management-client by throwing NoOrgError instead of accessing properties on undefined
- 280da79: Enable non-interactive `app init` via a new `--organization-id` flag and not prompting to link to an existing app if `--name` is provided.
- Updated dependencies [ae77bc6]
- Updated dependencies [35ba22b]
- Updated dependencies [a910517]
- Updated dependencies [34e19bc]
- Updated dependencies [9a39b44]
- Updated dependencies [5dd39d0]
- @shopify/theme@3.93.0
- @shopify/cli-kit@3.93.0
- @shopify/plugin-cloudflare@3.93.0

## 3.92.0

### Minor Changes
Expand Down Expand Up @@ -308,7 +328,6 @@
- aebbc75: Fix: Pin GraphiQL CSS version to match JS version
- c3a5189: Bug-fix: Handling mis-configured extension TOML files
- acc904f: Bump Shopify/theme-tools packages to

- Fix validation for static blocks in JSON templates
- Introduce ability the disable theme checks for the next Liquid statement

Expand Down Expand Up @@ -833,7 +852,6 @@
- ca218cd31: Use a random port for GraphiQL when the default one is not available
- ca218cd31: Do not show api-key flag deprecation warning when using SHOPIFY_API_KEY
- ca218cd31: Bump Shopify/theme-tools packages

- TL;DR
- (New) `ValidJson` check - JSON schema validation on `.json` files
- (New) Section/block schema `t:` translation completion
Expand Down
8 changes: 4 additions & 4 deletions packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/app",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"description": "Utilities for loading, building, and publishing apps.",
"homepage": "https://github.com/shopify/cli#readme",
Expand Down Expand Up @@ -50,11 +50,11 @@
"@graphql-typed-document-node/core": "3.2.0",
"@luckycatfactory/esbuild-graphql-loader": "3.8.1",
"@oclif/core": "4.5.3",
"@shopify/cli-kit": "3.92.0",
"@shopify/plugin-cloudflare": "3.92.0",
"@shopify/cli-kit": "3.93.0",
"@shopify/plugin-cloudflare": "3.93.0",
"@shopify/polaris": "12.27.0",
"@shopify/polaris-icons": "8.11.1",
"@shopify/theme": "3.92.0",
"@shopify/theme": "3.93.0",
"@shopify/theme-check-node": "3.24.0",
"@shopify/toml-patch": "0.3.0",
"body-parser": "1.20.3",
Expand Down
16 changes: 15 additions & 1 deletion packages/cli-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @shopify/cli-kit

## 3.93.0

### Minor Changes

- 9a39b44: Add `--development-context` flag to `theme push`

The new `--development-context` flag (short: `-c`) allows you to specify a unique identifier for a development theme context (e.g., PR number, branch name). This gives developers the ability to programmatically create or reuse named development themes; particularly useful when running `shopify theme push` in a CI environment where you might want to associate a particular development theme to a branch or pull request.

### Patch Changes

- 35ba22b: Set the current theme in local development on create or find
- 34e19bc: Change wording for current development theme in `theme list`

Previously you could only have one development theme at a time so we'd add `[yours]` beside the development theme that you were currently attached to. Now you can have multiple development themes so we're changing the language to `[current]` to show which theme you are actively connected to.

## 3.92.0

## 3.91.0
Expand Down Expand Up @@ -586,7 +601,6 @@
- db5981a1e: Clean errors related to metrics requests on theme dev
- 7f8a9436d: Add log information when graphql requests return an error
- d2a352442: Added 2 new utilities on the git module:

- git.ensureIsClean(directory?: string): Promise<void>: If the .git directory tree is not clean (has uncommitted changes) it throws an abort error.
- git.isClean(directory?: string): Promise<boolean>: Returns true if the .git directory tree is clean (no uncommitted changes).

Expand Down
2 changes: 1 addition & 1 deletion packages/cli-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/cli-kit",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"private": false,
"description": "A set of utilities, interfaces, and models that are common across all the platform features",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-kit/src/public/common/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const CLI_KIT_VERSION = '3.92.0'
export const CLI_KIT_VERSION = '3.93.0'
16 changes: 16 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @shopify/cli

## 3.93.0

### Minor Changes

- 9a39b44: Add `--development-context` flag to `theme push`

The new `--development-context` flag (short: `-c`) allows you to specify a unique identifier for a development theme context (e.g., PR number, branch name). This gives developers the ability to programmatically create or reuse named development themes; particularly useful when running `shopify theme push` in a CI environment where you might want to associate a particular development theme to a branch or pull request.

### Patch Changes

- 34e19bc: Change wording for current development theme in `theme list`

Previously you could only have one development theme at a time so we'd add `[yours]` beside the development theme that you were currently attached to. Now you can have multiple development themes so we're changing the language to `[current]` to show which theme you are actively connected to.

- 67aaf10: fix missing json output for theme info when no theme or dev flag is present

## 3.92.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/oclif.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8007,5 +8007,5 @@
"summary": "Trigger delivery of a sample webhook topic payload to a designated address."
}
},
"version": "3.92.0"
"version": "3.93.0"
}
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/cli",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"private": false,
"description": "A CLI tool to build for the Shopify platform",
Expand Down Expand Up @@ -59,11 +59,11 @@
"@oclif/core": "4.5.3",
"@oclif/plugin-commands": "4.1.33",
"@oclif/plugin-plugins": "5.4.47",
"@shopify/app": "3.92.0",
"@shopify/cli-kit": "3.92.0",
"@shopify/plugin-cloudflare": "3.92.0",
"@shopify/plugin-did-you-mean": "3.92.0",
"@shopify/theme": "3.92.0",
"@shopify/app": "3.93.0",
"@shopify/cli-kit": "3.93.0",
"@shopify/plugin-cloudflare": "3.93.0",
"@shopify/plugin-did-you-mean": "3.93.0",
"@shopify/theme": "3.93.0",
"@shopify/cli-hydrogen": "11.1.10",
"@types/global-agent": "3.0.0",
"@vitest/coverage-istanbul": "^3.1.4",
Expand Down
2 changes: 2 additions & 0 deletions packages/create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @shopify/create-app

## 3.93.0

## 3.92.0

## 3.91.0
Expand Down
2 changes: 1 addition & 1 deletion packages/create-app/oclif.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@
"summary": "Create a new app project"
}
},
"version": "3.92.0"
"version": "3.93.0"
}
6 changes: 3 additions & 3 deletions packages/create-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/create-app",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"private": false,
"description": "A CLI tool to create a new Shopify app.",
Expand Down Expand Up @@ -58,8 +58,8 @@
"esbuild": "0.27.3"
},
"devDependencies": {
"@shopify/cli-kit": "3.92.0",
"@shopify/app": "3.92.0",
"@shopify/cli-kit": "3.93.0",
"@shopify/app": "3.93.0",
"esbuild-plugin-copy": "^2.1.1",
"@vitest/coverage-istanbul": "^3.1.4"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/plugin-cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @shopify/plugin-cloudflare

## 3.93.0

### Patch Changes

- Updated dependencies [35ba22b]
- Updated dependencies [34e19bc]
- Updated dependencies [9a39b44]
- @shopify/cli-kit@3.93.0

## 3.92.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/plugin-cloudflare",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"description": "Enables the creation of Cloudflare tunnels from `shopify app dev`, allowing previews from any device",
"keywords": [
Expand Down Expand Up @@ -47,7 +47,7 @@
},
"dependencies": {
"@oclif/core": "4.5.3",
"@shopify/cli-kit": "3.92.0"
"@shopify/cli-kit": "3.93.0"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^3.1.4"
Expand Down
9 changes: 9 additions & 0 deletions packages/plugin-did-you-mean/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @shopify/plugin-did-you-mean

## 3.93.0

### Patch Changes

- Updated dependencies [35ba22b]
- Updated dependencies [34e19bc]
- Updated dependencies [9a39b44]
- @shopify/cli-kit@3.93.0

## 3.92.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-did-you-mean/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/plugin-did-you-mean",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"private": true,
"bugs": {
Expand Down Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"@oclif/core": "4.5.3",
"@shopify/cli-kit": "3.92.0",
"@shopify/cli-kit": "3.93.0",
"n-gram": "2.0.2"
},
"devDependencies": {
Expand Down
25 changes: 22 additions & 3 deletions packages/theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @shopify/theme

## 3.93.0

### Minor Changes

- 9a39b44: Add `--development-context` flag to `theme push`

The new `--development-context` flag (short: `-c`) allows you to specify a unique identifier for a development theme context (e.g., PR number, branch name). This gives developers the ability to programmatically create or reuse named development themes; particularly useful when running `shopify theme push` in a CI environment where you might want to associate a particular development theme to a branch or pull request.

### Patch Changes

- ae77bc6: Fix theme editor shortcut tracking fetch requests instead of page navigation
- a910517: Add a 250ms debounce on our filewatcher for themes to stop potential file deletes
- 34e19bc: Change wording for current development theme in `theme list`

Previously you could only have one development theme at a time so we'd add `[yours]` beside the development theme that you were currently attached to. Now you can have multiple development themes so we're changing the language to `[current]` to show which theme you are actively connected to.

- 5dd39d0: Fix Cart rate limiting issue
- Updated dependencies [35ba22b]
- Updated dependencies [34e19bc]
- Updated dependencies [9a39b44]
- @shopify/cli-kit@3.93.0

## 3.92.0

### Patch Changes
Expand Down Expand Up @@ -185,7 +207,6 @@
- 02b417b: Ensure all theme commands accept the --path flag
- 9b52391: Add /listings folder to theme package command
- 5188073: Improvement and fixes when handling multi-environment commands

- Fixes a bug where passing a single environment to multi-env commands would cause it to fail if the environment didn't have all of the required attributes for multi-env
- Updates output when running multi-env commands to ensure the results from each command don't overlap one another

Expand Down Expand Up @@ -248,7 +269,6 @@
- eaa8b7c: Fix an issue with hot-reloading the compiled assets (scripts.js, block-scripts.js, etc)
- 44e8bc7: Improved theme upload ordering to ensure layout files are uploaded before templates
- acc904f: Bump Shopify/theme-tools packages to

- Fix validation for static blocks in JSON templates
- Introduce ability the disable theme checks for the next Liquid statement

Expand Down Expand Up @@ -611,7 +631,6 @@
- ca218cd31: Update theme selection text for `shopify theme push` command
- ca218cd31: Improve Glob Pattern subdirectory mismatch error handling
- ca218cd31: Bump Shopify/theme-tools packages

- TL;DR
- (New) `ValidJson` check - JSON schema validation on `.json` files
- (New) Section/block schema `t:` translation completion
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/theme",
"version": "3.92.0",
"version": "3.93.0",
"packageManager": "pnpm@10.11.1",
"private": true,
"description": "Utilities for building and publishing themes",
Expand Down Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"@oclif/core": "4.5.3",
"@shopify/cli-kit": "3.92.0",
"@shopify/cli-kit": "3.93.0",
"@shopify/theme-check-node": "3.24.0",
"@shopify/theme-language-server-node": "2.20.2",
"chokidar": "3.6.0",
Expand Down
Loading