Skip to content

Commit bb76ac6

Browse files
committed
Prep for 2.19.0 release
1 parent 5b51812 commit bb76ac6

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2222
steps:
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
with:
25+
ref: 2.x
2426
- name: Set up JDK
2527
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2628
with:

.github/workflows/main.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
name: Build and Deploy Snapshot
22
on:
33
push:
4-
branches:
5-
- 3.x
6-
- "2.19"
4+
branches: [2.*]
75
paths-ignore:
86
- "README.md"
97
- "release-notes/*"
108
pull_request:
11-
branches:
12-
- 3.x
13-
- "2.19"
9+
branches: [2.*]
1410
paths-ignore:
1511
- "README.md"
1612
- "release-notes/*"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.fasterxml.jackson</groupId>
1010
<artifactId>jackson-base</artifactId>
11-
<version>2.19.0-SNAPSHOT</version>
11+
<version>2.19.0</version>
1212
</parent>
1313
<groupId>com.fasterxml.jackson.module</groupId>
1414
<artifactId>jackson-module-kotlin</artifactId>

release-notes/VERSION-2.x

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Co-maintainers:
1616
=== Releases ===
1717
------------------------------------------------------------------------
1818

19-
2.19.0 (not yet released)
19+
2.19.0 (24-Apr-2025)
2020

2121
#959: Extension functions has been added to simplify `configOverride` calls to `ObjectMapper` and `Module.SetupContext`.
2222
#954: Replaced `OptBoolean` of internal caching with a common implementation.
@@ -26,9 +26,6 @@ Co-maintainers:
2626
A `RuntimeJsonMappingException` will be thrown in case of inconsistency.
2727
This fixes a problem that broke `Kotlin` null safety by reading null as a value even if the type parameter was specified as non-null.
2828
It also checks for custom errors in ObjectMapper that cause a different value to be read than the specified type parameter.
29-
30-
2.19.0-rc2 (07-Apr-2025)
31-
3229
#929: Added consideration of `JsonProperty.isRequired` added in `2.19` in `hasRequiredMarker` processing.
3330
Previously `JsonProperty.required` was defined as `Boolean` with default `false`,
3431
so `KotlinModule` was forced to override it if the value was `false`.

0 commit comments

Comments
 (0)