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 2022/07/18 07:02:40 UTC

[orc] branch main updated: ORC-1216: Pin `org.jetbrains.annotations` dependency to 17.0.0

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 fa5b0602e ORC-1216: Pin `org.jetbrains.annotations` dependency to 17.0.0
fa5b0602e is described below

commit fa5b0602e70ebfbdd5369a041e2ca05b4dea9310
Author: William Hyun <wi...@apache.org>
AuthorDate: Mon Jul 18 00:02:29 2022 -0700

    ORC-1216: Pin `org.jetbrains.annotations` dependency to 17.0.0
    
    ### What changes were proposed in this pull request?
    This PR aims to pin `org.jetbrains.annotations` dependency to 17.0.0.
    
    ### Why are the changes needed?
    ORC only uses `NotNull`, so we do not need to upgrade the annotations dependency.
    
    - https://github.com/apache/orc/issues/1176
    
    ### How was this patch tested?
    Pass the CIs.
    
    Closes #1176
    
    Closes #1178 from williamhyun/jetbrainannotation.
    
    Authored-by: William Hyun <wi...@apache.org>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .github/dependabot.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index a0e902813..316de3f0c 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -45,3 +45,6 @@ updates:
       # Pin jodd-core to 3.5.2
       - dependency-name: "org.jodd:jodd-core"
         versions: "[3.5.3,)"
+      # Pin annotations to 17.0.0
+      - dependency-name: "org.jetbrains.annotations"
+        versions: "[17.0.1,)"