From 1af0d22ce56b44aec13ce70dcfca5eb2c3a408d5 Mon Sep 17 00:00:00 2001 From: Luciano Resende Date: Tue, 14 Jan 2020 08:23:45 -0800 Subject: [PATCH] Release 1.0.2 Fixes #79 --- README.md | 15 +++++++++++---- yarn_api_client/__init__.py | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 990cdb9..d9a37ba 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,13 @@ app_information = am.application_information('application_id') ### Changelog +1.0.2 Release + - Add support for Python 3.8.x + - Fix HTTPS url parsing + - Fix JSON body request APIs + - Handle YARN response with empty contents + - Better logging support + 1.0.1 Release - Passes the authorization instance to the Active RM check - Establishes a new (working) documentation site in readthedocs.io: yarn-api-client-python.readthedocs.io @@ -93,9 +100,9 @@ app_information = am.application_information('application_id') 1.0.0 Release - Major cleanup of API. - - Address/port parameters have been replaced with complete - endpoints (includes scheme [e.g., http or https]). - - ResourceManager has been updated to take a list of endpoints for + - Address/port parameters have been replaced with complete + endpoints (includes scheme [e.g., http or https]). + - ResourceManager has been updated to take a list of endpoints for improved HA support. - ResourceManager, ApplicationMaster, HistoryServer and NodeManager have been updated with methods corresponding to the latest REST API. @@ -107,7 +114,7 @@ app_information = am.application_information('application_id') to update to 1.0 as soon as possible. 0.3.7 Release - - Honor configured HTTP Policy when no address is provided - enabling + - Honor configured HTTP Policy when no address is provided - enabling using of HTTPS in these cases. 0.3.6 Release diff --git a/yarn_api_client/__init__.py b/yarn_api_client/__init__.py index 7bd665f..e7ce9aa 100644 --- a/yarn_api_client/__init__.py +++ b/yarn_api_client/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '2.0.0.dev0' +__version__ = '1.0.2' __all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager', 'ResourceManager'] from .application_master import ApplicationMaster