Skip to content
Compare
Choose a tag to compare
@shopify-github-actions-access shopify-github-actions-access released this 30 May 20:40
· 1380 commits to main since this release
a5a532e

Major Changes

  • 9ae62fc: Remove v3_authenticate_public future flag and enable functionality be default.

    See more details in the migration guide.

  • 7179ef9: Remove v3_lineItemBilling future flag and enable functionality be default.

    See more details in the migration guide.

  • 6970109: Drop support for Node 16.

  • b1e6ff0: Remove v3_webhookAdminContext future flag and enable functionality.

    See more details in the migration guide.

  • f346f03: Apps can no longer import server-side functions using the following statements:

    import '@shopify/shopify-app-remix/adapters/node';
    + import {shopifyApp} from '@shopify/shopify-app-remix';

    With the addition of React component to this package, we've separated the exports between server and react code, as in:

    import '@shopify/shopify-app-remix/server/adapters/node';
    + import {shopifyApp} from '@shopify/shopify-app-remix/server';
    - import {shopifyApp} from '@shopify/shopify-app-remix';
    import {AppProvider} from '@shopify/shopify-app-remix/react';

    See more details in the migration guide.

Minor Changes

  • a810211: Add API to Authenticate requests from customer account extensions
  • 36e3c62: Add support for Node 22.
  • 8475ae7: Made it possible to create types for the context objects returned by the various authenticate methods from the actual shopifyApp object. With this, apps can pass the contexts and their components as function arguments much more easily.

Patch Changes