Skip to content

Commit

Permalink
[ci] release v1.x-2022-07 (#2537)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Sep 1, 2023
1 parent 532c5f3 commit d12f40a
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 21 deletions.
15 changes: 0 additions & 15 deletions .changeset/wet-boats-carry.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/hydrogen/CHANGELOG.md
@@ -1,5 +1,21 @@
# Changelog

## 1.7.3

### Patch Changes

- 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)

```jsx
export async function api(request) {
return new Request(new URL(request.url).origin + '/products', {
headers: {
'Hydrogen-Concatenate': 'true',
},
});
}
```

## 1.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen/package.json
Expand Up @@ -7,7 +7,7 @@
"engines": {
"node": ">=14"
},
"version": "1.7.2",
"version": "1.7.3",
"description": "Modern custom Shopify storefronts",
"license": "MIT",
"main": "dist/esnext/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen/src/version.ts
@@ -1 +1 @@
export const LIB_VERSION = '1.7.2';
export const LIB_VERSION = '1.7.3';
2 changes: 1 addition & 1 deletion packages/playground/async-config/package.json
Expand Up @@ -17,7 +17,7 @@
},
"dependencies": {
"@cloudflare/kv-asset-handler": "*",
"@shopify/hydrogen": "^1.7.2",
"@shopify/hydrogen": "^1.7.3",
"miniflare": "^1.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/server-components/package.json
Expand Up @@ -17,7 +17,7 @@
},
"dependencies": {
"@cloudflare/kv-asset-handler": "*",
"@shopify/hydrogen": "^1.7.2",
"@shopify/hydrogen": "^1.7.3",
"miniflare": "^1.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion templates/demo-store/package.json
Expand Up @@ -38,7 +38,7 @@
"prettier": "@shopify/prettier-config",
"dependencies": {
"@headlessui/react": "^1.7.0",
"@shopify/hydrogen": "^1.7.2",
"@shopify/hydrogen": "^1.7.3",
"clsx": "^1.1.1",
"graphql-tag": "^2.12.6",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion templates/hello-world/package.json
Expand Up @@ -20,7 +20,7 @@
"vite": "^2.9.13"
},
"dependencies": {
"@shopify/hydrogen": "^1.7.2",
"@shopify/hydrogen": "^1.7.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
Expand Down

0 comments on commit d12f40a

Please sign in to comment.