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

Commit 8a75ef6

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

6 files changed

+34
-43
lines changed

.changeset/gold-carrots-relax.md

-5
This file was deleted.

.changeset/selfish-turtles-grab.md

-19
This file was deleted.

.changeset/sharp-walls-perform.md

-13
This file was deleted.

.changeset/twenty-months-swim.md

-5
This file was deleted.

packages/react/CHANGELOG.md

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

3+
## 2023.1.5
4+
5+
### Patch Changes
6+
7+
- b8757bd: Fix the UMD global variable name from `storefrontkitreact` to `hydrogenreact`.
8+
- 6225d33: Add a deprecation notice to `<CartLinePrice/>`:
9+
10+
Use `Money` instead. To migrate, use the `priceType` prop that matches the corresponding property on the `CartLine` object:
11+
12+
- `regular`: `cartLine.cost.totalAmount`
13+
- `compareAt`: `cartLine.cost.compareAtAmountPerQuantity`
14+
15+
For example:
16+
17+
```jsx
18+
// before
19+
<CartLinePrice data={cartLine} priceType="regular" />
20+
// after
21+
<Money data={cartLine.cost.totalAmount} />
22+
```
23+
24+
- 2bb8c81: Adding `<CartLineQuantity />` and `<CartLineQuantityAdjustButton />`
25+
26+
The `<CartLineQuantity />` and `<CartLineQuantityAdjustButton />` components have been added / migrated over from Hydrogen v1.
27+
28+
Additionally, fixed a bug when using `<CartLineQuantityAdjustButton />` that caused CartLine Attributes to be erased. CartLine Attributes should now be persisted when using that component.
29+
30+
## `useCartLine()` TypeScript types update
31+
32+
`useCartLine()`'s TypeScript type originally returned a `CartLine`. It has now been updated to be `PartialDeep<CartLine>`, which makes all the properties optional instead of required. This matches with the rest of hydrogen-react in that we can't know or guarnatee what properties exist on certain objects so we reflect that state in the TypeScript types.
33+
34+
- eb1656f: Update docs
35+
336
## 2023.1.4
437

538
### Major 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": "2023.1.4",
3+
"version": "2023.1.5",
44
"description": "React components, hooks, and utilities for creating custom Shopify storefronts",
55
"homepage": "https://github.com/Shopify/hydrogen-react/tree/main/packages/react",
66
"license": "MIT",

0 commit comments

Comments
 (0)