From 056c560429e4a3fc8703a47a76c081f7b0864406 Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 4 Mar 2022 15:40:35 -0500 Subject: [PATCH] 2.1.1 Versioning Signed-off-by: Mike Raineri --- CHANGELOG.md | 3 +++ RedfishServiceValidator.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30f9dc3..2bb4a03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.1.1] - 2022-03-04 +- Added check to ensure a reference object is an object prior to attempting to extract the link information + ## [2.1.0] - 2022-02-05 - Added 'Accept-Encoding' header to allow for any encoding in responses - Corrected '@odata.id' inspection to not crash the tool if the string is empty diff --git a/RedfishServiceValidator.py b/RedfishServiceValidator.py index 7a28fef..8c2dca8 100644 --- a/RedfishServiceValidator.py +++ b/RedfishServiceValidator.py @@ -9,7 +9,7 @@ import json from datetime import datetime -tool_version = '2.1.0' +tool_version = '2.1.1' my_logger = logging.getLogger() my_logger.setLevel(logging.DEBUG)