You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2023/12/13 16:37:01 UTC

(atlas) branch branch-2.0 updated (f944f813a -> 2c920afb5)

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

madhan pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git


    from f944f813a ATLAS-4768: Implement aging for audits stored by Atlas.
     new cdb8a8324 Update entity.py remove_classification method
     new 2c920afb5 ATLAS-4815: publish Python client library with the fix from previous commit

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:
 intg/src/main/python/README.md                     | 2 +-
 intg/src/main/python/apache_atlas/client/entity.py | 2 +-
 intg/src/main/python/setup.py                      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


(atlas) 02/02: ATLAS-4815: publish Python client library with the fix from previous commit

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

madhan pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit 2c920afb5f4bc221e78399b1e8a163e3591864b1
Author: Madhan Neethiraj <ma...@apache.org>
AuthorDate: Fri Dec 1 15:17:44 2023 -0800

    ATLAS-4815: publish Python client library with the fix from previous commit
    
    (cherry picked from commit e86406906ebdf21056952f238478d2b5a9d48441)
---
 intg/src/main/python/README.md | 2 +-
 intg/src/main/python/setup.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/intg/src/main/python/README.md b/intg/src/main/python/README.md
index 140e6c329..a53a1e1bd 100644
--- a/intg/src/main/python/README.md
+++ b/intg/src/main/python/README.md
@@ -16,7 +16,7 @@ Verify if apache-atlas client is installed:
 
 Package      Version
 ------------ ---------
-apache-atlas 0.0.14
+apache-atlas 0.0.15
 ```
 
 ## Usage
diff --git a/intg/src/main/python/setup.py b/intg/src/main/python/setup.py
index daeaf6295..034b3fc75 100644
--- a/intg/src/main/python/setup.py
+++ b/intg/src/main/python/setup.py
@@ -28,7 +28,7 @@ with open("README.md", "r") as fh:
 
 setup(
     name='apache-atlas',
-    version='0.0.14',
+    version='0.0.15',
     author="Apache Atlas",
     author_email='dev@atlas.apache.org',
     description="Apache Atlas Python Client",


(atlas) 01/02: Update entity.py remove_classification method

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

madhan pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit cdb8a83240497e24d251265f2d5983df51abffe2
Author: JoaoDuque92 <30...@users.noreply.github.com>
AuthorDate: Mon Jun 19 18:36:56 2023 +0100

    Update entity.py remove_classification method
    
    There was a typo in the remove_classification method where it was written format instead of format
    
    (cherry picked from commit e1f1be8b7a61c8375cc2539934b35e8c02946ae2)
---
 intg/src/main/python/apache_atlas/client/entity.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/intg/src/main/python/apache_atlas/client/entity.py b/intg/src/main/python/apache_atlas/client/entity.py
index 14cb4ed60..d28dc41fe 100644
--- a/intg/src/main/python/apache_atlas/client/entity.py
+++ b/intg/src/main/python/apache_atlas/client/entity.py
@@ -244,7 +244,7 @@ class EntityClient:
     def remove_classification(self, entity_guid, classification_name, associated_entity_guid):
         query = {'guid': entity_guid, 'classification_name': classification_name}
 
-        self.client.call_api(EntityClient.DELETE_CLASSIFICATION.formart_path(query), None, None, associated_entity_guid)
+        self.client.call_api(EntityClient.DELETE_CLASSIFICATION.format_path(query), None, None, associated_entity_guid)
 
     def remove_classification_by_name(self, type_name, uniq_attributes, classification_name):
         query_params = attributes_to_params(uniq_attributes)