You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, running bin/logstash-plugin update will update plugins to the latest version possible, regardless of whether a major version has changed in the plugin.
This may cause issues, and cause the plugin manager to install a version of the plugin which is incompatible with the associated version of Logstash.
The default behavior for plugin updates should be to attempt to install the latest version in the same minor rather than the absolute latest version, but allow that update to be made if required.
The text was updated successfully, but these errors were encountered:
This is the changeset needed to affect the update command.
But it's necessary to:
a) Introduce a new parameter to the update command such as :constraint, that defaults to "minor", but can also be "patch" or "major".
b) Understand how it behaves with the existing conservative parameter
Currently, running
bin/logstash-plugin update
will update plugins to the latest version possible, regardless of whether amajor
version has changed in the plugin.This may cause issues, and cause the plugin manager to install a version of the plugin which is incompatible with the associated version of Logstash.
The default behavior for plugin updates should be to attempt to install the latest version in the same
minor
rather than the absolute latest version, but allow that update to be made if required.The text was updated successfully, but these errors were encountered: