-
-
Notifications
You must be signed in to change notification settings - Fork 155
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
Migrations triggered at first store setup, causing undefined behaviors #256
Comments
Sorry to hear you're having problems with the migration feature. However, the migration feature was not added by me. It was added by an external contributor. I don't use the feature and I also cannot provide support for it. |
Thanks for your answer @sindresorhus, do you know the github account of this contributor, such that we can contact him ? |
I don't remember. You can search for the Pull Request. |
/*
Hack to make sure the store is always up to date at first init,
default behavior of electron-store being to consider the store in version '0.0.0' by default
*/
defaults: {
__internal__: {
migrations: {
version: app.getVersion(), // Our current version, e.g., '1.0.0'
},
},
} @lsarrazi thank you so much for this workaround, I was already going insane because of a bug report of some users who said my app would not launch on initial installation. After 4 hours of digging I found the Can confirm that this workaround fixes the problem for anyone encountering the same |
Introduction
Our company relies on
electron-store
as the primary database for our software. However, we have encountered issues related to undefined behaviors during the initial store setup. We would greatly appreciate any help on this topic 🙏Our current configuration:
Assumptions and Background
When a migration is defined in electron-store, it is generally assumed that the store's state matches a version that is strictly less than the version specified in the migration. For instance:
This assumption ensures that migrations can be applied sequentially to upgrade to a target version.
Problem Description
The current implementation initializes the store's version as "0.0.0" (hardcoded) upon its first initialization. However, the store is actually initialized with the default values of the latest version (e.g., 1.0.0), which contradicts the assumption that the store should be given to the migration in a version strictly less than 1.0.0. This discrepancy leads to undefined behaviors and potential issues.
Analysis and Proposed Solutions
We found a workaround to ensure that the store is always considered up to date during its first initialization by modifying the default values:
Another possible solution is to replace the hardcoded 0.0.0 version in the
conf
package source code withoptions.projectVersion
. This could potentially yield a similar result without modifying the default values.We could not find any alternative method for setting the default version for migrations using the electron-store API.
Questions
Feel free to answer some of our questions if possible:
options.projectVersion
instead of the hardcoded "0.0.0" version in the conf package source code, or do you have alternative recommendations?The text was updated successfully, but these errors were encountered: