diff --git a/.changeset/pre.json b/.changeset/pre.json index baee6b5bf3..0a6e2e9c77 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -15,10 +15,14 @@ "curvy-apes-yawn", "dull-windows-enjoy", "empty-seals-arrive", + "fifty-cougars-walk", "four-snakes-provide", "loud-birds-talk", "loud-otters-act", + "modern-trains-fry", "odd-monkeys-doubt", + "serious-radios-occur", + "small-planes-sniff", "twenty-cheetahs-return" ] } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 2a3fc6da2c..909a6389c6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @shopify/cli-hydrogen +## 4.0.0-alpha.8 + +### Patch Changes + +- Removed magic routes and `.hydrogen` template routes. See `rfc/obsolete-routing.md` for details of what used to be in the package but has now been removed. ([#336](https://github.com/Shopify/h2/pull/336)) by [@frehner](https://github.com/frehner) + + `/__health` still exists for the moment, though at some point it will probably be removed as well. + ## 4.0.0-alpha.7 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d5b13b6812..1e1d886a4f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -4,7 +4,7 @@ "access": "public", "@shopify:registry": "https://registry.npmjs.org" }, - "version": "4.0.0-alpha.7", + "version": "4.0.0-alpha.8", "type": "module", "scripts": { "build": "tsup --clean --config ./tsup.config.ts", diff --git a/packages/hydrogen/CHANGELOG.md b/packages/hydrogen/CHANGELOG.md index 914acc687e..1330b78f9e 100644 --- a/packages/hydrogen/CHANGELOG.md +++ b/packages/hydrogen/CHANGELOG.md @@ -1,5 +1,17 @@ # @shopify/hydrogen +## 2.0.0-alpha.2 + +### Patch Changes + +- Add a default value for `context.storefront.i18n` and improve types. ([#330](https://github.com/Shopify/h2/pull/330)) by [@frandiox](https://github.com/frandiox) + +- Rename the `notFoundMaybeRedirect` utility to `storefrontRedirect` and call it only in the server entry file. ([#362](https://github.com/Shopify/h2/pull/362)) by [@frandiox](https://github.com/frandiox) + +- Removed magic routes and `.hydrogen` template routes. See `rfc/obsolete-routing.md` for details of what used to be in the package but has now been removed. ([#336](https://github.com/Shopify/h2/pull/336)) by [@frehner](https://github.com/frehner) + + `/__health` still exists for the moment, though at some point it will probably be removed as well. + ## 2.0.0-alpha.1 ### Patch Changes diff --git a/packages/hydrogen/package.json b/packages/hydrogen/package.json index 8eded9436c..8dd20d73ce 100644 --- a/packages/hydrogen/package.json +++ b/packages/hydrogen/package.json @@ -5,7 +5,7 @@ "@shopify:registry": "https://registry.npmjs.org" }, "type": "module", - "version": "2.0.0-alpha.1", + "version": "2.0.0-alpha.2", "main": "dist/index.cjs", "module": "dist/production/index.js", "types": "dist/production/index.d.ts", diff --git a/packages/hydrogen/src/version.ts b/packages/hydrogen/src/version.ts index 8f6a0a9d0b..060b7680d7 100644 --- a/packages/hydrogen/src/version.ts +++ b/packages/hydrogen/src/version.ts @@ -1 +1 @@ -export const LIB_VERSION = '2.0.0-alpha.1'; +export const LIB_VERSION = '2.0.0-alpha.2'; diff --git a/packages/remix-oxygen/CHANGELOG.md b/packages/remix-oxygen/CHANGELOG.md index b7857450d1..4207c18aee 100644 --- a/packages/remix-oxygen/CHANGELOG.md +++ b/packages/remix-oxygen/CHANGELOG.md @@ -1,5 +1,11 @@ # @shopify/remix-oxygen +## 1.0.0-alpha.2 + +### Patch Changes + +- Remove the local `/__health` route because it's not required in Oxygen anymore. ([#361](https://github.com/Shopify/h2/pull/361)) by [@frandiox](https://github.com/frandiox) + ## 1.0.0-alpha.1 ### Patch Changes diff --git a/packages/remix-oxygen/package.json b/packages/remix-oxygen/package.json index 0c2bad9ebf..8bde447128 100644 --- a/packages/remix-oxygen/package.json +++ b/packages/remix-oxygen/package.json @@ -5,7 +5,7 @@ "@shopify:registry": "https://registry.npmjs.org" }, "type": "module", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "main": "dist/index.cjs", "module": "dist/production/index.js", "types": "dist/production/index.d.ts", diff --git a/templates/demo-store/package.json b/templates/demo-store/package.json index cdeb87f1c6..8da70b03e0 100644 --- a/templates/demo-store/package.json +++ b/templates/demo-store/package.json @@ -17,10 +17,10 @@ "@headlessui/react": "^1.7.2", "@remix-run/react": "0.0.0-experimental-e18af792a", "@shopify/cli": "^3.23.0", - "@shopify/cli-hydrogen": "^4.0.0-alpha.7", + "@shopify/cli-hydrogen": "^4.0.0-alpha.8", "@shopify/hydrogen-react": "^2022.10.3", - "@shopify/hydrogen": "^2.0.0-alpha.1", - "@shopify/remix-oxygen": "^1.0.0-alpha.1", + "@shopify/hydrogen": "^2.0.0-alpha.2", + "@shopify/remix-oxygen": "^1.0.0-alpha.2", "clsx": "^1.2.1", "concurrently": "^7.5.0", "cross-env": "^7.0.3", diff --git a/templates/hello-world/package.json b/templates/hello-world/package.json index a3708cd022..ccadd76cac 100644 --- a/templates/hello-world/package.json +++ b/templates/hello-world/package.json @@ -14,10 +14,10 @@ "dependencies": { "@remix-run/react": "0.0.0-experimental-e18af792a", "@shopify/cli": "^3.23.0", - "@shopify/cli-hydrogen": "^4.0.0-alpha.7", + "@shopify/cli-hydrogen": "^4.0.0-alpha.8", "@shopify/hydrogen-react": "^2022.10.3", - "@shopify/hydrogen": "^2.0.0-alpha.1", - "@shopify/remix-oxygen": "^1.0.0-alpha.1", + "@shopify/hydrogen": "^2.0.0-alpha.2", + "@shopify/remix-oxygen": "^1.0.0-alpha.2", "graphql": "^16.6.0", "graphql-tag": "^2.12.6", "react": "^18.2.0",