Skip to content

Commit d12f40a

Browse files
[ci] release v1.x-2022-07 (#2537)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 532c5f3 commit d12f40a

File tree

8 files changed

+22
-21
lines changed

8 files changed

+22
-21
lines changed

.changeset/wet-boats-carry.md

-15
This file was deleted.

packages/hydrogen/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 1.7.3
4+
5+
### Patch Changes
6+
7+
- Allow concatenating requests with a header. For example, if you want the route `/shop` to proxy render everything on `/products`, setup an API route at `/routes/shop.server.jsx` with the following: ([#2536](https://github.com/Shopify/hydrogen-v1/pull/2536)) by [@blittle](https://github.com/blittle)
8+
9+
```jsx
10+
export async function api(request) {
11+
return new Request(new URL(request.url).origin + '/products', {
12+
headers: {
13+
'Hydrogen-Concatenate': 'true',
14+
},
15+
});
16+
}
17+
```
18+
319
## 1.7.2
420

521
### Patch Changes

packages/hydrogen/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"engines": {
88
"node": ">=14"
99
},
10-
"version": "1.7.2",
10+
"version": "1.7.3",
1111
"description": "Modern custom Shopify storefronts",
1212
"license": "MIT",
1313
"main": "dist/esnext/index.js",

packages/hydrogen/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const LIB_VERSION = '1.7.2';
1+
export const LIB_VERSION = '1.7.3';

packages/playground/async-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"dependencies": {
1919
"@cloudflare/kv-asset-handler": "*",
20-
"@shopify/hydrogen": "^1.7.2",
20+
"@shopify/hydrogen": "^1.7.3",
2121
"miniflare": "^1.3.3",
2222
"react": "^18.2.0",
2323
"react-dom": "^18.2.0"

packages/playground/server-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"dependencies": {
1919
"@cloudflare/kv-asset-handler": "*",
20-
"@shopify/hydrogen": "^1.7.2",
20+
"@shopify/hydrogen": "^1.7.3",
2121
"miniflare": "^1.3.3",
2222
"react": "^18.2.0",
2323
"react-dom": "^18.2.0"

templates/demo-store/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"prettier": "@shopify/prettier-config",
3939
"dependencies": {
4040
"@headlessui/react": "^1.7.0",
41-
"@shopify/hydrogen": "^1.7.2",
41+
"@shopify/hydrogen": "^1.7.3",
4242
"clsx": "^1.1.1",
4343
"graphql-tag": "^2.12.6",
4444
"react": "^18.2.0",

templates/hello-world/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"vite": "^2.9.13"
2121
},
2222
"dependencies": {
23-
"@shopify/hydrogen": "^1.7.2",
23+
"@shopify/hydrogen": "^1.7.3",
2424
"react": "^18.2.0",
2525
"react-dom": "^18.2.0"
2626
}

0 commit comments

Comments
 (0)