Skip to content

Commit c0e880b

Browse files
committed
Release 1.0.2
Fixes #79
1 parent d6fa2bb commit c0e880b

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,23 @@ app_information = am.application_information('application_id')
8686

8787
### Changelog
8888

89+
1.0.2 Release
90+
- Add support for Python 3.8.x
91+
- Fix HTTPS url parsing
92+
- Fix JSON body request APIs
93+
- Handle YARN response with empty contents
94+
- Better logging support
95+
8996
1.0.1 Release
9097
- Passes the authorization instance to the Active RM check
9198
- Establishes a new (working) documentation site in readthedocs.io: yarn-api-client-python.readthedocs.io
9299
- Adds more python version (3.7 and 3.8) to test matrix and removes 2.6.
93100

94101
1.0.0 Release
95102
- Major cleanup of API.
96-
- Address/port parameters have been replaced with complete
97-
endpoints (includes scheme [e.g., http or https]).
98-
- ResourceManager has been updated to take a list of endpoints for
103+
- Address/port parameters have been replaced with complete
104+
endpoints (includes scheme [e.g., http or https]).
105+
- ResourceManager has been updated to take a list of endpoints for
99106
improved HA support.
100107
- ResourceManager, ApplicationMaster, HistoryServer and NodeManager
101108
have been updated with methods corresponding to the latest REST API.
@@ -107,7 +114,7 @@ app_information = am.application_information('application_id')
107114
to update to 1.0 as soon as possible.
108115

109116
0.3.7 Release
110-
- Honor configured HTTP Policy when no address is provided - enabling
117+
- Honor configured HTTP Policy when no address is provided - enabling
111118
using of HTTPS in these cases.
112119

113120
0.3.6 Release

yarn_api_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '2.0.0.dev0'
2+
__version__ = '1.0.2'
33
__all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager', 'ResourceManager']
44

55
from .application_master import ApplicationMaster

0 commit comments

Comments
 (0)