forked from nextflow-io/nextflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'nextflow-io:master' into master
- Loading branch information
Showing
25 changed files
with
185 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
24.07.0-edge | ||
24.08.0-edge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,30 @@ | ||
NEXTFLOW CHANGE-LOG | ||
=================== | ||
24.08.0-edge - 4 Sep 2024 | ||
- Add Google Batch warning when for conflicting disk image config (#5279) [96cb57cb] | ||
- Add support for Google Batch used specified boot images (#5268) [0aaa6482] | ||
- Disable AWS spot retry (#5215) [f28fcb25] | ||
- Disable Google Batch automatic spot retries (#5223) [aad21533] | ||
- Disable automatic detection of virtual threads (#5270) [b3ba2c2d] | ||
- Fix missing .command.env when eval is used and task runs on a cloud env [4a6b54aa] | ||
- Fix job array syntax for PBS/Torque executor (#5281) [d59f5fae] | ||
- Fix k8s client status cond is possible null in podState (#5264) [46672415] | ||
- Fix non-determinist behaviour of join operator with bag array as key (#5189) [e7dc0d69] | ||
- Fix stage retry on corrupted HTTP downloads (#5275) [bf0cd326] | ||
- Support Azure Managed Identities in Fusion configuration logic (#5278) [a0bf8b40] | ||
- Use public.cr.seqera.io in place of AWS ECR [5a01f277] | ||
- Wave client logs improvement [5a37e617] | ||
- Bump amazoncorretto:21-al2023 [59aed581] | ||
- Bump [email protected] [97c4e08f] | ||
- Bump [email protected] [24133f2a] | ||
- Bump [email protected] [29f49ba7] | ||
- Bump [email protected] [bbc3adca] | ||
|
||
24.07.0-edge - 8 Aug 2024 | ||
- Add runtime error for missing channel factory (#5170) [1f9210ab] | ||
- Apply k8s.cpuLimits to kuberun driver pod (#5160) [4300adf1] | ||
- Await build completion for all Wave containers [2b8117e9] | ||
- Deprecate module addParams() and params() (#5200) [ci fast] [82c97f8c] | ||
- Deprecate module addParams() and params() (#5200) [82c97f8c] | ||
- Remove capsule launcher dependencies (#3395) [f15e4246] | ||
- Fix AWS Cloudwatch access when using custom log group name [30195838] | ||
- Fix Invalid AWS Fargate CPUs usage error reporting [d9c50e59] | ||
|
@@ -61,7 +81,7 @@ NEXTFLOW CHANGE-LOG | |
- Bump jgit 6.10.0 [4cf6b9f7] | ||
|
||
24.04.3 - 9 Jul 2024 | ||
- Add ability to override failOnError setting default via env variable (#5117) [ci fast] [6852429c] | ||
- Add ability to override failOnError setting default via env variable (#5117) [6852429c] | ||
- Fix normalization of consecutive slashes in uri path (#5114) [3f366b7e] | ||
- Fix executions hangs on finalisation exception (#5070) [4c207c23] | ||
- Bump [email protected] [55ec5ec5] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
modules/nextflow/src/main/resources/META-INF/build-info.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
build=5921 | ||
version=24.07.0-edge | ||
timestamp=1722884291592 | ||
commitId=e8d643c2f | ||
build=5922 | ||
version=24.08.0-edge | ||
timestamp=1725461287713 | ||
commitId=97c4e08f3 |
8 changes: 4 additions & 4 deletions
8
modules/nextflow/src/main/resources/META-INF/plugins-info.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
nf-amazon@2.7.0 | ||
nf-azure@1.8.1 | ||
nf-amazon@2.8.0 | ||
nf-azure@1.9.0 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
nf-google@1.14.0 | ||
nf-google@1.15.0 | ||
[email protected] | ||
[email protected].0 | ||
[email protected].1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,9 @@ import nextflow.Channel | |
import nextflow.Global | ||
import nextflow.Session | ||
import nextflow.exception.AbortOperationException | ||
import nextflow.util.ArrayBag | ||
import spock.lang.Specification | ||
|
||
/** | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
|
@@ -207,6 +209,35 @@ class JoinOpTest extends Specification { | |
|
||
} | ||
|
||
def 'should be able to use identical ArrayBags join key' () { | ||
given: | ||
def key1 = new ArrayBag(["key"]) | ||
def key2 = new ArrayBag(["key"]) | ||
def ch1 = Channel.of([key1, "foo"]) | ||
def ch2 = Channel.of([key2, "bar"]) | ||
|
||
when: | ||
def op = new JoinOp(ch1 as DataflowReadChannel, ch2 as DataflowReadChannel) | ||
List result = op.apply().toList().getVal() | ||
|
||
then: | ||
!result.isEmpty() | ||
} | ||
|
||
def 'should differentiate nonidentical ArrayBags join key' () { | ||
given: | ||
def key1 = new ArrayBag(["key", "key", "quay"]) | ||
def key2 = new ArrayBag(["quay", "quay", "key"]) | ||
def ch1 = Channel.of([key1, "foo"]) | ||
def ch2 = Channel.of([key2, "bar"]) | ||
|
||
when: | ||
def op = new JoinOp(ch1 as DataflowReadChannel, ch2 as DataflowReadChannel) | ||
List result = op.apply().toList().getVal() | ||
|
||
then: | ||
result.isEmpty() | ||
} | ||
|
||
def 'should not fail on mismatches' () { | ||
given: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
de590cf568c61fa941e4013d7f407902 | ||
09e28262a4fc4ebc1ffbccbe9ab7678d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3cc9902cd2713262f5fb29d652b749ef5676b3ed | ||
52be33b40ba95be215f2927a5fc6975ec475fbee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
19515441f324cd32e272352b056d800293b639e1bfcc455257b4192115029831 | ||
dc03db53bd7c3692c2e76af34fb850cbbbb9f15ee3d2b3c7c4dcd79559880144 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Manifest-Version: 1.0 | ||
Plugin-Class: nextflow.cloud.aws.AmazonPlugin | ||
Plugin-Id: nf-amazon | ||
Plugin-Version: 2.7.0 | ||
Plugin-Version: 2.8.0 | ||
Plugin-Provider: Seqera Labs | ||
Plugin-Requires: >=24.04.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Manifest-Version: 1.0 | ||
Plugin-Class: nextflow.cloud.azure.AzurePlugin | ||
Plugin-Id: nf-azure | ||
Plugin-Version: 1.8.1 | ||
Plugin-Version: 1.9.0 | ||
Plugin-Provider: Seqera Labs | ||
Plugin-Requires: >=24.04.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.