More lenient PluginLoader Version checks during pre-release #2462
Comments
bernd
added a commit
that referenced
this issue
Jul 27, 2016
Use the normal version without pre-release and build suffixes to compare against the other when this a pre-release version. Makes plugin loading work in a 2.1.0-beta.1 server where the plugin requires 2.1.0. Fixes #2462
joschi
added a commit
that referenced
this issue
Jul 28, 2016
Use the normal version without pre-release and build suffixes to compare against the other when this a pre-release version. Makes plugin loading work in a 2.1.0-beta.1 server where the plugin requires 2.1.0. Fixes #2462
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The plugin loading mechanism is currently very strict about plugins' required server versions.
During pre-release this creates unnecessary work updating plugin metadata all the time, because we cannot simply leave them on the next release version (e.g. server is
2.1.0-alpha.2-SNAPSHOT
but plugins require2.1.0
).As long as the server is strict when it is not in a pre-release version itself, I cannot see any immediate problems this would cause.
Essentially the server should do the following:
greaterThanOrEqualTo
)Does anyone see any problems with this approch?
The text was updated successfully, but these errors were encountered: