From 219f2075d02760b1b47045c2d145b3eb0b305985 Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 1 Jun 2018 09:02:12 -0400 Subject: [PATCH] 1.1.1 Versioning --- CHANGELOG.md | 4 ++++ RedfishServiceValidator.py | 2 +- RedfishServiceValidatorGui.py | 5 +++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ef9eae..23e55de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [1.1.1] - 2018-06-01 +- Added option to force authentication if using an unsecure connection +- Added error checking for @Redfish.Copyright in payloads + ## [1.1.0] - 2018-05-11 - Allow for text/xml in schema responses from external sites - Added console output when running the test via the GUI diff --git a/RedfishServiceValidator.py b/RedfishServiceValidator.py index 5d4fd32..6539a39 100644 --- a/RedfishServiceValidator.py +++ b/RedfishServiceValidator.py @@ -20,7 +20,7 @@ import traverseService as rst from metadata import setup_schema_pack -tool_version = '1.1.0' +tool_version = '1.1.1' rsvLogger = rst.getLogger() diff --git a/RedfishServiceValidatorGui.py b/RedfishServiceValidatorGui.py index ef70f32..a08345b 100644 --- a/RedfishServiceValidatorGui.py +++ b/RedfishServiceValidatorGui.py @@ -46,6 +46,11 @@ "description": "The type of authorization to use while testing", "options": ( "None", "Basic", "Session", "Token" ) }, + "ForceAuth": { + "value": "False", + "description": "Force authentication on unsecure connections", + "options": ( "True", "False" ) + }, "Token": { "value": "", "description": "The token to use when AuthType is set to Token"