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

Commit 8b463ac

Browse files
[ci] release 2023-01 (#123)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3555603 commit 8b463ac

File tree

3 files changed

+44
-42
lines changed

3 files changed

+44
-42
lines changed

.changeset/wet-hounds-add.md

-41
This file was deleted.

packages/react/CHANGELOG.md

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

3+
## 2023.1.1
4+
5+
### Patch Changes
6+
7+
- 9bff83c: Updated to Storefront API version `2023-01`
8+
9+
## Storefront API Changes
10+
11+
The Storefront API changelog can be viewed [here](https://shopify.dev/api/release-notes/2023-01#graphql-storefront-api-changes). There are not any breaking changes in the Storefront API itself.
12+
13+
## Storefront Kit changes
14+
15+
### Breaking Changes
16+
17+
- The default Cart query no longer uses `compareAtPriceV2` and `priceV2`; use `compareAtPrice` and `price` instead. The `V2` fields will be removed in an upcoming version of the Storefront API.
18+
- The storefront client and ShopifyProvider now provide the `storeDomain` exactly as it is received; it's recommended that you pass the domain with the protocol and the fully-qualified domain name for your Storefront. For example: `https://hydrogen-test.myshopify.com`
19+
- `parseMetafield`'s implementation has been updated and vastly improved so that it is correctly parsing all the metafield types.
20+
21+
- The parsed metafield will now be found on the `parsedValue` property. For example:
22+
23+
```ts
24+
const metafield = parseMetafield(rawMetafield);
25+
26+
console.log(metafield.parsedValue);
27+
```
28+
29+
- Additionally, a new TypeScript type called `ParsedMetafields` is provided to help the `parseMetafield` function return the correct TypeScript types, by passing the type of metafield into the `ParsedMetafield` type. For example:
30+
31+
```ts
32+
const metafield =
33+
parseMetafield<ParsedMetafield['boolean']>(rawMetafield);
34+
35+
// parsedValue is a boolean
36+
if (metafield.parsedValue === true) {
37+
}
38+
```
39+
40+
- The `<Metafield/>` component has been removed; use `parseMetafield().parsedValue` to have control over what you want to render
41+
42+
### Other Changes
43+
44+
- The TypeScript types for the returned value of `flattenConnection()` should now be friendlier: if you are using a `PartialDeep` object, you'll still get a `PartialDeep` object in return; if you're NOT using a `PartialDeep` object, then the returned type will not be wrapped in `PartialDeep`.
45+
346
## 2022.10.8
447

548
### Patch Changes

packages/react/package.json

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

0 commit comments

Comments
 (0)