Skip to content

Commit 7e1f486

Browse files
shopify-github-actions-access[bot]github-actions[bot]itsjustriley
authored
[ci] release 2026.4.0 (#3676)
* [ci] release 2026.4.0 * chore: trigger CI --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Riley Nowak <riley.nowak@shopify.com>
1 parent b0caa5c commit 7e1f486

15 files changed

Lines changed: 115 additions & 43 deletions

File tree

.changeset/backend-consent-enabled.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/permissive-rr-peerdeps.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/sfapi-caapi-2026-04-update.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @shopify/cli-hydrogen
22

3+
## 11.1.14
4+
5+
### Patch Changes
6+
7+
- Widen React Router peer dependencies from exact versions to caret ranges (`^7.12.0`). This allows Hydrogen projects to use newer React Router minor versions without peer dependency conflicts, particularly with npm's strict resolver. Hydrogen only uses stable public APIs from React Router, so minor version updates are backwards-compatible. ([#3677](https://github.com/Shopify/hydrogen/pull/3677)) by [@fredericoo](https://github.com/fredericoo)
8+
9+
- Update Storefront API and Customer Account API from 2026-01 to 2026-04. ([#3651](https://github.com/Shopify/hydrogen/pull/3651)) by [@itsjustriley](https://github.com/itsjustriley)
10+
11+
## Breaking changes
12+
13+
**JSON metafield values limited to 128KB**: When using API version 2026-04 or later, the Storefront API limits JSON type metafield writes to 128KB. This limit applies at the API level - Hydrogen passes through to the Storefront API without additional restriction. Apps that used JSON metafields before April 1, 2026 are grandfathered at the existing 2MB limit. Large metafield values continue to be readable by all API versions.
14+
15+
## New features
16+
17+
**New `MERCHANDISE_LINE_TRANSFORMERS_RUN_ERROR` cart error code**: Cart operations (`cartCreate`, `cartLinesAdd`, etc.) now return a specific `MERCHANDISE_LINE_TRANSFORMERS_RUN_ERROR` error code when a Cart Transform Function fails at runtime, instead of the previous generic `INVALID` error code. If you handle cart errors in your storefront code, you may want to add handling for this new code.
18+
19+
## Changelog links
20+
- [Storefront API 2026-04 changelog](https://shopify.dev/changelog?filter=api&api_version=2026-04&api_type=storefront-graphql)
21+
- [Customer Account API 2026-04 changelog](https://shopify.dev/changelog?filter=api&api_version=2026-04&api_type=customer-account-graphql)
22+
323
## 11.1.13
424

525
### Patch Changes

packages/cli/oclif.manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1675,5 +1675,5 @@
16751675
]
16761676
}
16771677
},
1678-
"version": "11.1.13"
1678+
"version": "11.1.14"
16791679
}

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"access": "public",
55
"@shopify:registry": "https://registry.npmjs.org"
66
},
7-
"version": "11.1.13",
7+
"version": "11.1.14",
88
"license": "MIT",
99
"type": "module",
1010
"repository": {

packages/create-hydrogen/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @shopify/create-hydrogen
22

3+
## 5.0.33
4+
5+
### Patch Changes
6+
7+
- Update Storefront API and Customer Account API from 2026-01 to 2026-04. ([#3651](https://github.com/Shopify/hydrogen/pull/3651)) by [@itsjustriley](https://github.com/itsjustriley)
8+
9+
## Breaking changes
10+
11+
**JSON metafield values limited to 128KB**: When using API version 2026-04 or later, the Storefront API limits JSON type metafield writes to 128KB. This limit applies at the API level - Hydrogen passes through to the Storefront API without additional restriction. Apps that used JSON metafields before April 1, 2026 are grandfathered at the existing 2MB limit. Large metafield values continue to be readable by all API versions.
12+
13+
## New features
14+
15+
**New `MERCHANDISE_LINE_TRANSFORMERS_RUN_ERROR` cart error code**: Cart operations (`cartCreate`, `cartLinesAdd`, etc.) now return a specific `MERCHANDISE_LINE_TRANSFORMERS_RUN_ERROR` error code when a Cart Transform Function fails at runtime, instead of the previous generic `INVALID` error code. If you handle cart errors in your storefront code, you may want to add handling for this new code.
16+
17+
## Changelog links
18+
- [Storefront API 2026-04 changelog](https://shopify.dev/changelog?filter=api&api_version=2026-04&api_type=storefront-graphql)
19+
- [Customer Account API 2026-04 changelog](https://shopify.dev/changelog?filter=api&api_version=2026-04&api_type=customer-account-graphql)
20+
321
## 5.0.32
422

523
### Patch Changes

packages/create-hydrogen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"@shopify:registry": "https://registry.npmjs.org"
66
},
77
"license": "MIT",
8-
"version": "5.0.32",
8+
"version": "5.0.33",
99
"type": "module",
1010
"repository": {
1111
"type": "git",

packages/hydrogen-react/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @shopify/hydrogen-react
22

3+
## 2026.4.0
4+
5+
### Major Changes
6+
7+
- Update Storefront API and Customer Account API from 2026-01 to 2026-04. ([#3651](https://github.com/Shopify/hydrogen/pull/3651)) by [@itsjustriley](https://github.com/itsjustriley)
8+
9+
## Breaking changes
10+
11+
**JSON metafield values limited to 128KB**: When using API version 2026-04 or later, the Storefront API limits JSON type metafield writes to 128KB. This limit applies at the API level - Hydrogen passes through to the Storefront API without additional restriction. Apps that used JSON metafields before April 1, 2026 are grandfathered at the existing 2MB limit. Large metafield values continue to be readable by all API versions.
12+
13+
## New features
14+
15+
**New `MERCHANDISE_LINE_TRANSFORMERS_RUN_ERROR` cart error code**: Cart operations (`cartCreate`, `cartLinesAdd`, etc.) now return a specific `MERCHANDISE_LINE_TRANSFORMERS_RUN_ERROR` error code when a Cart Transform Function fails at runtime, instead of the previous generic `INVALID` error code. If you handle cart errors in your storefront code, you may want to add handling for this new code.
16+
17+
## Changelog links
18+
- [Storefront API 2026-04 changelog](https://shopify.dev/changelog?filter=api&api_version=2026-04&api_type=storefront-graphql)
19+
- [Customer Account API 2026-04 changelog](https://shopify.dev/changelog?filter=api&api_version=2026-04&api_type=customer-account-graphql)
20+
321
## 2026.1.2
422

523
### Patch Changes

packages/hydrogen-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/hydrogen-react",
3-
"version": "2026.1.2",
3+
"version": "2026.4.0",
44
"description": "React components, hooks, and utilities for creating custom Shopify storefronts",
55
"homepage": "https://github.com/Shopify/hydrogen/tree/main/packages/hydrogen-react",
66
"license": "MIT",

0 commit comments

Comments
 (0)