Skip to content

Commit 640880e

Browse files
committed
ORC-1626: Upgrade Mockito to 5.10 and byte-buddy to 1.14.11
### What changes were proposed in this pull request? This PR aims to unpin and upgrade - Mockito from 4.11.0 to 5.10.0 - byte-buddy from 1.12.23 to 1.14.11 ### Why are the changes needed? To bring the latest bug fixes and improvement in test framework for Apache ORC 2.0.0. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #1810 from dongjoon-hyun/ORC-1626. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]> (cherry picked from commit 30deaad) Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent ad3e833 commit 640880e

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/dependabot.yml

-6
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,3 @@ updates:
3232
# Pin annotations to 17.0.0
3333
- dependency-name: "org.jetbrains.annotations"
3434
versions: "[17.0.1,)"
35-
# Pin mockito to 4.x
36-
- dependency-name: "org.mockito"
37-
versions: "[5.0.0,)"
38-
# Pin byte-buddy to 1.12.x aline with mockito
39-
- dependency-name: "net.bytebuddy"
40-
versions: "[1.13.0,)"

java/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<maven.compiler.useIncrementalCompilation>false</maven.compiler.useIncrementalCompilation>
7575
<maven.version>3.9.6</maven.version>
7676

77-
<mockito.version>4.11.0</mockito.version>
77+
<mockito.version>5.10.0</mockito.version>
7878
<orc-format.version>1.0.0</orc-format.version>
7979
<!-- Build Properties -->
8080
<project.build.outputTimestamp>2023-05-15T16:29:49Z</project.build.outputTimestamp>
@@ -256,13 +256,13 @@
256256
<dependency>
257257
<groupId>net.bytebuddy</groupId>
258258
<artifactId>byte-buddy</artifactId>
259-
<version>1.12.23</version>
259+
<version>1.14.11</version>
260260
<scope>test</scope>
261261
</dependency>
262262
<dependency>
263263
<groupId>net.bytebuddy</groupId>
264264
<artifactId>byte-buddy-agent</artifactId>
265-
<version>1.12.23</version>
265+
<version>1.14.11</version>
266266
<scope>test</scope>
267267
</dependency>
268268
<dependency>

0 commit comments

Comments
 (0)