Skip to content

Commit b81baed

Browse files
Version Packages
1 parent 81c9d8a commit b81baed

31 files changed

+120
-101
lines changed

.changeset/big-singers-pump.md

-5
This file was deleted.

.changeset/clever-dogs-rush.md

-10
This file was deleted.

.changeset/funny-pots-visit.md

-5
This file was deleted.

.changeset/fuzzy-olives-enjoy.md

-6
This file was deleted.

.changeset/healthy-dolls-clean.md

-5
This file was deleted.

.changeset/nice-dolls-pay.md

-5
This file was deleted.

.changeset/plenty-bananas-fly.md

-6
This file was deleted.

.changeset/red-wombats-hug.md

-5
This file was deleted.

.changeset/slow-buttons-brake.md

-7
This file was deleted.

.changeset/spicy-phones-behave.md

-5
This file was deleted.

.changeset/twenty-penguins-allow.md

-5
This file was deleted.

packages/app/CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# @shopify/app
22

3+
## 3.79.0
4+
5+
### Minor Changes
6+
7+
- 7cdc129: Improved how port selection works when using localhost development
8+
9+
Added a `--localhost-port` flag. Use this to specify that you want to develop using localhost on a specific port. For example: `shopify app dev --localhost-port=4000`
10+
11+
`shopify app dev --use-localhost` will always try to use port 3458. If port 3458 is not available the CLI will warn the user and select a different port.
12+
13+
### Patch Changes
14+
15+
- 6dba2c8: Improve type definition support for POLARIS_UNIFIED extensions
16+
- aa85a63: Bump theme-tools packages
17+
- 321e2e2: Enable multi-memory with wasm-opt
18+
- db8131b: Updated Binaryen version to 123.0.0
19+
- 164bbbe: The hidden `.shopify` folder now has its own generic .gitignore file
20+
- e647600: Fix 401 error during the app log resubscribe process
21+
- Updated dependencies [f9ac5cf]
22+
- Updated dependencies [aa85a63]
23+
- Updated dependencies [94362f9]
24+
- Updated dependencies [036bcaf]
25+
- Updated dependencies [164bbbe]
26+
- Updated dependencies [031feb7]
27+
- @shopify/cli-kit@3.79.0
28+
- @shopify/theme@3.79.0
29+
- @shopify/plugin-cloudflare@3.79.0
30+
331
## 3.78.0
432

533
### Minor Changes

packages/app/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/app",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"description": "Utilities for loading, building, and publishing apps.",
66
"homepage": "https://github.com/shopify/cli#readme",
@@ -52,12 +52,12 @@
5252
"@graphql-typed-document-node/core": "3.2.0",
5353
"@luckycatfactory/esbuild-graphql-loader": "3.8.1",
5454
"@oclif/core": "3.26.5",
55-
"@shopify/cli-kit": "3.78.0",
55+
"@shopify/cli-kit": "3.79.0",
5656
"@shopify/function-runner": "4.1.1",
57-
"@shopify/plugin-cloudflare": "3.78.0",
57+
"@shopify/plugin-cloudflare": "3.79.0",
5858
"@shopify/polaris": "12.27.0",
5959
"@shopify/polaris-icons": "8.11.1",
60-
"@shopify/theme": "3.78.0",
60+
"@shopify/theme": "3.79.0",
6161
"@shopify/theme-check-node": "3.14.1",
6262
"body-parser": "1.20.3",
6363
"camelcase-keys": "9.1.3",

packages/cli-kit/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @shopify/cli-kit
22

3+
## 3.79.0
4+
5+
### Minor Changes
6+
7+
- f9ac5cf: Update `getPathValue`, `setPathValue`, and `unsetPathValue` to support the lodash `PropertyPath` type
8+
- 031feb7: Add new `unsetPathValue` function which wraps the `unset` function from lodash
9+
10+
### Patch Changes
11+
12+
- 94362f9: Avoid showing errors when fetching notifications in background
13+
- 036bcaf: Fix a bug with binary downloads timing out
14+
- 164bbbe: The hidden `.shopify` folder now has its own generic .gitignore file
15+
316
## 3.78.0
417

518
## 3.77.0

packages/cli-kit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/cli-kit",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"private": false,
66
"description": "A set of utilities, interfaces, and models that are common across all the platform features",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const CLI_KIT_VERSION = '3.78.0'
1+
export const CLI_KIT_VERSION = '3.79.0'

packages/cli/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @shopify/cli
22

3+
## 3.79.0
4+
35
## 3.78.0
46

57
### Minor Changes

packages/cli/oclif.manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6956,5 +6956,5 @@
69566956
"summary": "Trigger delivery of a sample webhook topic payload to a designated address."
69576957
}
69586958
},
6959-
"version": "3.78.0"
6959+
"version": "3.79.0"
69606960
}

packages/cli/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/cli",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"private": false,
66
"description": "A CLI tool to build for the Shopify platform",
@@ -111,11 +111,11 @@
111111
"@oclif/core": "3.26.5",
112112
"@oclif/plugin-commands": "4.1.18",
113113
"@oclif/plugin-plugins": "5.4.28",
114-
"@shopify/app": "3.78.0",
115-
"@shopify/cli-kit": "3.78.0",
116-
"@shopify/plugin-cloudflare": "3.78.0",
117-
"@shopify/plugin-did-you-mean": "3.78.0",
118-
"@shopify/theme": "3.78.0",
114+
"@shopify/app": "3.79.0",
115+
"@shopify/cli-kit": "3.79.0",
116+
"@shopify/plugin-cloudflare": "3.79.0",
117+
"@shopify/plugin-did-you-mean": "3.79.0",
118+
"@shopify/theme": "3.79.0",
119119
"@shopify/cli-hydrogen": "10.0.0",
120120
"@types/global-agent": "3.0.0",
121121
"@typescript-eslint/eslint-plugin": "7.13.1",

packages/create-app/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @shopify/create-app
22

3+
## 3.79.0
4+
35
## 3.78.0
46

57
## 3.77.0

packages/create-app/oclif.manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@
104104
"summary": "Create a new app project"
105105
}
106106
},
107-
"version": "3.78.0"
107+
"version": "3.79.0"
108108
}

packages/create-app/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/create-app",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"private": false,
66
"description": "A CLI tool to create a new Shopify app.",
@@ -59,8 +59,8 @@
5959
"esbuild": "0.24.2"
6060
},
6161
"devDependencies": {
62-
"@shopify/cli-kit": "3.78.0",
63-
"@shopify/app": "3.78.0",
62+
"@shopify/cli-kit": "3.79.0",
63+
"@shopify/app": "3.79.0",
6464
"esbuild-plugin-copy": "^2.1.1",
6565
"@vitest/coverage-istanbul": "^1.6.0"
6666
},

packages/plugin-cloudflare/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @shopify/plugin-cloudflare
22

3+
## 3.79.0
4+
5+
### Patch Changes
6+
7+
- 036bcaf: Fix a bug with binary downloads timing out
8+
- Updated dependencies [f9ac5cf]
9+
- Updated dependencies [94362f9]
10+
- Updated dependencies [036bcaf]
11+
- Updated dependencies [164bbbe]
12+
- Updated dependencies [031feb7]
13+
- @shopify/cli-kit@3.79.0
14+
315
## 3.78.0
416

517
### Patch Changes

packages/plugin-cloudflare/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/plugin-cloudflare",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"description": "Enables the creation of Cloudflare tunnels from `shopify app dev`, allowing previews from any device",
66
"keywords": [
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@oclif/core": "3.26.5",
51-
"@shopify/cli-kit": "3.78.0"
51+
"@shopify/cli-kit": "3.79.0"
5252
},
5353
"devDependencies": {
5454
"@vitest/coverage-istanbul": "^1.6.0"

packages/plugin-did-you-mean/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @shopify/plugin-did-you-mean
22

3+
## 3.79.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [f9ac5cf]
8+
- Updated dependencies [94362f9]
9+
- Updated dependencies [036bcaf]
10+
- Updated dependencies [164bbbe]
11+
- Updated dependencies [031feb7]
12+
- @shopify/cli-kit@3.79.0
13+
314
## 3.78.0
415

516
### Patch Changes

packages/plugin-did-you-mean/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/plugin-did-you-mean",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"private": true,
66
"bugs": {
@@ -43,7 +43,7 @@
4343
},
4444
"dependencies": {
4545
"@oclif/core": "3.26.5",
46-
"@shopify/cli-kit": "3.78.0",
46+
"@shopify/cli-kit": "3.79.0",
4747
"n-gram": "2.0.2"
4848
},
4949
"devDependencies": {

packages/theme/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @shopify/theme
22

3+
## 3.79.0
4+
5+
### Patch Changes
6+
7+
- aa85a63: Bump theme-tools packages
8+
- 164bbbe: The hidden `.shopify` folder now has its own generic .gitignore file
9+
- Updated dependencies [f9ac5cf]
10+
- Updated dependencies [94362f9]
11+
- Updated dependencies [036bcaf]
12+
- Updated dependencies [164bbbe]
13+
- Updated dependencies [031feb7]
14+
- @shopify/cli-kit@3.79.0
15+
316
## 3.78.0
417

518
### Minor Changes

packages/theme/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/theme",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"private": true,
66
"description": "Utilities for building and publishing themes",
@@ -43,7 +43,7 @@
4343
},
4444
"dependencies": {
4545
"@oclif/core": "3.26.5",
46-
"@shopify/cli-kit": "3.78.0",
46+
"@shopify/cli-kit": "3.79.0",
4747
"@shopify/theme-check-node": "3.14.1",
4848
"@shopify/theme-language-server-node": "2.13.1",
4949
"chokidar": "3.6.0",

packages/ui-extensions-dev-console/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @shopify/ui-extensions-dev-console-app
22

3+
## 3.79.0
4+
35
## 3.78.0
46

57
## 3.77.0

packages/ui-extensions-dev-console/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/ui-extensions-dev-console-app",
3-
"version": "3.78.0",
3+
"version": "3.79.0",
44
"packageManager": "[email protected]",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)