Releases: Shopify/shopify-app-js
Releases · Shopify/shopify-app-js
@shopify/[email protected]
Patch Changes
- 8fbff4d: Updated
mysql2
dependencies
@shopify/[email protected]
Minor Changes
- 34fc75d: Add Shop context to logging
Patch Changes
- 6681802: Updated
isbot
dependencies - Updated dependencies [6b71f39]
- Updated dependencies [6681802]
- Updated dependencies [dc6b8ad]
- @shopify/[email protected]
- @shopify/[email protected]
@shopify/[email protected]
Patch Changes
- 6b71f39: Updated
express
dependencies - Updated dependencies [6b71f39]
- Updated dependencies [6681802]
- Updated dependencies [dc6b8ad]
- @shopify/[email protected]
- @shopify/[email protected]
- @shopify/[email protected]
@shopify/[email protected]
@shopify/[email protected]
@shopify/[email protected]
Patch Changes
- 62b533e: Revert shop logging
@shopify/[email protected]
@shopify/[email protected]
@shopify/[email protected]
@shopify/[email protected]
Minor Changes
-
69b6d14: Adds
isReady
method toPrismaSessionStorage
.isReady
will poll based on the configuration or until the table is found to exist. If the table is not found within the timeout, it will returnfalse
.isReady
will update the internal state of thePrismaSessionStorage
instance to reflect whether the session table exists and can be used. In case of an unexpected disconnect, useisReady
to check if the table has recovered.Example usage on a Remix app:
import {sessionStorage} from '../shopify.server'; // ... if (await sessionStorage.isReady()) { // ... }
An equivalent method will soon be available on the
SessionStorage
interface and all other session storage implementations.