Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] release 2023-07 #1374

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/fresh-cobras-call.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-steaks-shave.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/khaki-brooms-draw.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-jars-boil.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/polite-vans-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-keys-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-singers-prove.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @shopify/cli-hydrogen

## 5.4.0

### Minor Changes

- The build command now throws errors on CI when it can't find a valid lockfile. This should prevent unforseen issues related to dependency versioning in production. ([#1370](https://github.com/Shopify/hydrogen/pull/1370)) by [@frandiox](https://github.com/frandiox)

This behavior can be disabled with the flag `--no-lockfile-check`, which might be useful in monorepos or other setups where the lockfile is not available in the project directory.

### Patch Changes

- Add check to render collection images when available ([#1373](https://github.com/Shopify/hydrogen/pull/1373)) by [@juanpprieto](https://github.com/juanpprieto)

- Remove sourcemap annotations from client bundles. This prevents errors showing up in the devtools when the sourcemaps fail to load. ([#1364](https://github.com/Shopify/hydrogen/pull/1364)) by [@blittle](https://github.com/blittle)

## 5.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/oclif.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.3.1",
"version": "5.4.0",
"commands": {
"hydrogen:build": {
"id": "hydrogen:build",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"version": "5.3.1",
"version": "5.4.0",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
9 changes: 9 additions & 0 deletions packages/create-hydrogen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @shopify/create-hydrogen

## 4.2.6

### Patch Changes

- Add check to render collection images when available ([#1373](https://github.com/Shopify/hydrogen/pull/1373)) by [@juanpprieto](https://github.com/juanpprieto)

- Updated dependencies [[`e148cfca`](https://github.com/Shopify/hydrogen/commit/e148cfca004d6bb2981d136231e3825509d52305), [`06da5570`](https://github.com/Shopify/hydrogen/commit/06da5570c25a64b1afc4cce093c3ba3d2d7da2ca), [`425791ce`](https://github.com/Shopify/hydrogen/commit/425791ced37ddb50f71fbdc78760905555716444)]:
- @shopify/[email protected]

## 4.2.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/create-hydrogen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"@shopify:registry": "https://registry.npmjs.org"
},
"license": "MIT",
"version": "4.2.5",
"version": "4.2.6",
"type": "module",
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@shopify/cli-hydrogen": "^5.3.0"
"@shopify/cli-hydrogen": "^5.4.0"
},
"bin": "dist/create-app.js",
"files": [
Expand Down
12 changes: 12 additions & 0 deletions packages/hydrogen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @shopify/hydrogen

## 2023.7.9

### Patch Changes

- Allow generic inference in standalone usage of WithCache type - Contributed by @chinanderm ([#1363](https://github.com/Shopify/hydrogen/pull/1363)) by [@wizardlyhel](https://github.com/wizardlyhel)

- Cart Optimistic UI helpers ([#1366](https://github.com/Shopify/hydrogen/pull/1366)) by [@wizardlyhel](https://github.com/wizardlyhel)

- Fix storefront sub request cache key ([#1375](https://github.com/Shopify/hydrogen/pull/1375)) by [@wizardlyhel](https://github.com/wizardlyhel)

- Fix the Pagination component to use forwardRefs for the NextLink and PreviousLink render props ([#1362](https://github.com/Shopify/hydrogen/pull/1362)) by [@blittle](https://github.com/blittle)

## 2023.7.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@shopify:registry": "https://registry.npmjs.org"
},
"type": "module",
"version": "2023.7.8",
"version": "2023.7.9",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/production/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrogen/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIB_VERSION = '2023.7.8';
export const LIB_VERSION = '2023.7.9';
10 changes: 10 additions & 0 deletions templates/demo-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# demo-store

## 2.1.3

### Patch Changes

- Cart Optimistic UI helpers ([#1366](https://github.com/Shopify/hydrogen/pull/1366)) by [@wizardlyhel](https://github.com/wizardlyhel)

- Updated dependencies [[`e148cfca`](https://github.com/Shopify/hydrogen/commit/e148cfca004d6bb2981d136231e3825509d52305), [`1be1e40d`](https://github.com/Shopify/hydrogen/commit/1be1e40de6abf58679dbfada20fb430892dc5ef8), [`8772903d`](https://github.com/Shopify/hydrogen/commit/8772903da9efe23fb56fc4bfcace729065f4960f), [`bfb142e8`](https://github.com/Shopify/hydrogen/commit/bfb142e84a22ca1c506f7ebb1692e435790c8fd3), [`06da5570`](https://github.com/Shopify/hydrogen/commit/06da5570c25a64b1afc4cce093c3ba3d2d7da2ca), [`00210faa`](https://github.com/Shopify/hydrogen/commit/00210faa55cad78a8331adecddc9bdde9463acc7), [`425791ce`](https://github.com/Shopify/hydrogen/commit/425791ced37ddb50f71fbdc78760905555716444)]:
- @shopify/[email protected]
- @shopify/[email protected]

## 2.1.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions templates/demo-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "demo-store",
"private": true,
"sideEffects": false,
"version": "2.1.2",
"version": "2.1.3",
"scripts": {
"dev": "shopify hydrogen dev --codegen-unstable",
"build": "shopify hydrogen build",
Expand All @@ -20,8 +20,8 @@
"@headlessui/react": "^1.7.2",
"@remix-run/react": "1.19.1",
"@shopify/cli": "3.49.2",
"@shopify/cli-hydrogen": "^5.3.0",
"@shopify/hydrogen": "^2023.7.8",
"@shopify/cli-hydrogen": "^5.4.0",
"@shopify/hydrogen": "^2023.7.9",
"@shopify/remix-oxygen": "^1.1.3",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
Expand Down
6 changes: 3 additions & 3 deletions templates/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"dependencies": {
"@remix-run/react": "1.19.1",
"@shopify/cli": "3.49.2",
"@shopify/cli-hydrogen": "^5.3.1",
"@shopify/hydrogen": "^2023.7.8",
"@shopify/cli-hydrogen": "^5.4.0",
"@shopify/hydrogen": "^2023.7.9",
"@shopify/remix-oxygen": "^1.1.4",
"@total-typescript/ts-reset": "^0.4.2",
"graphql": "^16.6.0",
Expand All @@ -29,7 +29,7 @@
"@shopify/oxygen-workers-types": "^3.17.3",
"@shopify/prettier-config": "^1.1.2",
"@types/eslint": "^8.4.10",
"@types/react": "^18.2.22",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"eslint": "^8.20.0",
"eslint-plugin-hydrogen": "0.12.2",
Expand Down
6 changes: 3 additions & 3 deletions templates/skeleton/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"dependencies": {
"@remix-run/react": "1.19.1",
"@shopify/cli": "3.49.2",
"@shopify/cli-hydrogen": "^5.3.1",
"@shopify/hydrogen": "^2023.7.8",
"@shopify/cli-hydrogen": "^5.4.0",
"@shopify/hydrogen": "^2023.7.9",
"@shopify/remix-oxygen": "^1.1.4",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
Expand All @@ -30,7 +30,7 @@
"@shopify/prettier-config": "^1.1.2",
"@total-typescript/ts-reset": "^0.4.2",
"@types/eslint": "^8.4.10",
"@types/react": "^18.2.22",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"eslint": "^8.20.0",
"eslint-plugin-hydrogen": "0.12.2",
Expand Down