Skip to content

Commit 508c32b

Browse files
committed
Merge branch '2.x' into 3.x
2 parents 7f51ab0 + a0521f7 commit 508c32b

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
build:
1313
# Do we want wide matrix build? For now, limited
14-
runs-on: 'ubuntu-22.04'
14+
runs-on: ubuntu-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -20,8 +20,10 @@ jobs:
2020
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2121
steps:
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
with:
24+
ref: 2.x
2325
- name: Set up JDK
24-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
26+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2527
with:
2628
distribution: 'temurin'
2729
java-version: ${{ matrix.java_version }}

.github/workflows/dep_build_v3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
ref: 3.x
2525
- name: Set up JDK
26-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
26+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
2727
with:
2828
distribution: 'temurin'
2929
java-version: ${{ matrix.java_version }}

.github/workflows/main.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
name: Build and Deploy Snapshot
22
on:
33
push:
4-
branches:
5-
- 3.x
4+
branches: [3.*]
65
paths-ignore:
76
- "README.md"
87
- "release-notes/*"
98
pull_request:
10-
branches:
11-
- 3.x
9+
branches: [3.*]
1210
paths-ignore:
1311
- "README.md"
1412
- "release-notes/*"
@@ -17,7 +15,7 @@ permissions:
1715

1816
jobs:
1917
build:
20-
runs-on: 'ubuntu-22.04'
18+
runs-on: 'ubuntu-24.04'
2119
strategy:
2220
fail-fast: false
2321
matrix:
@@ -30,7 +28,7 @@ jobs:
3028
steps:
3129
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3230
- name: Set up JDK
33-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
31+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
3432
with:
3533
distribution: 'temurin'
3634
java-version: ${{ matrix.java_version }}
@@ -58,7 +56,7 @@ jobs:
5856
run: ./mvnw -B -q -ff -ntp test
5957
- name: Publish code coverage
6058
if: ${{ matrix.release_build && github.event_name != 'pull_request' }}
61-
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
59+
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
6260
with:
6361
token: ${{ secrets.CODECOV_TOKEN }}
6462
files: ./target/site/jacoco/jacoco.xml

release-notes/VERSION-2.x

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ Active maintainers:
1414
=== Releases ===
1515
------------------------------------------------------------------------
1616

17-
#571: Unable to deserialize a pojo with IonStruct
18-
(reported, fix contributed by Josh C)
17+
2.20.0 (not yet released)
18+
19+
-
1920

20-
2.19.0-rc2 (07-Apr-2025)
21+
2.19.0 (24-Apr-2025)
2122

2223
#300: (smile) Floats are encoded with sign extension while doubles without
2324
(reported by Steven F)
@@ -39,6 +40,8 @@ Active maintainers:
3940
(contributed by Joo-Hyuk K)
4041
#568: Improve ASCII decoding performance for `CBORParser`
4142
(contributed by Manuel S)
43+
#571: Unable to deserialize a pojo with IonStruct
44+
(reported, fix contributed by Josh C)
4245

4346
2.18.4 (not yet released)
4447

0 commit comments

Comments
 (0)