From 7f7e66dde9088be96824b9d6a5307b32214c94cf Mon Sep 17 00:00:00 2001 From: pem70 Date: Wed, 7 Aug 2024 13:08:33 -0400 Subject: [PATCH] Update changelog and List Signed-off-by: pem70 --- CHANGELOG.md | 11 +++++++++-- .../zowe/zos_files_for_zowe_sdk/response/uss.py | 2 +- src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc9b4801..3605e00d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to the Zowe Client Python SDK will be documented in this file. +## Recent Changes + +### Enhancements + +- *Breaking*: Update custom class for REST API responses [#89] (https://github.com/zowe/zowe-client-python-sdk/issues/89) + +### Bug Fixes + + ## `1.0.0-dev19` ### Enhancements @@ -14,8 +23,6 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil - Added checks and auto addition for license headers on workflow. [#293] (https://github.com/zowe/zowe-client-python-sdk/issues/293) -- *Breaking*: Update custom class for REST API responses [#89] (https://github.com/zowe/zowe-client-python-sdk/issues/89) - ### Bug Fixes ## `1.0.0-dev18` diff --git a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py index 644abebe..d535aa33 100644 --- a/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py +++ b/src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py @@ -11,7 +11,7 @@ """ from dataclasses import dataclass -from typing import Any, Optional +from typing import Any, List, Optional @dataclass diff --git a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py index 5de2d488..65659d9e 100644 --- a/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py +++ b/src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py @@ -282,7 +282,7 @@ def list_jobs( Returns ------- - list[JobResponse] + List[JobResponse] A list of jobs on JES queue based on the given parameters """ custom_args = self._create_custom_request_arguments() @@ -380,7 +380,7 @@ def get_spool_files(self, correlator: str) -> List[SpoolResponse]: Returns ------- - list[SpoolResponse] + List[SpoolResponse] A JSON object containing the result of the request execution """ custom_args = self._create_custom_request_arguments()