Skip to content

Commit d633a47

Browse files
[ci] release 2025.7.3 (#3392)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7f0d99e commit d633a47

File tree

16 files changed

+174
-114
lines changed

16 files changed

+174
-114
lines changed

.changeset/breezy-baths-pay.md

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

.changeset/bright-masks-swim.md

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

.changeset/cool-lions-dance.md

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

.changeset/react-19-support.md

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

packages/cli/CHANGELOG.md

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

3+
## 11.1.7
4+
5+
### Patch Changes
6+
7+
- Support OAuth parameters via URL query strings in skeleton login route ([#3391](https://github.com/Shopify/hydrogen/pull/3391)) by [@kdaviduik](https://github.com/kdaviduik)
8+
9+
The skeleton template's login route (`account_.login.tsx`) now reads OAuth parameters from the URL and forwards them to `customerAccount.login()`. This enables deep linking to the login page with pre-configured authentication options.
10+
11+
### Supported Query Parameters
12+
13+
| Query Parameter | Description |
14+
| ----------------- | ---------------------------------------------------------------------------------- |
15+
| `acr_values` | Direct users to a specific login method (e.g., `provider:google` for social login) |
16+
| `login_hint` | Pre-fill the email address field |
17+
| `login_hint_mode` | When set to `submit` with `login_hint`, auto-submits the login form |
18+
| `locale` | Display the login page in a specific language (e.g., `fr`, `zh-CN`) |
19+
20+
### Usage Examples
21+
22+
```
23+
24+
/account/[email protected]&login_hint_mode=submit
25+
/account/login?acr_values=provider:google
26+
/account/login?locale=fr
27+
```
28+
329
## 11.1.6
430

531
### Patch Changes

packages/cli/oclif.manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,5 +1683,5 @@
16831683
]
16841684
}
16851685
},
1686-
"version": "11.1.6"
1686+
"version": "11.1.7"
16871687
}

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.6",
7+
"version": "11.1.7",
88
"license": "MIT",
99
"type": "module",
1010
"repository": {

packages/create-hydrogen/CHANGELOG.md

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

3+
## 5.0.27
4+
5+
### Patch Changes
6+
7+
- Support OAuth parameters via URL query strings in skeleton login route ([#3391](https://github.com/Shopify/hydrogen/pull/3391)) by [@kdaviduik](https://github.com/kdaviduik)
8+
9+
The skeleton template's login route (`account_.login.tsx`) now reads OAuth parameters from the URL and forwards them to `customerAccount.login()`. This enables deep linking to the login page with pre-configured authentication options.
10+
11+
### Supported Query Parameters
12+
13+
| Query Parameter | Description |
14+
| ----------------- | ---------------------------------------------------------------------------------- |
15+
| `acr_values` | Direct users to a specific login method (e.g., `provider:google` for social login) |
16+
| `login_hint` | Pre-fill the email address field |
17+
| `login_hint_mode` | When set to `submit` with `login_hint`, auto-submits the login form |
18+
| `locale` | Display the login page in a specific language (e.g., `fr`, `zh-CN`) |
19+
20+
### Usage Examples
21+
22+
```
23+
24+
/account/[email protected]&login_hint_mode=submit
25+
/account/login?acr_values=provider:google
26+
/account/login?locale=fr
27+
```
28+
329
## 5.0.26
430

531
### 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.26",
8+
"version": "5.0.27",
99
"type": "module",
1010
"repository": {
1111
"type": "git",

packages/hydrogen-react/CHANGELOG.md

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

3+
## 2025.7.2
4+
5+
### Minor Changes
6+
7+
- Add React 19 support while maintaining React 18 compatibility ([#3391](https://github.com/Shopify/hydrogen/pull/3391)) by [@kdaviduik](https://github.com/kdaviduik)
8+
- Updated Hydrogen peerDependencies to accept React ^18.3.1 or non-CVE-containing React 19 versions
9+
10+
Users can now upgrade their Hydrogen projects to React 19 without npm peer dependency conflicts. Existing React 18 projects continue to work without changes.
11+
312
## 2025.7.1
413

514
### Patch Changes

0 commit comments

Comments
 (0)