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 #1212

Merged
merged 1 commit into from
Aug 22, 2023
Merged

[ci] release 2023-07 #1212

merged 1 commit into from
Aug 22, 2023

Conversation

shopify-github-actions-access[bot]
Copy link
Contributor

@shopify-github-actions-access shopify-github-actions-access bot commented Aug 11, 2023

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to 2023-07, this PR will be updated.

Releases

@shopify/cli-hydrogen@5.2.0

Minor Changes

  • Support Remix Hot Module Replacement (HMR) and Hot Data Revalidation (HDR). (#1187) by @frandiox

    Start using it with the following changes to your project:

    1. Upgrade to the latest Hydrogen version and Remix 1.19.1.

    2. Enable the v2 dev server in remix.config.js:

    // ...
    future: {
    + v2_dev: true,
      v2_meta: true,
      v2_headers: true,
      // ...
    }
    1. Add Remix' <LiveReload /> component if you don't have it to your root.jsx or root.tsx file:
    import {
      Outlet,
      Scripts,
    + LiveReload,
      ScrollRestoration,
    } from '@remix-run/react';
    
    // ...
    
    export default function App() {
      // ...
    
      return (
        <html>
          <head>
           {/* ...  */}
          </head>
          <body>
            <Outlet />
            <ScrollRestoration />
            <Scripts />
    +       <LiveReload />
          </body>
        </html>
      );
    }
    
    export function ErrorBoundary() {
      // ...
    
      return (
        <html>
          <head>
            {/* ... */}
          </head>
          <body>
            Error!
            <Scripts />
    +       <LiveReload />
          </body>
        </html>
      );
    }

Patch Changes

  • Avoid development server crash on unhandled promise rejection. (#1244) by @frandiox

  • Fix build command when public directory is missing. (#1224) by @frandiox

  • Use nonce from CSP header in MiniOxygen's auto-reload script. (#1251) by @frandiox

  • Add default exported route to enable the error to be caught in the root.tsx ErrorBoundary (#1215) by @josh-sanger

  • Improve error handling when failing to get remote environment variables. (#1225) by @frandiox

  • Fix GraphQL Codegen throwing error related to Git on Windows. (#1253) by @frandiox

  • Add shouldRevalidate export to limit root loaders revalidation on mutations only (#1237) by @juanpprieto

  • Removed quantityAvailable field from skeleton PDP graphql query so that it works with default Storefront API permissions. (#1236) by @abecciu

  • Updated dependencies [e9e1736a, 1a0e858d]:

    • @shopify/hydrogen-react@2023.7.2

@shopify/create-hydrogen@4.2.2

Patch Changes

@shopify/hydrogen@2023.7.3

Patch Changes

@shopify/hydrogen-react@2023.7.2

Patch Changes

  • This change updates the implementation of the parseGid function so that it uses the builtin URL class to parse the gid. This enables the parts of the string, such as the search params, to be parsed as well (#1185) by @tatemz

  • Image component docs typo - Contributed by @MilosMosovsky (#1243) by @wizardlyhel

demo-store@2.1.0

Minor Changes

  • Support Remix Hot Module Replacement (HMR) and Hot Data Revalidation (HDR). (#1187) by @frandiox

    Start using it with the following changes to your project:

    1. Upgrade to the latest Hydrogen version and Remix 1.19.1.

    2. Enable the v2 dev server in remix.config.js:

    // ...
    future: {
    + v2_dev: true,
      v2_meta: true,
      v2_headers: true,
      // ...
    }
    1. Add Remix' <LiveReload /> component if you don't have it to your root.jsx or root.tsx file:
    import {
      Outlet,
      Scripts,
    + LiveReload,
      ScrollRestoration,
    } from '@remix-run/react';
    
    // ...
    
    export default function App() {
      // ...
    
      return (
        <html>
          <head>
           {/* ...  */}
          </head>
          <body>
            <Outlet />
            <ScrollRestoration />
            <Scripts />
    +       <LiveReload />
          </body>
        </html>
      );
    }
    
    export function ErrorBoundary() {
      // ...
    
      return (
        <html>
          <head>
            {/* ... */}
          </head>
          <body>
            Error!
            <Scripts />
    +       <LiveReload />
          </body>
        </html>
      );
    }

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/2023-07 branch 13 times, most recently from fccad90 to 603d0aa Compare August 18, 2023 08:05
@github-actions github-actions bot force-pushed the changeset-release/2023-07 branch 7 times, most recently from 7296b89 to 152edc1 Compare August 22, 2023 00:10
@frandiox frandiox merged commit 6e76f95 into 2023-07 Aug 22, 2023
1 check passed
@frandiox frandiox deleted the changeset-release/2023-07 branch August 22, 2023 01:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant