Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit a6c2b91

Browse files
[ci] release 2022-10 (#67)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2dc6ac4 commit a6c2b91

7 files changed

+54
-66
lines changed

.changeset/serious-crabs-chew.md

-16
This file was deleted.

.changeset/sharp-squids-accept.md

-8
This file was deleted.

.changeset/swift-olives-beam.md

-26
This file was deleted.

.changeset/two-birds-complain.md

-5
This file was deleted.

.changeset/witty-maps-ring.md

-10
This file was deleted.

packages/react/CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,58 @@
11
# @shopify/hydrogen-react
22

3+
## 2022.10.3
4+
5+
### Patch Changes
6+
7+
- ccfbbbd: Adds the functions `getStorefrontApiUrl()` and `getPublicTokenHeaders()` to the object returned by `useShop()` (and provided by `<ShopifyProvider/>`).
8+
9+
For example:
10+
11+
```ts
12+
const {storefrontId, getPublicTokenHeaders, getStorefrontApiUrl} = useShop();
13+
14+
fetch(getStorefrontApiUrl(), {
15+
headers: getPublicTokenHeaders({contentType: 'json'})
16+
body: {...}
17+
})
18+
```
19+
20+
- 0683765: Adds CartLines components and hooks.
21+
22+
- The `CartLineProvider` component creates a context for using a cart line.
23+
- The `useCartLine` hook provides access to the cart line object. It must be a descendent of a `CartProvider` component.
24+
25+
- 94fdddd: Provide a mapping of Storefront API's custom scalars to their actual types, for use with GraphQL CodeGen.
26+
27+
For example:
28+
29+
```ts
30+
import {storefrontApiCustomScalars} from '@shopify/hydrogen-react';
31+
32+
const config: CodegenConfig = {
33+
// Use the schema that's bundled with @shopify/hydrogen-react
34+
schema: './node_modules/@shopify/hydrogen-react/storefront.schema.json',
35+
generates: {
36+
'./gql/': {
37+
preset: 'client',
38+
plugins: [],
39+
config: {
40+
// Use the custom scalar definitions that @shopify/hydrogen-react provides to improve the custom scalar types
41+
scalars: storefrontApiCustomScalars,
42+
},
43+
},
44+
},
45+
};
46+
```
47+
48+
- 676eb75: Adds additional builds for Node-specific targets, to help ensure that server-side code was getting compiled for server-side runtimes, instead of browser-side code for server-side runtimes.
49+
- 2dc6ac4: Add a new utility helper for getting the myshopify domain for the site:
50+
51+
```ts
52+
const client = createStorefrontClient(...);
53+
client.getShopifyDomain() === `https://testing.myshopify.com`;
54+
```
55+
356
## 2022.10.2
457

558
### Patch Changes

packages/react/package.json

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

0 commit comments

Comments
 (0)