Skip to content

Commit 414e149

Browse files
committed
Merge branch '2.19' into 3.x
2 parents 3fade5c + ddc98a3 commit 414e149

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,16 @@ all of which are built from this repository, and accessed and used as separate J
2424

2525
Jackson 3.0 changes things as it requires Java 8 to work and can thereby directly supported features.
2626

27-
Because of this `parameter-names` and `datatypes` modules are merged into `jackson-databind`
28-
and need not be registered; `datetime` module (`JavaTimeModule`) remains separate module due to its size
29-
and configurability options.
30-
31-
So you will only need to separately add "Java 8 Date/time" module (see above for description)
27+
Because of this, all 3 modules are merged into `jackson-databind`
28+
and need not be registered (as of Jacksson `3.0.0-rc3`)
3229

3330
## License
3431

3532
All modules are licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt).
3633

3734
## Status
3835

39-
[![Build Status](https://travis-ci.org/FasterXML/jackson-modules-java8.svg)](https://travis-ci.org/FasterXML/jackson-modules-java8)
36+
[![Build status (github)](https://github.com/FasterXML/jackson-databind/actions/workflows/main.yml/badge.svg)](https://github.com/FasterXML/jackson-databind/actions/workflows/main.yml)
4037
[![Tidelift](https://tidelift.com/badges/package/maven/com.fasterxml.jackson.datatype:jackson-datatype-jsr310)](https://tidelift.com/subscription/pkg/maven-com-fasterxml-jackson-datatype-jackson-datatype-jsr310?utm_source=maven-com-fasterxml-jackson-datatype-jackson-datatype-jsr310&utm_medium=referral&utm_campaign=readme)
4138

4239
## Usage
@@ -46,19 +43,19 @@ All modules are licensed under [Apache License 2.0](http://www.apache.org/licens
4643
To include modules, you use some or all of:
4744

4845
```xml
49-
<!-- Parameter names -->
46+
<!-- parameter names -->
5047
<dependency>
5148
<groupId>com.fasterxml.jackson.module</groupId>
5249
<artifactId>jackson-module-parameter-names</artifactId>
5350
</dependency>
5451

55-
<!-- Java 8 Date/time -->
52+
<!-- Java 8 Date/time -->
5653
<dependency>
5754
<groupId>com.fasterxml.jackson.datatype</groupId>
5855
<artifactId>jackson-datatype-jsr310</artifactId>
5956
</dependency>
6057

61-
<!-- Java 8 Datatypes -->
58+
<!-- Java 8 Datatypes -->
6259
<dependency>
6360
<groupId>com.fasterxml.jackson.datatype</groupId>
6461
<artifactId>jackson-datatype-jdk8</artifactId>

release-notes/VERSION-2.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Modules:
88
=== Releases ===
99
------------------------------------------------------------------------
1010

11-
2.19.0 (not yet released)
11+
2.19.0-rc2 (07-Apr-2025)
1212

1313
#336: Optimize `InstantDeserializer` `addInColonToOffsetIfMissing()`
1414
(contributed by David S)

0 commit comments

Comments
 (0)