Conversation
Coverage report
Test suite run success3796 tests passing in 1449 suites. Report generated by 🧪jest coverage report action from 99be1aa |
3573760 to
fc77660
Compare
|
/snapit |
This comment was marked as outdated.
This comment was marked as outdated.
721358e to
7e7ca2a
Compare
7e7ca2a to
99be1aa
Compare
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/private/node/conf-store.d.ts@@ -21,6 +21,8 @@ interface Cache {
export interface ConfSchema {
sessionStore: string;
currentSessionId?: string;
+ devSessionStore?: string;
+ currentDevSessionId?: string;
cache?: Cache;
}
/**
|
|
/snapit |
|
🫰✨ Thanks @gonzaloriestra! Your snapshot has been published to npm. Test the snapshot by installing your package globally: npm i -g --@shopify:registry=https://registry.npmjs.org @shopify/cli@0.0.0-snapshot-20260304092735Caution After installing, validate the version by running |
|
We detected some changes at Caution DO NOT create changesets for features which you do not wish to be included in the public changelog of the next CLI release. |
|
🤖 Code Review · #projects-dev-ai for questions ✅ Complete - 1 findings 📋 History✅ 1 findings |
Merge activity
|
WHY are these changes introduced?
In #5914 we added support for multiple sessions, but if you switch between environments (production/development), the sessions get overwritten, so you have to log in again.
WHAT is this pull request doing?
When running the CLI against the local environment, save the sessions in different store fields.
How to test your changes?
npm i -g --@shopify:registry=https://registry.npmjs.org @shopify/cli@0.0.0-snapshot-20260304092735shopify auth logoutshopify app versions listSHOPIFY_SERVICE_ENV=local shopify app versions listshopify app versions listSHOPIFY_SERVICE_ENV=local shopify app versions listIt should only start the login flow once per environment.
Measuring impact
How do we know this change was effective? Please choose one:
Checklist