You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2023/01/17 00:36:35 UTC

[orc] branch main updated: ORC-1360: Pin `mockito` to 4.x (#1383)

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/main by this push:
     new 07e049b03 ORC-1360: Pin `mockito` to 4.x (#1383)
07e049b03 is described below

commit 07e049b03190554350c7e58e535d23c2f1064cf0
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Mon Jan 16 16:36:31 2023 -0800

    ORC-1360: Pin `mockito` to 4.x (#1383)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to pin `Mockito` to 4.x.
    
    ### Why are the changes needed?
    
    5.x is a major version change which is incompatible. We can revisit this later.
    
    ### How was this patch tested?
    
    Closes #1381
---
 .github/dependabot.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index c0383bef3..be044cfcd 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -48,3 +48,6 @@ updates:
       # Pin annotations to 17.0.0
       - dependency-name: "org.jetbrains.annotations"
         versions: "[17.0.1,)"
+      # Pin mockito to 4.x
+      - dependency-name: "org.mockito"
+        versions: "[5.0.0,)"