Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lresende committed Jan 14, 2020
1 parent 25c29b6 commit 1af0d22
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,23 @@ 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
- Adds more python version (3.7 and 3.8) to test matrix and removes 2.6.

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.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion yarn_api_client/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1af0d22

Please sign in to comment.