File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ New features:
11
11
** NOTE: Experimental features may receive breaking changes without a major
12
12
version increase.
13
13
14
+ Fixes:
15
+
16
+ * Excluded CVE-2025-27820 vulnerable versions of Apache httpclient5 from
17
+ dependency resolution. Note that this might only affect consumers using Gradle
18
+ module metadata.
19
+
14
20
15
21
== Version 2.6.0 ==
16
22
Original file line number Diff line number Diff line change @@ -16,7 +16,10 @@ dependencyResolutionManagement {
16
16
create(" constraintLibs" ) {
17
17
library(" cbor" , " com.upokecenter:cbor:[4.5.1,5)" )
18
18
library(" guava" , " com.google.guava:guava:[24.1.1,33)" )
19
- library(" httpclient5" , " org.apache.httpcomponents.client5:httpclient5:[5.0.0,6)" )
19
+ library(" httpclient5" , " org.apache.httpcomponents.client5" , " httpclient5" ).version {
20
+ strictly(" [5.0.0,6)" )
21
+ reject(" [5.4-alpha1,5.4.3)" )
22
+ }
20
23
library(" slf4j" , " org.slf4j:slf4j-api:[1.7.25,3)" )
21
24
22
25
val jacksonVer = version(" jackson" , " [2.13.2.1,3)" )
You can’t perform that action at this time.
0 commit comments