File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3
3
Changes:
4
4
5
5
* Dropped dependency on COSE-Java.
6
+ * Excluded Jackson version 2.17.0-rc1 from dependency resolution due to an
7
+ incompatible regression.
6
8
7
9
8
10
== Version 2.5.0 ==
Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ dependencyResolutionManagement {
19
19
library(" httpclient5" , " org.apache.httpcomponents.client5:httpclient5:[5.0.0,6)" )
20
20
library(" slf4j" , " org.slf4j:slf4j-api:[1.7.25,3)" )
21
21
22
- val jacksonVer = version(" jackson" , " [2.13.2.1,3)" )
22
+ val jacksonVer = version(" jackson" ) {
23
+ require(" [2.13.2.1,3)" )
24
+ reject(" 2.17.0-rc1" ) // Regression: https://github.com/FasterXML/jackson-databind/issues/4413
25
+ }
23
26
library(" jackson-bom" , " com.fasterxml.jackson" , " jackson-bom" ).versionRef(jacksonVer)
24
27
library(" jackson-databind" , " com.fasterxml.jackson.core" , " jackson-databind" ).versionRef(jacksonVer)
25
28
library(" jackson-dataformat-cbor" , " com.fasterxml.jackson.dataformat" , " jackson-dataformat-cbor" ).versionRef(jacksonVer)
You can’t perform that action at this time.
0 commit comments