You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by gr...@apache.org on 2020/01/09 20:04:34 UTC

[kudu] branch master updated (4dca6b0 -> 58b6a41)

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

granthenke pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git.


    from 4dca6b0  file cache: unify across file types
     new bc013df  [build] Fix IWYU dependencies
     new 58b6a41  [docs] Add python deprecation to the release notes

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt          | 2 +-
 docs/release_notes.adoc | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)


[kudu] 01/02: [build] Fix IWYU dependencies

Posted by gr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

granthenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit bc013dfb65128943b9a49473d9d7b969d949a09b
Author: Grant Henke <gr...@apache.org>
AuthorDate: Thu Jan 9 10:15:52 2020 -0800

    [build] Fix IWYU dependencies
    
    IWYU is failing with a missing `version_defines.h`. This patch
    fixes the dependency chain by adding `gen_version_info`
    to the generated-headers target. This ensures it’s run
    for the iwyu and tidy targets.
    
    Change-Id: I2521a1d54b695971afbe445729e746beeb5db595
    Reviewed-on: http://gerrit.cloudera.org:8080/14995
    Reviewed-by: Alexey Serbin <as...@cloudera.com>
    Tested-by: Kudu Jenkins
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 07bf648..0b355c1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1377,7 +1377,7 @@ endif (UNIX)
 ############################################################
 if (UNIX)
   add_custom_target(generated-headers
-    DEPENDS pb-gen krpc-gen hms_thrift sentry_thrift)
+    DEPENDS pb-gen krpc-gen hms_thrift sentry_thrift gen_version_info)
 endif (UNIX)
 
 ############################################################


[kudu] 02/02: [docs] Add python deprecation to the release notes

Posted by gr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

granthenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit 58b6a4150e86d653d30f548019bf8541d9fbdc78
Author: Grant Henke <gr...@apache.org>
AuthorDate: Thu Jan 9 11:26:19 2020 -0800

    [docs] Add python deprecation to the release notes
    
    Add a python deprecation note to the release notes to ensure, at a
    minimum, the next release warns about the deprecation.
    
    I chose to deprecate all of Python 2 given the last branch (2.7)
    is end-of-life. I also deprecated python 3.4 and earlier because
    those braches are also end-of-life.
    https://devguide.python.org/devcycle/#end-of-life-branches
    
    Looking forward Python 3.5 will recieve security fixes until
    2020-09-13.
    https://devguide.python.org/#status-of-python-branches
    
    Change-Id: I3265dc964c5b7040684965d0038aac19684f6168
    Reviewed-on: http://gerrit.cloudera.org:8080/14996
    Reviewed-by: Adar Dembo <ad...@cloudera.com>
    Tested-by: Grant Henke <gr...@apache.org>
---
 docs/release_notes.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/release_notes.adoc b/docs/release_notes.adoc
index 0190126..a9bda15 100644
--- a/docs/release_notes.adoc
+++ b/docs/release_notes.adoc
@@ -39,6 +39,7 @@
 [[rn_1.12.0_deprecations]]
 == Deprecations
 
+Support for Python 2.x and Python 3.4 and earlier is deprecated and may be removed in the next minor release.
 
 [[rn_1.12.0_new_features]]
 == New features