Replies: 1 comment
-
Please have a look at this comment regarding semantic versioning in the Live Update plugin.
If you use Versioned Channels, then there is no reason to release a bundle as a live update that is already included in the native version. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, no
versionName
is assigned to bundles, which creates an issue, as it’s not possible to easily identify bundles uploaded to the Cloud without an assigned version.Additionally, there's a problematic scenario due to the lack of
versionName
validation. For instance, version 2.3.0 might be available both in the store and as a live update. This could lead to a user installing version 2.3.0 from the store and then unnecessarily downloading the same version from the live update.The ideal solution would be to enable the plugin to accept semver and implement the necessary validations for downloading updates.
For example, a new live update should only be downloaded and activated via the
sync
method or manually through thedownloadBundle
method if its version is greater than the current binary version.Beta Was this translation helpful? Give feedback.
All reactions