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
If plugins in Nextflow are defined without a version number (like below), then the latest version will be downloaded and used on each pipeline run. These are loaded from a JSON file maintained on https://github.com/nextflow-io/plugins/
plugins {
id 'nf-validation'
}
This may lead to issues if there are breaking changes to new versions of a plugin.
Recommendation
On release of pipelines, all plugins should be fixed to specific versions:
Problem
If plugins in Nextflow are defined without a version number (like below), then the latest version will be downloaded and used on each pipeline run. These are loaded from a JSON file maintained on https://github.com/nextflow-io/plugins/
This may lead to issues if there are breaking changes to new versions of a plugin.
Recommendation
On release of pipelines, all plugins should be fixed to specific versions:
That way, fixed versions of plugins will always be used.
The text was updated successfully, but these errors were encountered: