File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,10 @@ configuration files as if there was implied nesting structure (by default using
20
20
</properties >
21
21
22
22
<dependencies >
23
- <!-- for now let's consider databind somewhat optional... -->
23
+ <!-- starting with 2.10(.4 patch), not optional but fully required -->
24
24
<dependency >
25
25
<groupId >com.fasterxml.jackson.core</groupId >
26
26
<artifactId >jackson-databind</artifactId >
27
- <scope >provided</scope >
28
27
</dependency >
29
28
30
29
<!-- and for testing need annotations; but should be available via `jackson-databind` above -->
Original file line number Diff line number Diff line change @@ -93,3 +93,9 @@ Francisco Colmenares (fcolmenarez@github)
93
93
* Reported #179 (properties) : `JavaPropsMapper` doesn't close the .properties file
94
94
properly after reading
95
95
(2.10.4 )
96
+
97
+ Jason van Zyl (jvanzyl@github)
98
+ * Reported #184 (properties, yaml) : ` jackson-databind` should not be optional/provided dependency
99
+ for Properties, YAML modules
100
+ (2.10.4 )
101
+
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ Modules:
15
15
(reported by Francisco C)
16
16
#182 (yaml): Negative numbers not quoted correctly wrt `ALWAYS_QUOTE_NUMBERS_AS_STRINGS
17
17
(reported, contributed fix by dpdevin@github)
18
+ #184 (properties, yaml): ` jackson-databind` should not be optional/provided dependency
19
+ for Properties, YAML modules
20
+ (reported by Jason V-Z)
18
21
* (yaml) SnakeYAML 1.24 -> 1.26
19
22
20
23
2.10.3 (03-Mar-2020)
Original file line number Diff line number Diff line change 23
23
<dependency >
24
24
<groupId >com.fasterxml.jackson.core</groupId >
25
25
<artifactId >jackson-databind</artifactId >
26
- <!-- let's make it possible to avoid databind if only using streaming portion -->
27
- <scope >provided</scope >
26
+ <!-- starting with 2.10(.4 patch), not optional but fully required -->
28
27
</dependency >
29
28
30
29
<dependency >
You can’t perform that action at this time.
0 commit comments