diff --git a/CHANGELOG.md b/CHANGELOG.md index 4019c6a..847f4fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [2.4.7] - 2024-06-28 +- Corrected handling of 'collectionlimit' when specified in a config file + ## [2.4.6] - 2024-06-14 - Hide password and token parameters from console output when running the tool from a config file diff --git a/LICENSE.md b/LICENSE.md index 769b2c0..7892458 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2016-2024, Contributing Member(s) of Distributed Management Task +Copyright (c) 2017-2024, Contributing Member(s) of Distributed Management Task Force, Inc.. All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/README.md b/README.md index d53ab04..63aceef 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Copyright 2017-2022 DMTF. All rights reserved. +Copyright 2017-2024 DMTF. All rights reserved. # Redfish Service Validator diff --git a/RedfishServiceValidator.py b/RedfishServiceValidator.py index 6478d52..18ff9e0 100755 --- a/RedfishServiceValidator.py +++ b/RedfishServiceValidator.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2022 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: # https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md diff --git a/RedfishServiceValidatorGui.py b/RedfishServiceValidatorGui.py index b5f5093..63bf1e3 100755 --- a/RedfishServiceValidatorGui.py +++ b/RedfishServiceValidatorGui.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2022 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: # https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md diff --git a/redfish_service_validator/RedfishLogo.py b/redfish_service_validator/RedfishLogo.py index 464beec..c3e11dc 100644 --- a/redfish_service_validator/RedfishLogo.py +++ b/redfish_service_validator/RedfishLogo.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2018-2019 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md """ diff --git a/redfish_service_validator/RedfishServiceValidator.py b/redfish_service_validator/RedfishServiceValidator.py index 2220177..a83d326 100755 --- a/redfish_service_validator/RedfishServiceValidator.py +++ b/redfish_service_validator/RedfishServiceValidator.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2021 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import os @@ -16,7 +16,7 @@ from urllib.parse import urlparse from collections import Counter -tool_version = '2.4.6' +tool_version = '2.4.7' # Set up the custom debug levels VERBOSE1 = logging.INFO-1 diff --git a/redfish_service_validator/RedfishServiceValidatorGui.py b/redfish_service_validator/RedfishServiceValidatorGui.py index 24d4fff..676b747 100755 --- a/redfish_service_validator/RedfishServiceValidatorGui.py +++ b/redfish_service_validator/RedfishServiceValidatorGui.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2019 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md """ diff --git a/redfish_service_validator/config.py b/redfish_service_validator/config.py index 77ada8c..44c5825 100644 --- a/redfish_service_validator/config.py +++ b/redfish_service_validator/config.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2021 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import configparser diff --git a/redfish_service_validator/helper.py b/redfish_service_validator/helper.py index 1db3fda..ba706f3 100644 --- a/redfish_service_validator/helper.py +++ b/redfish_service_validator/helper.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2020 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import re diff --git a/redfish_service_validator/metadata.py b/redfish_service_validator/metadata.py index 7c4109e..61e8b5a 100644 --- a/redfish_service_validator/metadata.py +++ b/redfish_service_validator/metadata.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2018-2020 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import os diff --git a/redfish_service_validator/schema_pack.py b/redfish_service_validator/schema_pack.py index d160016..5431fac 100644 --- a/redfish_service_validator/schema_pack.py +++ b/redfish_service_validator/schema_pack.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2018-2021 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import argparse diff --git a/redfish_service_validator/tohtml.py b/redfish_service_validator/tohtml.py index 302b34c..55ae828 100644 --- a/redfish_service_validator/tohtml.py +++ b/redfish_service_validator/tohtml.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2019 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md if __name__ != '__main__': diff --git a/redfish_service_validator/traverse.py b/redfish_service_validator/traverse.py index 44a9adb..fe40c21 100644 --- a/redfish_service_validator/traverse.py +++ b/redfish_service_validator/traverse.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2020 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import json diff --git a/redfish_service_validator/validateResource.py b/redfish_service_validator/validateResource.py index 5279b33..6bcfc67 100644 --- a/redfish_service_validator/validateResource.py +++ b/redfish_service_validator/validateResource.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2016-2021 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import logging diff --git a/setup.py b/setup.py index cb479db..bb52d63 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2022 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: # https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md @@ -11,7 +11,7 @@ setup( name="redfish_service_validator", - version="2.4.6", + version="2.4.7", description="Redfish Service Validator", long_description=long_description, long_description_content_type="text/markdown", diff --git a/tests/test_catalog.py b/tests/test_catalog.py index e7b6a8f..a549ecb 100644 --- a/tests/test_catalog.py +++ b/tests/test_catalog.py @@ -1,5 +1,5 @@ # Copyright Notice: -# Copyright 2017-2019 DMTF. All rights reserved. +# Copyright 2017-2024 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md # # Unit tests for RedfishServiceValidator.py diff --git a/tests/testdata/payloads/system-bad-additional.json b/tests/testdata/payloads/system-bad-additional.json index 0bfe81f..4d0ddd1 100644 --- a/tests/testdata/payloads/system-bad-additional.json +++ b/tests/testdata/payloads/system-bad-additional.json @@ -80,5 +80,5 @@ } }, "@odata.id": "/redfish/v1/Systems/529QB9450R6", - "@Redfish.Copyright": "Copyright 2014-2021 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright." + "@Redfish.Copyright": "Copyright 2017-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright." } \ No newline at end of file diff --git a/tests/testdata/schemas/ExampleResource_v1.xml b/tests/testdata/schemas/ExampleResource_v1.xml index bede852..5a64029 100644 --- a/tests/testdata/schemas/ExampleResource_v1.xml +++ b/tests/testdata/schemas/ExampleResource_v1.xml @@ -5,7 +5,7 @@ - +