Skip to content

Commit 7140030

Browse files
pditommasoclaude
andcommitted
Revert "Bump io.netty@4.1.129.Final"
Netty 4.1.129 tightened URI validation causing Azure blob storage requests to fail with "The URI contain illegal characters" error. This breaks the Azure NIO filesystem when listing blobs during task output collection. See spring-projects/spring-boot#48505 This reverts commit d281dca. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
1 parent 0b97f4a commit 7140030

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

plugins/nf-amazon/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ dependencies {
7676
}
7777

7878
// address security vulnerabilities
79-
implementation 'io.netty:netty-common:4.1.129.Final'
80-
implementation 'io.netty:netty-handler:4.1.129.Final'
81-
implementation 'io.netty:netty-codec-http2:4.1.129.Final'
79+
implementation 'io.netty:netty-common:4.1.125.Final'
80+
implementation 'io.netty:netty-handler:4.1.125.Final'
81+
implementation 'io.netty:netty-codec-http2:4.1.125.Final'
8282

8383
testImplementation(testFixtures(project(":nextflow")))
8484
testImplementation project(':nextflow')

plugins/nf-azure/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ dependencies {
6565
}
6666

6767
// address security vulnerabilities
68-
implementation 'io.netty:netty-handler:4.1.129.Final'
69-
implementation 'io.netty:netty-codec-http2:4.1.129.Final'
68+
implementation 'io.netty:netty-handler:4.1.125.Final'
69+
implementation 'io.netty:netty-codec-http2:4.1.125.Final'
7070
implementation 'net.minidev:json-smart:2.5.2'
7171

7272
testImplementation(testFixtures(project(":nextflow")))

0 commit comments

Comments
 (0)